* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e1e2a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

:root {
    --primary-orange: #ff6b00;
    --primary-green: #2e7d32;
    --dark-overlay: rgba(0, 0, 0, 0.55);
    --gray-bg: #f8fafc;
    --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
    --transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 40px 0;
}

/* ----- Navbar (Responsive) - FIXED hamburger visibility ----- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: #1f2a3e;
    transition: 0.2s;
    font-size: 1rem;
}

.nav-links li a:hover {
    color: var(--primary-orange);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-green);
    z-index: 1001;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        padding-bottom: 3rem;
        gap: 2rem;
        transition: 0.3s ease-in-out;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        left: 0;
    }

    /* Lock body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .navbar {
        padding: 0.8rem 1.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 8px 16px -6px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: #e05f00;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;

}

.btn-outline:hover {
    background: white;
    color: var(--primary-orange);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Banner Images */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 46px;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 32px;
    color: white;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #ffcc99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    border-left: 4px solid var(--primary-orange);
    padding-left: 16px;
    margin: 16px 0;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 550px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Desktop / Mobile Banner */
.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/* Stats Cards - FIXED: added margin-bottom and relative spacing to prevent banner overlap */
.stats-wrapper {
    position: relative;
    z-index: 10;
    background: transparent;
    margin-top: -40px;
    margin-bottom: 20px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.stat-card {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 32px 20px;
    border-radius: 28px;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

    transition: 0.25s;
    cursor: default;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 600;
    color: var(--primary-green);
}

/* Two column about - FIXED mobile response */
.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.col-img {
    flex: 1;
    min-width: 200px;
}

.col-img img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    object-fit: cover;
    height: auto;
    max-height: 480px;
}

.col-text {
    flex: 1;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 4px;
}

.text-muted {
    color: #4a5568;
    margin-top: 16px;
}

/* Public & Political Engagement Section */
#experience {
    background: #f8fafc;
    padding: 80px 0;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.exp-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    transition: all 0.25s ease;
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #ff6b00;
}

.exp-icon {
    background: linear-gradient(135deg, #fff3e8, #ffe8d9);
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ff6b00;
    transition: transform 0.2s ease,
            box-shadow 0.2s ease,
            background-color 0.2s ease,
            color 0.2s ease;
}

.exp-card:hover .exp-icon {
    background: #ff6b00;
    color: white;
    transform: scale(1.05);
}

.exp-text {
    flex: 1;
}

.exp-text p {
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .exp-card {
        padding: 24px 20px;
    }

    .exp-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    #experience {
        padding: 60px 0;
    }

    .exp-card {
        padding: 20px 18px;
        gap: 16px;
    }

    .exp-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.4rem;
        border-radius: 12px;
    }

    .exp-text p {
        font-size: 0.95rem;
    }
}

/* Professional Career Section */
#career {
    padding: 80px 0;
    background: #ffffff;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.career-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8edf2;
    transition: all 0.25s ease;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: #2e7d32;
}

.career-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
    letter-spacing: -0.01em;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 14px;
    display: inline-block;
}

.career-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-card li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: #475569;
    line-height: 1.5;
}

.career-card li::before {
    content: "•";
    color: #ff6b00;
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    left: 4px;
    top: -2px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .cards-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #career {
        padding: 60px 0;
    }

    .career-card {
        padding: 28px 22px;
    }

    .career-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .career-card li {
        margin-bottom: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .career-card {
        padding: 24px 18px;
    }

    .career-card h3 {
        font-size: 1.3rem;
    }
}

/* Impact Icons */
.impact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    text-align: center;
}

.impact-card {
    flex: 1;
    background: white;
    padding: 32px 20px;
    border-radius: 32px;
    box-shadow: var(--card-shadow);
}

.impact-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.impact-card h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-green);
}

/* Vision Section */
.vision-premium {
    background: linear-gradient(125deg, #fef9e6 0%, #e6f3e8 100%);
    border-radius: 56px;
    padding: 56px 48px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.vision-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(120deg, var(--primary-orange), var(--primary-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.vision-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.vision-card-pro {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
    border-radius: 60px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    transition: 0.2s;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.vision-card-pro i {
    font-size: 1.6rem;
    color: var(--primary-orange);
    width: 32px;
}

/* Moments of Service - Split Gallery */
#gallery {
    padding: 80px 0;
    background: #f8fafc;
}

.split-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Hide next/prev slides */
}

.splitSwiper {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    /* Hide overflowing slides */
    padding: 10px 0;
}

.splitSwiper .swiper-wrapper {
    align-items: center;
}

.splitSwiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.splitSwiper .swiper-slide-active {
    opacity: 1;
}

.splitSwiper .swiper-slide-prev,
.splitSwiper .swiper-slide-next {
    opacity: 0;
    visibility: hidden;
}

.split-slide-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    background: transparent;
}

.split-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.12);
    height: 360px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.split-image:hover img {
    transform: scale(1.03);
}

.split-quote-card {
    flex: 0.85;
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f6;
    position: relative;
    height: 360px;
}

.quote-icon-large {
    font-size: 2.5rem;
    color: #ff6b00;
    opacity: 0.25;
    margin-bottom: 16px;
    line-height: 1;
}

.quote-text {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1e293b;
    margin-bottom: 24px;
    font-style: italic;
}

.quote-footer {
    border-top: 2px solid #ff6b00;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-category {
    font-weight: 600;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

/* Navigation Arrows */
.split-nav {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #ff6b00 !important;
    transition: all 0.2s ease;
}

.split-nav:hover {
    background: #ff6b00;
    color: white !important;
    transform: scale(1.05);
}

.split-nav::after {
    font-size: 1.1rem;
    font-weight: bold;
}

.swiper-button-next.split-nav {
    right: 10px;
}

.swiper-button-prev.split-nav {
    left: 10px;
}

/* Pagination */
.split-pagination {
    bottom: -35px !important;
}

.split-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.2s;
}

.split-pagination .swiper-pagination-bullet-active {
    background: #ff6b00;
    width: 24px;
    border-radius: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .split-image {
        height: 320px;
    }

    .split-quote-card {
        height: 320px;
        padding: 28px 24px;
    }

    .quote-text {
        font-size: 1.05rem;
    }

    .quote-icon-large {
        font-size: 2.2rem;
    }
}

@media (max-width: 900px) {
    .split-slide-content {
        flex-direction: column;
        gap: 20px;
    }

    .split-image {
        height: 280px;
        width: 100%;
    }

    .split-quote-card {
        height: auto;
        min-height: 220px;
        width: 100%;
        padding: 24px 22px;
    }

    .quote-text {
        font-size: 1rem;
    }

    .quote-icon-large {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .split-nav {
        display: none;
    }
}

@media (max-width: 640px) {
    #gallery {
        padding: 30px 0;
    }

    .split-image {
        height: 240px;
        border-radius: 20px;
    }

    .split-quote-card {
        padding: 22px 20px;
        border-radius: 20px;
    }

    .quote-text {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .quote-category {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .split-image {
        height: 200px;
    }

    .split-quote-card {
        padding: 20px 16px;
    }

    .quote-text {
        font-size: 0.9rem;
    }

    .quote-icon-large {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    .swiper-pagination {
        display: none !important;
    }

    .vision-header h2 {
        font-size: 1.8rem;
    }
}

/* ===== Video Slider Section ===== */
.video-section {
    padding: 40px 0;
    background: #ffffff;
}

.video-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    padding: 0 50px;
}

.videoSwiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 50px;
}

.videoSwiper .swiper-slide {
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-player-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-player-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -10px rgba(0, 0, 0, 0.2);
}

.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.youtube-lite {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.youtube-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.youtube-lite iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Nav Arrows */
.video-nav {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: #ff6b00 !important;
    transition: all 0.2s ease;
}

.video-nav:hover {
    background: #ff6b00;
    color: white !important;
    transform: scale(1.1);
}

.video-nav::after {
    font-size: 1.1rem;
    font-weight: bold;
}

.video-nav.swiper-button-next {
    right: 0;
}

.video-nav.swiper-button-prev {
    left: 0;
}

/* Video Pagination */
.video-pagination {
    bottom: 5px !important;
}

.video-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.2s;
}

.video-pagination .swiper-pagination-bullet-active {
    background: #ff6b00;
    width: 24px;
    border-radius: 8px;
}

/* Video Section Responsive */
@media (max-width: 900px) {
    .video-slider-container {
        padding: 0;
    }

    
    .video-nav {
        display: flex !important;
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.95);
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    .video-nav::after {
        font-size: 0.9rem;
    }

    .video-nav.swiper-button-prev {
        left: 8px;
    }

    .video-nav.swiper-button-next {
        right: 8px;
    }
}

@media (max-width: 640px) {
    .video-section {
        padding: 30px 0;
    }

    .video-player-wrapper {
        border-radius: 16px;
    }
}

/* Personal Quote */
.personal-quote {
    background: var(--gray-bg);
    text-align: center;
    padding: 56px 28px;
    border-radius: 48px;
    font-size: 1.25rem;
    font-style: italic;
    max-width: 850px;
    margin: 0 auto;
    color: #1f3b42;
    font-weight: 500;
}

/* Contact Split - FIXED: added bottom spacing for form fields */
.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    background: white;
    border-radius: 48px;
    padding: 48px 40px;
    box-shadow: var(--card-shadow);
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: #fff0e5;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-orange);
}

.form-group {
    margin-bottom: 24px;
    /* Added bottom space between form fields */
}

input,
textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 40px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

button[type="submit"] {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

button[type="submit"]:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

footer {
    background: #0f1a1f;
    color: #cddfe7;
    padding: 48px 0 24px;
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), #f5b042);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Mobile Hero - swap to mobile banner */
@media (max-width: 768px) {

    .hero {
        align-items: flex-start;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .hero-overlay {
        background: rgba(0,0,0,0.45);
    }

    .hero-content {
        padding-top: 100px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-buttons {
        margin-top: 16px;
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 8px 14px;
        font-size: 0.78rem;
        gap: 5px;
        white-space: nowrap;
    }
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .container {
        padding: 0 24px;
    }

    .vision-premium {
        padding: 32px 24px;
    }

    .stats-wrapper {
        margin-top: -20px;
    }

    .stat-card {
        min-width: 140px;
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* About section mobile fix */
    .two-col {
        flex-direction: column;
        gap: 32px;
    }

    .col-img {
        width: 100%;
    }

    .col-img img {
        max-height: 380px;
        object-fit: cover;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-split {
        padding: 32px 24px;
        gap: 36px;
    }
}

@media (max-width: 680px) {
    .stats-grid {
        gap: 16px;
    }

    .stat-card {
        min-width: calc(50% - 16px);
        flex: 1 1 calc(50% - 16px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-wrapper {
        margin-top: -10px;
    }

    .form-group {
        margin-bottom: 20px;
    }
}

/* Language Toggle Styles */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1.5px solid #e2e8f0;
    color: #1f2a3e;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.lang-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

/* Tamil font class */
.tamil-font {
    font-family: 'Noto Sans Tamil', 'Inter', sans-serif;
}

/* Adjust for mobile */
@media (max-width: 900px) {
    .lang-toggle {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff6b00, #2e7d32);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}