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

        body {
            font-family: Roboto, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .main-container {
            width: 100%;
            /* max-width: 1440px; */
            margin: 0 auto;
            /* padding-bottom: 31px; */
        }

        .content-wrapper {
            width: 100%;
            margin-top: clamp(90px, 12vw, 110px);
        }

        .section {
            width: 100%;
            /* max-width: 1440px; */
        }

        /* Hero Section */
        .hero-section {
            min-height: 600px;
            background: white;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        @media (min-width: 1440px) {
            .hero-section {
                min-height: 780px;
            }

        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 420px;
                background: white;
                position: relative;
                display: flex;
                flex-direction: column;
            }

        }

        .hero-inner {
            width: 100%;
            height: clamp(400px, 50vw, 685px);
            position: relative;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #00000094 100%);
        }

        .hero-title {
            position: absolute;
            left: 4%;
            top: 50%;
            color: white;
            font-size: clamp(24px, 4vw, 40px);
            font-weight: 700;
            line-height: 1.2;
            max-width: 50%;
            z-index: 2;
        }

        .hero-description {
            position: absolute;
            left: 4%;
            top: 70%;
            width: 85%;
            max-width: 600px;
            color: white;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 400;
            line-height: 1.5;
            z-index: 2;
        }

        /* Hero Avatar - Fixed positioning */
        .hero-avatar-container {
            position: relative;
            width: 100%;
        }

        .hero-avatar {
            position: absolute;
            left: 50%;
            top: -120px;
            transform: translateX(-50%);
            width: clamp(150px, 20vw, 286px);
            height: clamp(150px, 20vw, 286px);
            border-radius: 50%;
            object-fit: cover;
            z-index: 10;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
            border: 5px solid white;
        }

        .hero-dots {
            position: absolute;
            left: 4%;
            bottom: 5%;
            display: flex;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(221, 217, 217, 0.5);
            border-radius: 13px;
            z-index: 2;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: #DDD9D9;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: white;
        }



        /* About Section */
        .about-section {
            padding: clamp(120px, 15vw, 180px) clamp(20px, 4vw, 64px) clamp(40px, 6vw, 80px);
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(30px, 5vw, 60px);
            margin-top: -100px;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(20px, 3vw, 39px);
            /*max-width: 1200px;*/
        }

        .about-title {
            text-align: center;
            color: #15224D;
            font-size: clamp(28px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.2;
            padding: 0 20px;
        }

        .about-description {
            text-align: left;
            color: #6D6D6D;
            font-size: clamp(15px, 2vw, 21px);
            font-weight: 400;
            line-height: 1.6;
            padding: 0 20px;
            /*max-width: 900px;*/
        }

        .learn-more-btn {
            padding: clamp(10px, 1.5vw, 12px) clamp(20px, 3vw, 24px);
            border: 1px solid black;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        .learn-more-btn:hover {
            background: black;
            color: white;
        }

        /* Mission Section */
        .mission-section {
            padding: clamp(50px, 8vw, 40px) clamp(20px, 4vw, 64px);
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(40px, 6vw, 80px);
        }

        .mission-grid {
            width: 100%;
            max-width: 1280px;
        }

        .mission-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(20px, 3vw, 32px);
        }

        @media (min-width: 768px) {
            .mission-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .mission-card {
            background: #D9AF4B;
            padding: clamp(20px, 3vw, 32px);
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: clamp(12px, 2vw, 24px);
        }

        .mission-icon {
            width: clamp(40px, 6vw, 60px);
            height: clamp(40px, 6vw, 60px);
            /* background: white; */
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mission-icon img {
            max-width: 70%;
            max-height: 70%;
        }


        .mission-title {
            color: white;
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 700;
            line-height: 1.3;
        }

        .mission-desc {
            color: white;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 400;
            line-height: 1.6;
        }

        /* Services Section */
        .services-section {
            padding: clamp(0px, 8vw, 34px) clamp(20px, 4vw, 64px);
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(40px, 6vw, 80px);
        }

        .services-header {
            max-width: 768px;
            text-align: center;
        }

        .services-title {
            color: black;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
        }

        .services-grid {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            gap: clamp(50px, 8vw, 80px);
        }

        .service-item {
            display: flex;
            flex-direction: column;
            gap: clamp(24px, 4vw, 48px);
            align-items: center;
        }

        @media (min-width: 768px) {
            .service-item {
                flex-direction: row;
            }

            .service-item:nth-child(even) {
                flex-direction: row-reverse;
            }
        }

        .service-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: clamp(16px, 2vw, 32px);
            padding: 0 20px;
        }

        .service-title {
            color: black;
            font-size: clamp(20px, 3vw, 24px);
            font-weight: 700;
            line-height: 1.4;
        }

        .service-desc {
            color: black;
            font-size: clamp(14px, 2vw, 16px);
            line-height: 1.6;
        }

        .service-buttons {
            display: flex;
            gap: clamp(12px, 2vw, 24px);
            flex-wrap: wrap;
        }

        .service-img {
            width: 100%;
            max-width: 550px;
            height: auto;
            aspect-ratio: 1;
            object-fit: cover;
        }

        @media (max-width: 768px) {

            .service-img {
                width: 100%;
                max-width: 350px;
                height: auto;
                aspect-ratio: 1;
                object-fit: cover;
            }
        }

        /* Journey Section */
        .journey-section {
            padding: clamp(50px, 8vw, 112px) clamp(20px, 4vw, 64px);
            background: #D9AF4B;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(40px, 6vw, 80px);
        }

        .journey-header {
            max-width: 768px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 2vw, 24px);
        }

        .journey-title {
            color: #15224D;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
        }

        .journey-subtitle {
            color: #15224D;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.5;
        }

        .journey-buttons {
            display: flex;
            gap: clamp(12px, 2vw, 24px);
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .journey-timeline {
            width: 100%;
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(30px, 4vw, 40px);
        }

        @media (min-width: 768px) {
            .journey-timeline {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
        }

        .timeline-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(12px, 2vw, 16px);
            text-align: center;
        }

        .timeline-img {
            width: clamp(150px, 20vw, 204px);
            height: clamp(150px, 20vw, 204px);
            object-fit: cover;
            border-radius: 8px;
        }

        .timeline-line {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: clamp(8px, 2vw, 16px) 0;
        }

        .line {
            flex: 1;
            height: 3px;
            background: #15224D;
        }

        .dot-timeline {
            width: 15px;
            height: 15px;
            background: #15224D;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .timeline-year {
            color: #15224D;
            font-size: clamp(20px, 3vw, 24px);
            font-weight: 700;
        }

        .timeline-desc {
            color: #15224D;
            font-size: clamp(14px, 2vw, 16px);
            line-height: 1.5;
        }

        /* Gallery Section */
        .gallery-section {
            padding: clamp(50px, 8vw, 50px) clamp(20px, 4vw, 64px);
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(40px, 6vw, 80px);
        }

        .gallery-header {
            max-width: 768px;
            text-align: center;
        }

        .gallery-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .gallery-subtitle {
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.5;
        }

        .gallery-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(16px, 3vw, 32px);
        }

        .gallery-img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 1;
        }

        /* Office Bearers Section */
        .office-section {
            padding: clamp(50px, 8vw, 50px) clamp(20px, 4vw, 64px);
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(40px, 6vw, 80px);
        }

        .office-title {
            color: black;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            text-align: center;
        }

        .office-grid {
            width: 100%;
            max-width: 1280px;
            display: flex;
            flex-direction: column;
            gap: clamp(30px, 4vw, 40px);
        }

        .office-row {
            display: flex;
            justify-content: center;
            gap: clamp(20px, 3vw, 40px);
            flex-wrap: wrap;
        }

        .office-card {
            width: 100%;
            max-width: 215px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .office-img {
            width: 100%;
            height: auto;
            aspect-ratio: 283 / 331;
            object-fit: cover;
        }

        .office-info {
            padding: clamp(12px, 2vw, 16px);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .office-name {
            color: #1D1B20;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 500;
        }

        .office-role {
            color: #49454F;
            font-size: clamp(12px, 1.5vw, 14px);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 100px clamp(20px, 4vw, 64px);
            background: linear-gradient(135deg, #15224D 0%, #0d1633 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 60px;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(217, 175, 75, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(217, 175, 75, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimonials-header {
            max-width: 800px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .testimonials-badge {
            display: inline-block;
            font-size: 0.85rem;
            color: #D9AF4B;
            background: rgba(217, 175, 75, 0.12);
            padding: 6px 18px;
            border-radius: 30px;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 1px solid rgba(217, 175, 75, 0.25);
        }

        .testimonials-title {
            color: #ffffff;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .testimonials-subtitle {
            color: #94A3B8;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonials-slider-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonials-track-container {
            width: 100%;
            overflow: hidden;
            padding: 20px 10px;
        }

        .testimonials-track {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
        }

        .testimonials-track::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .testimonial-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            height: 480px; /* Fixed height to keep all cards uniform */
            flex: 0 0 100%;
            scroll-snap-align: start;
            box-sizing: border-box;
        }

        @media (min-width: 768px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (min-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(33.333% - 20px);
            }
        }

        /* Slider Controls */
        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-control:hover {
            background: #D9AF4B;
            color: #15224D;
            border-color: #D9AF4B;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-control {
            left: -70px;
        }

        .next-control {
            right: -70px;
        }

        @media (max-width: 1360px) {
            .prev-control {
                left: -20px;
            }
            .next-control {
                right: -20px;
            }
        }

        @media (max-width: 1200px) {
            .slider-control {
                display: none; /* Hide controls, use native swipe */
            }
        }

        /* Testimonials Indicators */
        .testimonials-indicators {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 30px;
            z-index: 2;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .testimonial-dot.active {
            width: 24px;
            border-radius: 12px;
            background: #D9AF4B;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 20px rgba(217, 175, 75, 0.25);
            border-color: rgba(217, 175, 75, 0.4);
        }

        .testimonial-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .stars {
            display: flex;
            gap: 4px;
        }

        .star {
            width: 18px;
            height: 18px;
            background: #D9AF4B;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .star.empty {
            background: #E2E8F0;
        }

        .star.half {
            background: linear-gradient(90deg, #D9AF4B 50%, #E2E8F0 50%);
        }

        .quote-icon-wrapper {
            font-size: 2rem;
            color: rgba(217, 175, 75, 0.15);
            line-height: 1;
            transition: color 0.3s ease;
        }

        .testimonial-card:hover .quote-icon-wrapper {
            color: rgba(217, 175, 75, 0.3);
        }

        .testimonial-quote {
            color: #334155;
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
            overflow-y: auto;
            padding-right: 8px;
        }

        .testimonial-quote::-webkit-scrollbar {
            width: 4px;
        }
        .testimonial-quote::-webkit-scrollbar-track {
            background: transparent;
        }
        .testimonial-quote::-webkit-scrollbar-thumb {
            background: rgba(21, 34, 77, 0.1);
            border-radius: 2px;
        }
        .testimonial-quote::-webkit-scrollbar-thumb:hover {
            background: rgba(21, 34, 77, 0.2);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            border-top: 1px solid #F1F5F9;
            padding-top: 20px;
        }

        .author-avatar-wrapper {
            position: relative;
        }

        .author-avatar-wrapper::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 14px;
            background: linear-gradient(135deg, #D9AF4B, #b48b30);
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .testimonial-card:hover .author-avatar-wrapper::after {
            transform: rotate(180deg);
        }

        .author-img {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            object-fit: cover;
            position: relative;
            z-index: 2;
            border: 2px solid #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }

        .author-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .author-name {
            color: #1E293B;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: -0.2px;
        }

        .author-role {
            color: #64748B;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* FAQs Section */
        .faqs-section {
            padding: clamp(50px, 8vw, 112px) clamp(20px, 4vw, 64px);
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(40px, 6vw, 80px);
        }

        .faqs-header {
            max-width: 768px;
        }

        .faqs-title {
            color: black;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .faqs-subtitle {
            color: black;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.5;
        }

        .faqs-grid {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: clamp(32px, 4vw, 48px);
        }

        .faq-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(24px, 3vw, 48px);
        }

        @media (min-width: 768px) {
            .faq-row {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        .faq-item {
            display: flex;
            flex-direction: column;
            gap: clamp(8px, 1.5vw, 12px);
        }

        .faq-question {
            color: black;
            font-size: clamp(16px, 2vw, 18px);
            font-weight: 700;
            line-height: 1.5;
        }

        .faq-answer {
            color: black;
            font-size: clamp(14px, 2vw, 16px);
            line-height: 1.6;
        }

        .contact-faq {
            max-width: 560px;
            display: flex;
            flex-direction: column;
            gap: clamp(16px, 2vw, 24px);
            text-align: center;
        }

        .contact-faq-title {
            color: black;
            font-size: clamp(24px, 4vw, 32px);
            font-weight: 700;
        }

        .contact-faq-subtitle {
            color: black;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.5;
        }


        /* Button Styles */
        .btn-primary {
            padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2vw, 24px);
            border: 1px solid #15224D;
            background: transparent;
            color: #15224D;
            font-size: clamp(14px, 2vw, 16px);
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: #15224D;
            color: white;
        }

        .btn-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: black;
            font-size: clamp(14px, 2vw, 16px);
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .btn-link:hover {
            opacity: 0.7;
        }

        /* Responsive utilities */
        @media (max-width: 767px) {

            .service-item,
            .service-item:nth-child(even) {
                flex-direction: column;
            }

            .hero-description {
                width: 90%;
            }

            .navbar-inner {
                position: relative;
                justify-content: space-between;
            }

            .hero-avatar {
                top: -80px;
                width: clamp(120px, 25vw, 200px);
                height: clamp(120px, 25vw, 200px);
            }

            .about-section {
                margin-top: -60px;
                padding-top: clamp(100px, 25vw, 150px);
            }
        }