

        /* General body styling */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #1a1a1a;
            color: #f0f0f0;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        /* --- Existing side icon and rating widget styles --- */
        .side-icons {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .icon-link {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            background-color: #ffffff;
            color: #374151;
            padding: 0.5rem 1rem;
            border-radius: 0.75rem 0 0 0.75rem;
            box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            overflow: hidden;
        }

        .icon-link:hover {
            transform: translateX(-5px);
            box-shadow: -8px 8px 16px rgba(0, 0, 0, 0.15);
        }

        .icon-text {
            white-space: nowrap;
            overflow: hidden;
            max-width: 0;
            transition: max-width 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }

        .icon-link:hover .icon-text {
            max-width: 150px;
            margin-right: 0.5rem;
        }

        .icon {
            font-size: 1.5rem;
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a5568;
        }

        .icon-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .icon-facebook {
            color: #1877F2;
        }

        .icon-contact {
            color: #25D366;
        }

        .google-rating-widget {
            position: fixed;
            left: 0;
            bottom: 2rem;
            display: flex;
            align-items: center;
            background-color: #ffffff;
            padding: 0.75rem 1.25rem;
            border-radius: 0 0.75rem 0.75rem 0;
            box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            text-decoration: none;
            color: #374151;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .rating-stars {
            color: #f5b041;
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        .rating-text {
            font-size: 0.875rem;
            font-weight: 600;
        }

        /* --- New header and banner styles --- */
       /* Neo Navbar Styles - Won't interfere with existing CSS */
        .neo-header {
        position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(0 0 0 / 36%);
    backdrop-filter: blur(8px);
   padding: 15px 0 0 0;
    transition: all 0.3s ease;
        }
        
        .neo-header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
        }
        
        .neo-logo img {
            height: 43px;
            transition: all 0.3s ease;
        }
        
        .neo-nav {
            display: flex;
            align-items: center;
        }
        
        .neo-nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .neo-nav-item {
            position: relative;
            margin-left: 25px;
        }
        
        .neo-nav-link {
            color: #fff;
            text-decoration: none;
            font-family: "Inter", sans-serif;
            font-weight: 400;
            font-size: 15px;
            letter-spacing: 0.5px;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .neo-nav-link i {
            margin-right: 5px;
            font-size: 14px;
        }
        
        .neo-nav-link:hover {
            color: #175092;
        }
        
        /* Dropdown Styles */
        .neo-dropdown {
            position: relative;
        }
        
        .neo-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fff;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
                list-style: none; /* Yeh line add karo */
    padding-left: 0; /* Optional: Left padding bhi remove karo */

        }
        
        .neo-dropdown:hover .neo-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .neo-dropdown-item {
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .neo-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .neo-dropdown-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .neo-dropdown-link:hover {
            color: #000;
            padding-left: 5px;
        }
        
        /* Sub Dropdown Styles */
        .neo-dropdown-sub {
            position: relative;
        }
        
        .neo-sub-dropdown-menu {
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #fff;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            z-index: 1002;
            list-style: none;
            padding-left: 0;
        }
        
        .neo-dropdown-sub:hover .neo-sub-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        
        .neo-sub-dropdown-item {
            padding: 10px 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .neo-sub-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .neo-sub-dropdown-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .neo-sub-dropdown-link:hover {
            color: #000;
            padding-left: 5px;
        }
        
        /* Hide sub-dropdowns on mobile */
        @media (max-width: 992px) {
            .neo-sub-dropdown-menu {
                display: none !important;
            }
            
            .neo-dropdown-link i.fa-chevron-right {
                display: none;
            }
        }

        /* Mobile Menu Button */
        .neo-mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            /* color: #fff; */
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .neo-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
                transition: all 0.5s ease;
            }
            
            .neo-nav.active {
                left: 0;
            }
            
            .neo-nav-list {
                flex-direction: column;
                width: 100%;
            }
            
            .neo-nav-item {
                margin: 10px 0;
                width: 100%;
            }
            
            .neo-dropdown-menu {
                position: static;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: transparent;
                padding-left: 15px;
            }
            
            .neo-dropdown.active .neo-dropdown-menu {
                display: block;
            }
            
            .neo-dropdown-link {
                color: #ccc;
            }
            
            .neo-dropdown-link:hover { 
                color: #fff;
            }
            
            .neo-mobile-menu-btn {
                display: block;
            }
        }


        /* main banner */

        .carousel-container {
            width: 100vw;
            /* height: 100vh; */
            height: auto !important;
            padding-top: 80px !important;
            position: relative;
            overflow: hidden;
        }

        .carousel-wrapper {
            display: flex;
            height: 100%;
            width: 600%; /* 3 items x 100% width */
        }

        .carousel-item {
            width: 33.333%; /* Each item takes up one third of the wrapper */
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            transform: scale(1.10); /* Initial zoom-out state */
            transform-origin: center center;
            will-change: transform;
        }
        
        /* Dark overlay for readability, kept in case you want to add text later */
        /* .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.25);
        } */

        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            z-index: 20;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            padding: 10px;
            transition: background 0.3s ease;
            user-select: none;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .arrow:hover {
            background: rgba(0, 0, 0, 0.3);
        }

        .arrow svg {
            width: 32px;
            height: 32px;
            fill: #fff;
            filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
        }

        .left {
            left: 20px;
        }

        .right {
            right: 20px;
        }

        /* banner */
        .banner-container {
           width: 100%;
    /* height: 100vh; */
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
        }

        .banner-content {
            display: flex;
            flex-direction: column;
            max-width: 1200px;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
            gap: 40px;
        }
        
        @media (min-width: 768px) {
            .banner-content {
                flex-direction: row;
            }

            .carousel-container{
                height: 100vh;
                padding-top: 0px !important;
            }
        }

        .text-section {
            flex: 1;
            padding-right: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        @media (min-width: 768px) {
            .text-section {
                padding-right: 50px;
            }
        }

        .text-section .tagline {
            font-size: 1.2rem;
            font-weight: 500;
            color: #aaa;
            margin-bottom: 10px;
        }

        .text-section h1 {
           font-weight: 700;
    line-height: 3.5rem;
    margin: 0;
    color: #f0f0f0;
        }

        @media (min-width: 768px) {
            .text-section h1 {
                font-size: 3rem;
            }
        }

        .text-section h1 .highlight {
            color: #c0392b;
        }

        .text-section p {
            font-size: 1rem;
            line-height: 1.6;
            color: #ccc;
            margin-top: 20px;
        }

        .images-section {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .images-section {
                width: 400px;
                height: auto;
                min-height: 600px;
            }
        }

        .image-row-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            will-change: transform;
        }

        .image-row {
            display: flex;
            flex-direction: column;
            gap: 15px;
            flex-shrink: 0;
        }

.image-row img {
    margin-bottom: 10px;
    width: 100%;
    height: 201px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .gradient-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to top, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0));
            z-index: 10;
        }

        /* --- New sections below the banner --- */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Adjusted background color to create visual separation */
        .agency-section {
            padding: 80px 20px;
            background-color: #222222;
            color: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .heading-container {
            max-width: 800px;
        }

        .heading-container h2 {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .heading-container h2 {
                font-size: 3rem;
            }
        }

        .agency-section p {
           max-width: 1200px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
        }

        .start-project-button {
            background-color: #c0392b;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, background-color 0.3s;
            margin-bottom: 40px;
        }

        .start-project-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
        }

        .agency-image {
            width: 100%;
               max-width: 771px;
            height: 441px;
            border-radius: 12px;
            object-fit: cover;
            margin-bottom: 40px;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            width: 100%;
            max-width: 1200px;
            gap: 30px;
            padding: 20px 0;
        }

        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 180px;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color:#c0392b;
            margin: 0;
        }

        .stat-item p {
            font-size: 0.9rem;
            color: #ccc;
            margin: 5px 0 0;
        }

        .featured-products-section {
            padding: 80px 20px;
            background-color: #1a1a1a;
            color: #f0f0f0;
            text-align: center;
        }

        .featured-products-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f0f0f0;
            margin-bottom: 5px;
        }

        .featured-products-section h3 {
            font-size: 1rem;
            font-weight: 400;
            color: #ccc;
            margin-bottom: 40px;
        }

        .product-list-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .product-list {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 20px;
            -ms-overflow-style: none; /* IE and Edge */
            scrollbar-width: none; /* Firefox */
        }

        .product-list::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }
        
        .product-card {
           width: 442px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
        }

        .product-card img {
               width: 100%;
    height: 306px;
    padding: 10px;
    object-fit: cover;
    border-radius: 23px;
        }

        .product-card-content {
            padding: 20px;
            text-align: left;
        }

        .product-card h4 {
               font-size: 1.10rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    margin-left: 10px;
        }

        .product-card p {
            font-size: 1rem;
            color:#c0392b;
            font-weight: 700;
            margin: 0 0 15px;
        }

        .product-card button {
            background-color: #1a1a1a;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
            width: 100%;
        }

        .product-card button:hover {
            background-color: #333;
        }
        
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .slider-arrow {
            background-color: #ffffff;
            border: 2px solid #ccc;
            color: #1a1a1a;
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: background-color 0.3s, transform 0.3s;
            pointer-events: auto;
        }

        .slider-arrow:hover {
            background-color: #f0f0f0;
            transform: scale(1.1);
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
                justify-content: center;
                text-align: center;
                flex-direction: column;
            }
            .header .nav-links {
                margin-top: 10px;
            }
            .header .nav-links a {
                margin: 0 0.5rem;
            }
            .banner-content {
                flex-direction: column;
                padding: 20px;
            }

            .text-section {
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
            }

            .text-section h1 {
                font-size: 2.5rem;
            }
            
            .text-section p {
                font-size: 0.9rem;
            }

            .images-section {
                width: 100%;
                min-height: 400px;
            }

            .image-row img {
                height: 120px;
            }

            .about-content {
                flex-direction: column;
            }

            .about-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
            }

            .about-image {
                height: 300px;
            }

            .stats-container {
                flex-direction: column;
            }

            .heading-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .product-card {
                min-width: 280px;
            }
        }

        

        /* our specialization */

        .specialization-section {
            padding: 80px 20px;
            background-color: #1a1a1a;
            color: #f0f0f0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .specialization-content {
            max-width: 1200px;
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .specialization-text {
            flex: 1;
            min-width: 300px;
            padding-bottom: 20px;
        }

        .specialization-text .tagline {
            color: #aaa;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }

        .specialization-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f0f0f0;
            margin: 0 0 20px;
        }

        .specialization-text p {
            line-height: 1.6;
            color: #ccc;
        }
        
        .specialization-images {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .specialization-images img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
        }

        .specialization-images .tall-image {
            grid-row: span 2;
        }
        
        .logos-container {
            width: 100%;
            max-width: 1200px;
            overflow: hidden;
            position: relative;
            margin-top: 60px;
        }

        .logos-track {
            display: flex;
            animation: slide-logos 20s linear infinite;
        }

        .logos-track img {
            height: 155px;
            filter: grayscale(100%) brightness(200%);
            opacity: 0.6;
            margin: 0 30px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .logos-track img:hover {
            filter: grayscale(0%) brightness(100%);
            opacity: 1;
        }

        @keyframes slide-logos {
            from { transform: translateX(0%); }
            to { transform: translateX(-50%); }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .specialization-content {
                flex-direction: column;
            }

            .specialization-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 30px;
            }

            .specialization-images {
                width: 100%;
            }

            .logos-track {
                animation-duration: 15s;
            }
        }


        /* precision */
.precision-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #222222;
  overflow: hidden;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
}

.text-content {
  flex: 1;
  padding-right: 40px;
}

.title {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  color: #fff;
  font-weight: 700;
  padding: 0px 36px;
}

.paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  padding: 22px 30px;
  letter-spacing: 1px;
  font-weight: 100;
}

.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.gsap-img {
  width: 100%;
  height: auto;
}

.title span,
.paragraph span {
  display: inline-block;
  white-space: pre;
}

/* Mobile responsive styles for the precision section */
@media (max-width: 768px) {
  .precision-section {
    height: auto;
    /* Allow content to dictate height */
    padding: 40px 20px;
    flex-direction: column;
    /* Stack vertically on smaller screens */
    text-align: center;
  }

  .content-wrapper {
    flex-direction: column;
    /* Stack the text and image */
    width: 100%;
    padding: 0;
  }

  .text-content {
    padding-right: 0;
    margin-bottom: 20px;
    /* Add some space between text and image */
  }

  .title {
    font-size: 2.5rem;
    padding: 0;
  }

  .paragraph {
    padding: 10px 0;
    font-size: 1rem;
  }

  .image-wrapper {
    justify-content: center;
    /* Center the image */
    width: 90%;
  }

  .gsap-img {
    max-width: 100%;
  }
}

/* Specifications Section */
.container {
            /* max-width: 1250px; */
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 3rem;
        }

        /* Specifications Section */
        .specifications {
            padding: 100px 0;
            background: #222222;
        }

        .spec-tabs {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .tab-btn {
            background: #333333;
            border: 2px solid #555555;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #cccccc;
        }

        .tab-btn.active,
        .tab-btn:hover {
            background: #c0392b;
            border-color: #e34b26;
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .spec-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .spec-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .spec-info h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        .spec-table {
            background: #333333;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .spec-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #444444;
        }

        .spec-row:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            color: #fff;
            flex: 1;
        }

        .spec-value {
            color: #cccccc;
            flex: 1;
            text-align: right;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .tab-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }

            .tab-btn {
                width: 100%;
                text-align: center;
            }

            .spec-details {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .spec-table {
                padding: 1.5rem;
            }
        }

         /* New Review Section Styles */
    .review-section {
        background-color: #000;
    padding: 10rem 2rem;
    text-align: center;
    height: 500px;
    margin-bottom: 47px;
    }

    .review-title {
            font-size: 3.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    }

    .review-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .review-text {
        /* Using a common serif font that can have a cursive feel */
        font-family: 'Times New Roman', Times, serif; 
        font-style: italic;
        font-size: 1.5rem;
        color: #ffffff;
        max-width: 800px;
        transition: opacity 0.5s ease-in-out;
    }

    .review-nav-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    /* Arrow styling for reviews */
    .review-nav-btn svg {
        width: 2.5rem;
        height: 2.5rem;
        color: #ffffff;
        transition: transform 0.3s;
    }

    .review-nav-btn:hover svg {
        transform: scale(1.1);
    }

      .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark-bg);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--light-text);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--card-bg);
            border-radius: 12px;
            box-shadow: 0 4px 15px var(--shadow-light);
            margin-bottom: 1.5rem;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #e0e0e0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            font-weight: 600;
            color: var(--dark-bg);
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f9f9f9;
            color: #c0392b;
        }
        
        .faq-question h3 {
            font-size: 1.1rem;
            margin: 0;
            flex-grow: 1;
        }

        .faq-icon {
            font-size: 2rem;
            font-weight: 300;
            transition: transform 0.4s ease;
            color: var(--primary-red);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);

        }

        .faq-answer {
            max-height: 0;
            padding: 0 1.5rem;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
            will-change: max-height;
        }

        .faq-answer p {
            margin: 0 0 1.5rem 0;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-bottom: 1.5rem;
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-icon {
                font-size: 1.5rem;
            }
        }

        /* Footer */
.footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #c0392b;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c0392b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}