* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #6a3c47;
            --primary-blue: #203c59;
            --dark-blue: #163752;
            --light-gray: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #64748B;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: white;
            color: var(--text-dark);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }

        .top-bar {
                background: linear-gradient(90deg, #C2410C 0%, var(--primary-red) 100%);
    padding: 0.7rem 0;
    color: white;
    text-align: center;
        }

        .top-bar-content {
          max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
        }

        .top-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .top-contact-item svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .header-main {
              max-width: 1400px;
    margin: 0 auto;
    padding: 0.31rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-bow {
            width: 60px;
            height: 40px;
            position: relative;
        }

        .logo-bow::before,
        .logo-bow::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 20px;
            border: 3px solid var(--primary-red);
            border-radius: 50% 50% 0 0;
        }

        .logo-bow::before {
            left: 0;
            transform: rotate(-20deg);
        }

        .logo-bow::after {
            right: 0;
            transform: rotate(20deg);
        }

        .logo-bow-center {
            position: absolute;
            width: 15px;
            height: 15px;
            background: var(--primary-red);
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .brand-name {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary-blue);
        }

        .tagline {
            color: var(--primary-red);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            /* background: var(--primary-red); */
            transition: width 0.3s;
        }
.nav-menu a{
  border-bottom: none !important;
  text-decoration: none !important;
}
        .nav-menu a:hover {
                background: #b9401d;
    transform: scale(1);
    transition: auto;
    color: #ffffff;
}
        

        .nav-menu a:hover::after {
            width: 100%;
        }

        .cta-button {
           background: var(--primary-red);
    color: white;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-decoration: none !important;
    white-space: nowrap;
        }
        .header-phone a,
.call-btn a,
.navbar a {
  text-decoration: none !important;
  border-bottom: none !important;
}

        .cta-button:hover {
            background: #C41E3A;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(227, 30, 36, 0.3);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--primary-blue);
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

      /* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDE */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* IMAGE */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  inset: 0;                    /* full overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;     /* vertical center */
  align-items: center;         /* horizontal center */
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 750px;
  color: #eaeaea;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #eaeaea;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 34px;
  background: #ff4d30;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #e03e24;
}

/* TABLET */
@media (max-width: 992px) {
  .hero-content {
    left: 5%;
    max-width: 520px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .hero {
    height: 90vh;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .cta-button {
    padding: 12px 28px;
  }
}

        /* Hero section spacing */
.hero-1 {
  padding: 80px 20px;  
        /* Top–bottom & left–right */
}

/* Stats container */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    /* margin-top: 3rem; */
    animation: fadeInUp 1s ease-out 0.8s both; 
        justify-content: space-between;
    align-items: center;

    max-width: 1200px;
    margin: 0 auto;      /* Center horizontally */
}

/* Individual stat box */
.stat-item {
        background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    transition: all 0.3s;
    height: auto;
    width: auto;
    border: 1px solid #c1a199 !important;
}

/* Number styling */
.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

/* Label styling */
.stat-label {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            animation: fadeInUp 1s ease-out 0.8s both;
            
        }

        .stat-item {
            background: rgba(255,255,255,0.15);
            padding: 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            /* border: 1px solid rgba(255,255,255,0.2); */
            transition: all 0.3s;
               height: auto;
  width: auto;
  border: 1px solid var(--primary-red);
        }

        .stat-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* About Section */
        .about {
           padding: 4rem 2rem;
    background: white;
    position: relative;
    overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-title {
          text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: #222222;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
        
.why-choose-us .section-title {
   background: #ffffff !important;
  mix-blend-mode: normal !important;
   -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
}

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-image-section {
            position: relative;
        }

        .about-main-image {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }

        .about-main-image:hover {
            transform: scale(1.02);
        }

        .about-stats-overlay {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .stat-box {
            text-align: center;
        }

        .stat-box-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-red);
            display: block;
        }

        .stat-box-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .about-text-section h3 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-text-section p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .about-features {
            display: grid;
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-item {
              display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fff4f4 0%, #fdf5f6b8 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s;
        }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Mobile view */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text {
    order: 1;
  }

  .about-features {
    order: 2;
  }
}

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-red), #FF6B6B);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-item h4 {
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .feature-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.4;
        }

        /* Quote Section */
        .quote {
           background: linear-gradient(90deg, #C2410C 0%, var(--primary-red) 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }

        .quote-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .quote-text {
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .quote-author {
            font-size: 1.2rem;
            font-weight: 600;
        }

        /* Gallery Section */
        .gallery {
            padding: 6rem 2rem;
            background: white;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            aspect-ratio: 4/3;
            background: var(--light-gray);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-label {
           position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    z-index: 2;
    transform: translateY(100%);
    transition: transform 0.4s;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .gallery-item:hover .gallery-label {
            transform: translateY(0);
        }

        .gallery-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 50px;
            height: 50px;
            background: rgba(227, 30, 36, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            z-index: 2;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .gallery-item:hover .gallery-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(227, 30, 36, 1);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            /* background: var(--light-gray); */
          background: linear-gradient(90deg, #C2410C 0%, var(--primary-red) 100%);

        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .feature-card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 18px;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-red);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h4 {
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDQwIDAgTCAwIDAgMCA0MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDMwLDU4LDEzOCwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
            opacity: 0.5;
            z-index: 0;
        }

        .contact .section-container {
            position: relative;
            z-index: 1;
        }

        .contact-info-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
            margin-bottom: 3rem;
        }

    .info-bar-item {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .info-bar-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
            border-color: var(--primary-red);
        }

        .info-bar-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), #FF6B6B);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
        }

        .info-bar-item strong {
            display: block;
            color: var(--primary-blue);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .info-bar-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-form-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid rgba(30, 58, 138, 0.1);
        }

        .contact-form-container h3 {
            font-size: 2.2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1.1rem 1.3rem;
            border: 2px solid #E2E8F0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
            background: #F8FAFC;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
            background: white;
        }
        .submit-button {
            background: linear-gradient(135deg, var(--primary-red) 0%, #C41E3A 100%);
            color: white;
            padding: 1.2rem 3.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
            box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(227, 30, 36, 0.5);
        }

        .map-container {
            height: 100%;
            min-height: 550px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(30, 58, 138, 0.1);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0F172A 0%, var(--dark-blue) 100%);
            color: white;
            padding: 4rem 2rem 1.5rem;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-blue) 100%);
        }


        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red), transparent);
        }

        .footer-logo-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-logo-bow {
            width: 50px;
            height: 35px;
            position: relative;
        }

        .footer-logo-bow::before,
        .footer-logo-bow::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 17px;
            border: 2px solid var(--primary-red);
            border-radius: 50% 50% 0 0;
        }

        .footer-logo-bow::before {
            left: 0;
            transform: rotate(-20deg);
        }

        .footer-logo-bow::after {
            right: 0;
            transform: rotate(20deg);
        }

        .footer-logo-bow-center {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary-red);
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .footer-brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        .footer-tagline {
            color: var(--primary-red);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .footer-section p {
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            display: block;
            margin-bottom: 0.7rem;
            line-height: 1.6;
            transition: all 0.3s;
            padding-left: 0;
        }

        .footer-section a:hover {
            color: var(--primary-red);
            padding-left: 10px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            color: rgba(255,255,255,0.75);
            margin-bottom: 0.7rem;
            line-height: 1.6;
            padding-left: 1.5rem;
            position: relative;
        }

        .footer-section li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--primary-red);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }
/* Footer Base */
footer {
  background: #0d1b2a;
  color: #ffffff;
  font-family: inherit;
}

/* Footer Content Layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Footer Section */
.footer-section {
  display: flex;
  flex-direction: column;
}

/* Logo Section */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

/* Footer Text */
.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #dcdcdc;
}

/* Footer Headings */
.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* Footer Links */
.footer-section a {
  color: #dcdcdc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact-icon {
  font-size: 16px;
}

/* QR Code */
.footer-section img {
  max-width: 160px;
  margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #cfcfcf;
}

/* ---------------- MOBILE VIEW ---------------- */

@media (max-width: 768px) {

  .footer-content {
    grid-template-columns: 1fr;   /* One column */
    padding: 40px 20px;
    text-align: left;
  }

  .footer-section {
    margin-bottom: 30px;
  }

  .footer-logo img {
    max-width: 200px;
  }

  .footer-section img {
    max-width: 110px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 12px;
  }
}

        .footer-contact-icon {
            color: var(--primary-red);
            font-size: 1.1rem;
            margin-top: 0.2rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            position: relative;
            z-index: 1;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 280px;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 5rem 2rem 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.3s ease;
                gap: 1.5rem;
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
            }

            .top-bar-content {
                justify-content: center;
                gap: 1rem;
                font-size: 0.85rem;
            }

            .header-main {
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 0.5rem;
                padding: 0.7rem 1rem;
            }

            .top-contact-item {
                font-size: 0.8rem;
            }

            .contact-info-bar {
                grid-template-columns: 1fr;
            }

            .contact-main-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form-container {
                padding: 2rem 1.5rem;
            }

            .hero {
                padding: 4rem 1.5rem;
            }

            .section-container {
                padding: 0 1rem;
            }

            .gallery-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .brand-name {
                font-size: 1.4rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }
.form-group{
  margin-bottom: 20px;
}



.info-bar-icon {
    fill: #fff;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.testimonials {
  padding: 80px 20px;
  background: #f9fafc;
  overflow: hidden;
}

.section-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 40px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease-in-out;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: #6a3c47;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.author-info h4 {
  margin: 0;
  font-size: 18px;
}

.author-info p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

/* Tablet */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 16px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-card {
    min-width: 100%;
  }
}
