:root {
  --primary-color: #134e4a;
  --secondary-color: #0d9488;
  --accent-color: #fbbf24;
  --dark-color: #042f2e;
  --light-color: #f0fdfa;
  --text-color: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--text-color);
  background-color: #f8fafc;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
  background-color: var(--dark-color);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1030;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color) !important;
}

.navbar-brand span {
  color: #fff;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background-color: var(--secondary-color);
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

/* Welcome Section - Pushes Hero Slider Down */
.welcome-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 50px 0 10px;
  margin-top: 76px;
  position: relative;
  /* Removed the wave effect for clean separation */
}

/* REMOVED: .welcome-section::before pseudo-element */

.welcome-section h1 {
  color: white;
  font-size: 3.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.welcome-section .lead {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Slider - NOW BELOW WELCOME SECTION WITH PROPER SPACING */
.hero-slider {
  height: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  /* Removed border-radius for full-width look */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  /* REMOVED negative margin, ADDED proper spacing */
  max-width: 100%;
  /* Changed from 1400px to full width */
  z-index: 1;
}

.carousel-item {
  height: 600px;
  background-position: center;
  background-size: cover;
}

.carousel-item:nth-child(1) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/banner3.jpg");
}

.carousel-item:nth-child(2) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/banner2.jpg");
}

.carousel-item:nth-child(3) {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/banner4.jpg");
}

.carousel-caption {
  background-color: rgba(4, 47, 46, 0.9);
  padding: 30px;
  border-radius: 10px;
  bottom: 20%;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
  border-left: 5px solid var(--accent-color);
}

.carousel-caption h2 {
  color: var(--accent-color);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Content Sections */
.content-section {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-color);
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Process Section */
.process-step {
  text-align: center;
  padding: 30px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--secondary-color);
}

.process-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary-color);
  border: 3px solid var(--secondary-color);
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .card-body {
  padding: 30px;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 20px;
  border-left: 4px solid var(--accent-color);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark-color);
}

.testimonial-role {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.btn-outline-light:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-color);
}

/* FAQ Section */
.faq-item {
  margin-bottom: 25px;
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
}

.faq-question {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.collapsed i {
  transform: rotate(-90deg);
}

.faq-answer {
  color: var(--text-color);
  line-height: 1.7;
}

/* Partners Section */
.partner-logo {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.cert-badge {
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: scale(1.05);
  background-color: var(--secondary-color);
}

.cert-badge i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* Painting Tips Section */
.tip-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  border-top: 5px solid var(--accent-color);
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tip-header {
  background-color: var(--light-color);
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tip-content {
  padding: 25px;
}

.tip-number {
  background-color: var(--accent-color);
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Offers Banner */
.offer-banner {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 6s ease-in-out infinite;
}

.offer-banner .row {
  position: relative;
  z-index: 1;
}

.offer-banner h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}

.offer-banner .btn-warning {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--dark-color);
  font-weight: 700;
  padding: 15px 40px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.offer-banner .btn-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 25px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--accent-color);
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  color: var(--accent-color);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: #aaa;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* ======================= About page style(css) ====================== */
.page-banner {
  margin-top: 80px;
}

/* Page Banner */
.page-banner-about {
  height: 400px;
  background:
    linear-gradient(rgba(11, 11, 11, 0.392), rgba(11, 11, 11, 0.408)),
    url("../images/banner1.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.page-banner-about h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Timeline */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  margin-bottom: 30px;
  padding-left: 30px;
  border-left: 3px solid var(--secondary-color);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 3px solid var(--secondary-color);
}

.timeline-year {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/* Team Cards */
.team-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  height: 300px;
  object-fit: cover;
}

.team-card .card-body {
  text-align: center;
  padding: 25px;
}

.team-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Value Cards */
.value-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
  border-top: 4px solid var(--secondary-color);
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Certifications */
.cert-logo {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
  border: 2px solid #e2e8f0;
}

/* NEW: Painting Expertise Cards */
.expertise-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--secondary-color);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* NEW: Process Steps */
.process-step {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
  z-index: -1;
}

.process-step:last-child::after {
  display: none;
}

/* NEW: Testimonials */
.testimonial-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent-color);
  font-family: "Playfair Display", serif;
  opacity: 0.3;
}

.stars {
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* NEW: CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--dark-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
  padding: 80px 0;
  border-radius: 20px;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #f59e0b;
  color: var(--dark-color);
  transform: translateY(-3px) scale(1.05);
}
/* ======================= video page banner + galllery style use =================== */
.page-banner-video{
  height: 400px;
    background:
      linear-gradient(rgba(10, 10, 10, 0.386), rgba(10, 10, 10, 0.364)),
      url("../images/banner2.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    border-radius: 0 0 20px 20px;
}
.page-banner-video h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ======================= gallery page style(css) ====================== */

.page-banner-gallery {
  height: 400px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.386), rgba(10, 10, 10, 0.364)),
    url("../images/banner2.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 0 0 20px 20px;
}

.page-banner-gallery h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-section {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-color);
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Gallery Grid */
.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(4, 47, 46, 0.9), transparent);
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h5 {
  color: var(--accent-color);
  margin-bottom: 5px;
}

/* Before/After Section */
.before-after-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.before-after-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 20px;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  font-weight: 700;
  border-radius: 3px;
}

.ba-label.before {
  left: 20px;
}

.ba-label.after {
  right: 20px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* ======================= services page style(css) ====================== */

.page-banner-services {
  height: 400px;
  background:
    linear-gradient(rgba(9, 9, 9, 0.441), rgba(11, 11, 11, 0.441)),
    url("../images/banner3.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 0 0 20px 20px;
}

.page-banner-services h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-section {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-color);
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .card-body {
  padding: 35px;
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Pricing Cards */
.pricing-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card.featured {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--dark-color);
  padding: 5px 15px;
  font-weight: 700;
  font-size: 0.8rem;
}

.pricing-header {
  margin-bottom: 30px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  font-family: "Playfair Display", serif;
}

.price span {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
}

/* Warranty Section */
.warranty-box {
  background-color: var(--light-color);
  border-left: 5px solid var(--secondary-color);
  padding: 30px;
  border-radius: 0 10px 10px 0;
  margin: 30px 0;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* ======================= contact page style(css) ====================== */

.page-banner-contact {
  height: 400px;
  background:
    linear-gradient(rgba(9, 9, 9, 0.441), rgba(11, 11, 11, 0.441)),
    url("../images/banner4.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  border-radius: 0 0 20px 20px;
}

.page-banner-contact h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-section {
  padding: 80px 0;
}

.section-title {
  color: var(--dark-color);
  margin-bottom: 40px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.25);
}

/* Contact Info Cards */
.contact-info-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Emergency Banner */
.emergency-banner {
  background-color: #fee2e2;
  border-left: 5px solid #ef4444;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 40px;
}

.emergency-banner h4 {
  color: #991b1b;
  margin-bottom: 5px;
}

/* Map */
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
  background-color: #e2e8f0;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  background-color: white;
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-slider,
  .carousel-item {
    height: 500px;
  }

  .carousel-caption h2 {
    font-size: 2.2rem;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .welcome-section {
    padding: 80px 0 60px;
  }

  .welcome-section h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-slider,
  .carousel-item {
    height: 400px;
  }

  .carousel-caption {
    padding: 20px;
    bottom: 10%;
    margin: 0 20px;
  }

  .carousel-caption h2 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .content-section {
    padding: 50px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .welcome-section {
    padding: 60px 0 40px;
    margin-top: 70px;
  }

  .welcome-section h1 {
    font-size: 2rem;
  }

  .welcome-section .lead {
    font-size: 1.1rem;
  }

  .offer-banner h3 {
    font-size: 1.5rem;
  }

  .page-banner {
    height: 300px;
    margin-top: 75px;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }

  .content-section {
    padding: 50px 0;
  }

  /* ========== about page ========== */

  .process-step::after {
    display: none;
  }

  /* ========== gallery page ========== */
  /* ========== services page ========== */
  .pricing-card.featured {
    transform: scale(1);
  }

  /* ========== contact page ========== */
  .contact-form {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  
  .navbar-brand {
    font-size: 1.5rem;
  }

  .hero-slider,
  .carousel-item {
    height: 350px;
  }

  .carousel-caption {
    padding: 15px;
    bottom: 5%;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .welcome-section h1 {
    font-size: 1.8rem;
  }

  .hero-slider {
    margin: 0;
    /* Removed margin for mobile */
  }
}

