/* ========================
   ASKA2Z MODERN DESIGN SYSTEM
   ======================== */
/* CACHE-BUST-20260209-v1.3 */
* { margin: 0; padding: 0; box-sizing: border-box; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================
   Color & Design Variables
   ======================== */
:root {
    /* Primary Colors */
    --primary-blue: #3b82f6;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;

    /* Green Colors */
    --light-green: #4ade80;
    --dark-green: #16a34a;
    --green-bg: #dcfce7;

    /* Neutrals */
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    background-image: url('../images/aska2z%20bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--light-green);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================
   NAVBAR STYLES
   ======================== */
.navbar {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    max-height: 83px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img:hover {
    transform: scale(1.08) translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-green));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================
   BUTTON STYLES
   ======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(59, 130, 246, 0.35);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(74, 222, 128, 0.08);
    color: var(--light-green);
    border: 2px solid var(--light-green);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 35px rgba(74, 222, 128, 0.35);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* ========================
   HERO SECTION - BANNER SLIDER
   ======================== */
.hero {
    position: relative;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}



/* 5. Extra small phones */
@media (max-width: 480px) {
    .banner-slider {
        height: calc(100vh - 70px) !important;
    }
}

.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    /* Remove top padding */
    position: relative;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    margin-bottom: 40px;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 50px 30px 80px;
    max-width: 900px;
    animation: slideInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 8px 16px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    opacity: 1;
    text-shadow: 1px 3px 6px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    margin: 0 auto;
}

.slider-controls {
    position: absolute !important;
    bottom: 120px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 12px !important;
    z-index: 25 !important;
    padding: 12px 24px !important;
    background: rgba(0,0,0,0.8) !important;
    border-radius: 30px !important;
    backdrop-filter: blur(15px) !important;
}


.slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
    transform: scale(1.2);
}

.slider-dot.active {
    width: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    padding: 16px 24px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    font-weight: bold;
}

.slider-prev {
    left: 40px;
}

.slider-next {
    right: 40px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column !important;  /* Stack vertically */
        align-items: center !important;     /* Perfect center */
        gap: 15px !important;
        padding: 30px 20px !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;     /* Full width buttons */
        max-width: 300px !important;
        justify-content: center !important;
    }
}
/* Mobile: Center & scale images properly */
@media (max-width: 768px) {
    .banner-slider {
        height: 400px !important;
        /* Reduced height */
        border-radius: 16px;
    }

    .slide {
        background-size: cover !important;
        /* Cover full area */
        background-position: center center !important;
        /* CENTER ALIGN */
        background-repeat: no-repeat !important;
    }

    .slide-content {
        padding: 60px 24px 60px !important;
        /* More balanced padding */
        text-align: center;
        max-width: 100%;
    }

    .slide-title {
        font-size: 28px !important;
        /* Smaller but readable */
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.5px;
    }

    .slide-subtitle {
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Navigation buttons - better mobile positioning */
    .slider-prev,
    .slider-next {
        padding: 12px 16px !important;
        font-size: 20px !important;
        width: 48px;
        height: 48px;
        left: 16px !important;
        right: 16px !important;
        top: 50% !important;
        border-radius: 50% !important;
    }

    .slider-controls {
        bottom: 24px !important;
        padding: 12px 20px !important;
        gap: 10px;
    }
}
/* 🔥 MOBILE SLIDER + BUTTONS - PERFECT ALIGNMENT */
@media (max-width: 768px) {
    /* 1. SLIDER DOTS - HIGHER UP */
    .slider-controls {
        bottom: 80px !important;  /* Above buttons */
        padding: 12px 20px !important;
    }
    
    /* 2. HERO BUTTONS - BOTH VISIBLE + CENTERED */
    .hero-buttons {
        position: absolute !important;
        bottom: 40px !important;   /* Perfect position */
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 90% !important;
        max-width: 320px !important;
        z-index: 10 !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 16px !important;
    }
    
    /* 3. SLIDER ARROWS - HIGHER */
    .slider-prev, .slider-next {
        top: 45% !important;  /* Better position */
        padding: 12px 16px !important;
    }
    
    /* 4. SHOW MOBILE MENU BUTTON */
    .menu-toggle {
        display: flex !important;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    

    .slide-title {
        font-size: 24px !important;
    }

    .slide-subtitle {
        font-size: 14px !important;
    }

    .slide-content {
        padding: 50px 20px 50px !important;
    }
}

/* 🔥 PERFECT MOBILE NAVBAR - REPLACE ALL MOBILE CSS */
@media (max-width: 768px) {
    /* FIXED HEADER */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255,255,255,0.98) !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
        z-index: 1000 !important;
        height: 70px !important;
    }
    
    .nav-container {
        height: 70px !important;
        padding: 0 20px !important;
    }
    
    /* LOGO */
    .logo-img {
        height: 45px !important;
        max-height: 45px !important;
    }
    
    /* HIDE DESKTOP MENU */
    .nav-links {
        display: none !important;
    }
    
    /* MOBILE MENU (Your JS adds .active) */
    .nav-links.active {
        display: flex !important;
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        flex-direction: column !important;
        background: rgba(255,255,255,0.98) !important;
        backdrop-filter: blur(20px) !important;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
        padding: 0 !important;
        margin: 0 !important;
        animation: slideDown 0.3s ease !important;
    }
    
    .nav-links.active li {
        width: 100% !important;
        padding: 15px 25px !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }
    
    .nav-links.active a {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #1e293b !important;
    }
    
    /* HAMBURGER BUTTON */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        background: none !important;
        border: none !important;
        padding: 12px !important;
        cursor: pointer !important;
        z-index: 1001 !important;
    }
    
    .menu-toggle span {
        width: 28px !important;
        height: 3px !important;
        background: #1e293b !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
    }
    
    /* X ANIMATION */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px) !important;
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px) !important;
    }
    
    /* ZERO GAP */
    body {
        padding-top: 70px !important;
    }
    
    .hero, .banner-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-radius: 0 !important;
    }
    
    .banner-slider {
        height: 70vh !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ========================
   SECTION STYLING
   ======================== */
.stats-section {
    padding: 80px 20px;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-blue);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 600;
}

/* ========================
   WHAT WE DO SECTION
   ======================== */
.what-we-do {
    padding: 80px 20px;
    background: transparent;
}

.what-we-do h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-block {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid var(--border);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-green) 100%);
    z-index: 5;
}

.service-block:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(74, 222, 128, 0.2);
    border-color: var(--light-green);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--green-bg) 100%);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block:hover .service-image img {
    transform: scale(1.1) rotate(2deg);
}

.service-content {
    padding: 36px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-block h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.35;
    font-weight: 800;
}

.service-block p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* ========================
   WHERE WE OPERATE SECTION
   ======================== */
.where-we-operate {
    padding: 80px 20px;
    background: transparent;
}

.where-we-operate h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--primary-blue);
    text-align: center;
}

.operate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Globe Styling */
.map-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.globe-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.globe {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-svg {
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.25));
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* India Map */
.india-map {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.12));
}

.india-map .andhra-pradesh {
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(59, 130, 246, 0.3));
    cursor: pointer;
}

.india-map .andhra-pradesh:hover {
    filter: drop-shadow(0 8px 25px rgba(59, 130, 246, 0.5));
    opacity: 0.9;
}

.state-label {
    font-size: 14px;
    font-weight: 700;
    fill: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Right Section */
.operate-right-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.operate-tagline h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    margin-bottom: 12px;
}

.operate-tagline .highlight-aska {
    color: var(--primary-blue);
    font-weight: 900;
}

.tagline-second {
    margin-bottom: 8px !important;
}

.tagline-second .highlight-way {
    color: var(--primary-blue);
    font-weight: 900;
}

.tagline-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0 0 0;
    max-width: 500px;
}

/* Stats Grid */
.operate-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-box {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--green-bg) 100%);
    padding: 32px 24px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

/* ========================
   PAGE HEADER
   ======================== */
.page-header {
    background: transparent;
    color: var(--text-dark);
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    color: var(--text-gray);
}

/* ========================
   CTA SECTION
   ======================== */
.cta {
    background: transparent;
    color: var(--text-dark);
    padding: 100px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-gray);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background: transparent;
    background-attachment: fixed;
    color: var(--text-dark);
    padding: 60px 20px 0;
    position: relative;
    overflow: hidden;
    min-height: 40px;
}

.footer-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.footer-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.75);
    z-index: 2;
}

.footer .container {
    position: relative;
    z-index: 3;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 0;

}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #3b82f6;
}

.footer-section p {
    color: white;
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
    color: white;
}

.footer-section a {
    color: white;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--light-green), var(--dark-green));
    transform: translateY(-4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;

    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: white;
}

.footer-bottom ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer-bottom a {
    color: white;
}

.footer-bottom a:hover {
    color: var(--light-green);
}

/* ========================
   VIDEO SECTION
   ======================== */
.video-section {
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 28.125%;
    background: var(--text-dark);
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================
   ABOUT PAGE SECTIONS
   ======================== */
.about-story {
    padding: 80px 20px;
    background: transparent;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.2;
}

.story-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================
   MISSION & VISION
   ======================== */
.mission-vision {
    padding: 80px 20px;
    background: transparent;
}

.mission-vision h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 5px solid var(--primary-blue);
}

.mv-card:nth-child(2) {
    border-top-color: var(--light-green);
}

.mv-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.mv-card:nth-child(2) .mv-icon {
    background: linear-gradient(135deg, var(--light-green), var(--dark-green));
}

.mv-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* ========================
   VALUES SECTION
   ======================== */
.values-section {
    padding: 80px 20px;
    background: transparent;
}

.values-section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 40px 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--green-bg) 100%);
    border: 2px solid var(--light-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.value-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================
   ACHIEVEMENTS SECTION
   ======================== */
.achievements {
    padding: 80px 20px;
    background: transparent;
}

.achievements h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.achievement-item h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.achievement-item p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ========================
   TEAM SECTION
   ======================== */
.team-section {
    padding: 80px 20px;
    background: transparent;
}

.team-section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.team-member {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.team-member img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.team-member h4,
.team-member p {
    padding: 0 24px;
}

.team-member h4 {
    font-size: 18px;
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    padding-bottom: 24px;
}

/* ========================
   FRANCHISE PAGE SECTIONS
   ======================== */
.franchise-intro {
    padding: 60px 20px;
    background: transparent;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.9;
}

/* ========================
   FRANCHISE BENEFITS
   ======================== */
.franchise-benefits {
    padding: 80px 20px;
    background: transparent;
}

.franchise-benefits h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-blue);
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================
   CONTACT SECTIONS
   ======================== */
.contact-info {
    padding: 80px 20px;
    background: transparent;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card a {
    font-weight: 600;
}

/* ========================
   CONTACT FORM
   ======================== */
.contact-form-section {
    padding: 80px 20px;
    background: transparent;
}

.contact-form-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-grid .form-group:nth-child(n+3) {
    grid-column: 1 / -1;
}

.contact-form label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    grid-column: 1 / -1;
}

/* Radio Group Styles */
.form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.radio-option:hover {
    color: var(--primary-blue);
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 20px;
}

/* ========================
   DEPARTMENTS SECTION
   ======================== */
.departments-section {
    padding: 80px 20px;
    background: transparent;
}

.departments-section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dept-card {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--primary-blue);
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--light-green);
}

.dept-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.dept-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.dept-contact {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.dept-contact a {
    font-weight: 600;
}

/* ========================
   SOCIAL MEDIA SECTION
   ======================== */
.social-media-section {
    padding: 80px 20px;
    background: transparent;
}

.social-media-section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--green-bg) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--light-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.social-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.social-card:hover i {
    color: var(--light-green);
    transform: scale(1.2);
}

.social-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.social-card p {
    color: var(--text-gray);
    font-size: 13px;
}

/* ========================
   QUICK RESPONSE SECTION
   ======================== */
.quick-response {
    padding: 80px 20px;
    background: transparent;
}

.quick-response h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.response-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-blue);
}

.response-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.response-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.response-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
}

/* ========================
   FAQ SECTION
   ======================== */
.faq-section {
    padding: 80px 20px;
    background: transparent;
}

.faq-section h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--green-bg) 100%);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--light-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.faq-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 42px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .services-blocks-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .operate-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .where-we-operate h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .logo-img {
        max-height: 60px;
    }

    .banner-slider {
        height: 450px;
        border-radius: 12px;
        margin-bottom: 30px;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .slide-content {
        padding: 40px 20px 50px;
    }

    .slider-prev,
    .slider-next {
        padding: 12px 16px;
        font-size: 18px;
       
    }

    .slider-prev {
        left: 15px !important;
    }

    .slider-next {
        right: 15px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .what-we-do h2 {
        font-size: 36px;
    }

    .services-blocks-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-image {
        height: 240px;
    }

    .service-content {
        padding: 28px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .story-image {
        height: 250px;
    }

    .mission-vision {
        padding: 60px 20px;
    }

    .mission-vision h2 {
        font-size: 36px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mv-card {
        padding: 36px 28px;
    }

    .values-section h2,
    .achievements h2,
    .team-section h2,
    .franchise-benefits h2,
    .departments-section h2,
    .social-media-section h2,
    .quick-response h2,
    .faq-section h2,
    .contact-form-section h2 {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .contact-form {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-grid .form-group:nth-child(n+3) {
        grid-column: auto;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .video-section {
        margin-bottom: 40px;
        border-radius: 12px;
    }

    .mv-card {
        padding: 32px 24px;
    }

    .story-image {
        height: 280px;
    }

    .operate-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-box {
        padding: 24px 16px;
    }

    .stat-value {
        font-size: 36px;
    }

    .operate-tagline h3 {
        font-size: 28px;
    }

    .tagline-description {
        font-size: 14px;
    }

    .globe-container {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 350px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .what-we-do h2 {
        font-size: 28px;
    }

    .service-block h3 {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .slider-controls {
        bottom: 20px;
        padding: 10px 16px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom ul {
        justify-content: center;
    }

    .story-text h2,
    .mission-vision h2,
    .values-section h2,
    .achievements h2,
    .team-section h2,
    .franchise-intro h2,
    .franchise-benefits h2,
    .contact-form-section h2,
    .departments-section h2,
    .social-media-section h2,
    .quick-response h2,
    .faq-section h2 {
        font-size: 24px;
    }

    .values-grid,
    .achievements-grid,
    .team-grid,
    .benefits-grid,
    .departments-grid,
    .info-grid,
    .social-grid,
    .response-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .mv-card,
    .value-card,
    .achievement-item,
    .team-member,
    .benefit-card,
    .dept-card,
    .info-card,
    .social-card,
    .response-card,
    .faq-item {
        padding: 24px 18px;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-grid {
        gap: 14px;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .where-we-operate h2 {
        font-size: 28px;
    }

    .where-we-operate .section-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .operate-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .operate-stats-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-box {
        padding: 20px 14px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .operate-tagline h3 {
        font-size: 20px;
    }

    .tagline-description {
        font-size: 13px;
        max-width: 100%;
    }

    .globe-container {
        width: 200px;
        height: 200px;
    }

    .india-map {
        max-width: 280px;
    }
}

/*  what we operate  */
/* Updated Map Section - Image Layout */
.map-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* Space between globe and map images */
}

.image-container {
    width: 100%;
    max-width: 400px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(59, 130, 246, 0.1);
}

.image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .section-image {
    transform: scale(1.1);
}

/* Globe image specific styling */
.globe-image {
    height: 280px;
}

/* Map image specific styling */
.map-image {
    height: 320px;
    /* Slightly taller for map */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-container {
        max-width: 300px;
        height: 220px;
    }

    .globe-image,
    .map-image {
        height: 220px;
    }

    .map-section {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .image-container {
        height: 180px;
        max-width: 280px;
    }
}


/* ======================= 
   DELIVERY GALLERY SECTION
   ======================= */
.delivery-gallery {
    padding: 100px 20px;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header .section-intro {
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-blue);
}

.gallery-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(74, 222, 128, 0.9)); */
    background: linear-gradient(90deg, rgba(160, 202, 232, 0.51) 0%, rgba(232, 220, 220, 0.54) 50%, rgba(152, 219, 145, 0.31) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.overlay-content span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .gallery-item.large {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .delivery-gallery {
        padding: 80px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* ======================= 
   WHY CHOOSE US SECTION
   ======================= */
/* Why Choose Us - Compact Design */
.why-choose-us {
    padding: 100px 20px;
    background: transparent;
}

.choose-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.choose-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tab {
    padding: 24px 20px;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    height: 120px;
    /* Fixed compact height like reference */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tab:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
}

.tab.active {
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.tab-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.tab-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.tab-content {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.choose-content {
    position: relative;
}

.content-panel {
    display: none;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-panel.active {
    display: block;
}

.content-panel h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-left: 4px solid var(--light-green);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.benefit-item i {
    font-size: 24px;
    color: var(--light-green);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE - Matches reference stacking */
@media (max-width: 1024px) {
    .choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tab {
        height: 100px;
        flex-direction: row;
        align-items: center;
    }

    .tab-content {
        margin-left: auto;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .tab {
        padding: 20px;
        height: 90px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}


/* ======================= 
   MODEL VISION MISSION - CLEAN TEXT
   ======================= */
.model-vision-mission {
    padding: 120px 20px;
    background: transparent;
}

.mvm-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

.mvm-main h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.1;
}

.mvm-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 48px 0 24px;
    position: relative;
}

.mvm-main h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-green));
    border-radius: 2px;
}

.mvm-main p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 650px;
}

.mvm-aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* Reduced from 48px */
    padding-top: 0;
    /* Removed extra padding */
    align-items: flex-start;
}

.vision h4,
.mission h4 {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.vision,
.mission {
    width: 100%;
}

.mvm-image {
    margin-top: 8px;
    /* Small tight spacing */
    width: 100%;
    max-width: 300px;
    /* allow natural height based on image aspect ratio */
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mvm-image:hover {
    transform: translateY(-4px);
}

.mvm-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.vision h4::after,
.mission h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--light-green);
}

.mvm-aside p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.75;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .mvm-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mvm-main h2 {
        font-size: 40px;
    }
}

/* Responsive image sizing */
@media (max-width: 1024px) {
    .mvm-image {
        /* allow the image container to fill available space and maintain aspect ratio */
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .mvm-aside {
        gap: 24px;
    }

    .mvm-image {
        /* continue scaling at smaller breakpoints */
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .model-vision-mission {
        padding: 80px 20px;
    }

    .mvm-main h2 {
        font-size: 32px;
    }

    .mvm-main h3 {
        font-size: 24px;
    }

    .mvm-main p {
        font-size: 16px;
    }

    .mvm-aside {
        gap: 36px;
    }
}


/* ======================= 
   BRAND PARTNERS LOGOS
   ======================= */
.brand-partners {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header .section-intro {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* FIXED: 6 per row on desktop */
    gap: 24px;
    margin-bottom: 80px;
    padding: 40px 20px;
    /* Added side padding for gaps */
    max-width: 1200px;
    /* Container width control */
    margin-left: auto;
    margin-right: auto;
}

.brand-logo {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.brand-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.brand-logo img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.brand-logo.more {
    background: var(--glass-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    border: 2px dashed var(--text-light);
}

.brand-logo.more span {
    padding: 10px 0;
}

.brand-logo:hover img {
    filter: grayscale(0);
}

.brands-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .brands-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .brands-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}


/*********************** */
/*** FRANCHISE MODEL  ***/
/*********************** */

.franchise-opportunities {
    padding: 120px 20px;
    background: transparent;
}

.franchise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.franchise-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;
    overflow: hidden;
}

.franchise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-green));
}

.franchise-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.franchise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchise-icon svg {
    width: 48px;
    height: 48px;
}

.franchise-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
}

.franchise-specs {
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item.total {
    background: #FFB100;
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin: 16px 0;
    font-weight: 700;
}

.spec-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.spec-value {
    font-weight: 700;
    font-size: 16px;
}

.franchise-highlights {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.franchise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchise-icon i {
    font-size: 32px;
    /* Perfect size */
    color: var(--white);
}


.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.highlight i {
    color: var(--light-green);
    font-size: 16px;
}

.highlight.profit {
    color: var(--primary-blue);
    font-weight: 700;
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.cta-btn {
    display: inline-block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--light-green), var(--dark-green));
}

/* Responsive */
@media (max-width: 1024px) {
    .franchise-grid {
        grid-template-columns: 1fr;
    }
}
/* 🔥 MOBILE: HIDE SLIDER CONTROLS + BUTTONS */
@media (max-width: 768px) {
    /* 1. HIDE ALL SLIDER CONTROLS */
    .slider-controls,
    .slider-prev,
    .slider-next,
    .slider-dot {
        display: none !important;
    }
    
    /* 2. HERO BUTTONS - BOTTOM CENTER (VISIBLE) */
    .hero-buttons {
        position: absolute !important;
        bottom: 40px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 90% !important;
        max-width: 320px !important;
        z-index: 10 !important;
    }
    
    /* 3. PERFECT SLIDER HEIGHT */
    .banner-slider {
        height: 70vh !important;
    }
}
