  /* Theme (ONLY these colors) */
:root {
    --primary: #00A88E;
    --primary-dark: #008372;
    --primary-darker: #006655; /* New darker green for shadows */
    --primary-light: #e6f7f4;
    --shadow-light: rgba(0, 168, 142, 0.1);
    --shadow-medium: rgba(0, 131, 114, 0.2);
    --shadow-dark: rgba(0, 102, 85, 0.35); /* Enhanced dark green shadow */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-text: #333333;
    --medium-text: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/* CRITICAL FIX - HTML/Body Reset */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    height: 100%;
}

body {
    padding-top: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}


        /* Reset & Base */
        * { margin:0; padding:0; box-sizing:border-box; }
        body { font-family: 'Segoe UI', system-ui, sans-serif; }

        /* ===================== MAIN HEADER ===================== */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            border-bottom: 1px solid var(--light-gray);
            z-index: 10000;
            padding: 0 2%;
            height: 68px; /* Thoda chota aur premium look */
            display: flex;
            align-items: center;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-container img {
            height: 46px;
            transition: transform 0.3s ease;
        }

        .logo-container img:hover {
            transform: scale(1.08);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        /* Services Button - Beautiful & Active */
        .courses-dropdown-btn {
            background: var(--primary-light);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .courses-dropdown-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,168,142,0.3);
        }

        .courses-dropdown-btn i {
            transition: transform 0.3s ease;
        }

        .courses-dropdown-btn.active i {
            transform: rotate(180deg);
        }

        /* Icons */
        .header-icon {
            font-size: 1.3rem;
            color: var(--dark-text);
            cursor: pointer;
            padding: 10px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .header-icon:hover {
            background: var(--primary-light);
            color: var(--primary);
            transform: rotate(15deg) scale(1.15);
        }

        /* Hamburger - Super Premium */
        .hamburger-btn {
            border: none;
            background: transparent;
            font-size: 1.5rem;
            color: var(--dark-text);
            cursor: pointer;
            padding: 10px;
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .hamburger-btn:hover {
            background: var(--primary);
            color: white;
            transform: rotate(90deg);
        }

        /* ===================== SERVICES DROPDOWN ===================== */
        .services-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            border-radius: 14px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            min-width: 260px;
            padding: 12px 0;
            margin-top: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.35s ease;
            z-index: 9999;
            border: 1px solid rgba(0,168,142,0.15);
        }

        .services-menu.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .services-menu a {
            display: flex;
            align-items: center;
            padding: 14px 24px;
            color: var(--dark-text);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .services-menu a:hover {
            background: var(--primary-light);
            color: var(--primary);
            padding-left: 32px;
        }

        .services-menu a i {
            margin-right: 14px;
            font-size: 1.1rem;
            color: var(--primary);
        }

        /* ===================== GREEN SIDEBAR ===================== */
        .sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .green-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 320px;
            height: 100vh;
            background: linear-gradient(135deg, #00a88e 0%, #008577 100%);
            border-radius: 24px 0 0 24px;
            transform: translateX(100%);
            transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 9999;
            overflow-y: auto;
            box-shadow: -15px 0 40px rgba(0,0,0,0.25);
        }

        .green-sidebar.is-open {
            transform: translateX(0);
        }

        .sidebar-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sidebar-close:hover {
            background: white;
            color: var(--primary);
            transform: rotate(90deg) scale(1.1);
        }

        .sidebar-logo img {
            height: 60px;
            filter: brightness(0) invert(1);
        }

        .sidebar-menu {
            padding: 100px 0 40px;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            padding: 20px 40px;
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.4s ease;
            position: relative;
        }

        .sidebar-item:hover {
            background: rgba(255,255,255,0.15);
            padding-left: 48px;
        }

        .sidebar-item i {
            margin-right: 18px;
            font-size: 1.3rem;
        }

        /* No Scroll */
        .no-scroll {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-icon:not(.hamburger-btn) { display: none; }
            .courses-dropdown-btn { padding: 9px 16px; font-size: 14px; }
            .green-sidebar { width: 300px; }
        }

        @media (max-width: 480px) {
            .green-sidebar { width: 280px; border-radius: 20px 0 0 20px; }
        }

/* Hero Carousel Styles - COMPLETELY FIXED */
.hero-carousel {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
    /* CHANGED: Removed all padding from top, only bottom padding */
    padding: 0 0 60px 0;
    margin-top: 0;
    /* Add top margin equal to navbar height */
    margin-top: 70px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
    /* Add top padding to content */
    padding-top: 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-band {
    background: var(--primary);
    display: inline-block;
    padding: 4px 8px;
    margin: 4px 0;
    color: var(--white);
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--medium-text);
    margin-bottom: 30px;
}

.enroll-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.enroll-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 18px var(--shadow-dark);
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Background Graphics */
.hero-bg-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
}

.graphic-element {
    position: absolute;
}

/* Tab Button Styles with color swapping on hover */
.segment-tabs {
    background: var(--primary);
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.tab-button {
    flex: 1;
    max-width: 300px;
    padding: 14px 0;
    border: none;
    cursor: pointer;
    background: var(--primary); /* Default: green background */
    color: var(--white); /* Default: white text */
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
    display: block;
    position: relative;
    overflow: hidden;
}

/* When tab is active */
.tab-button.active {
    background: var(--white); /* White background */
    color: var(--primary); /* Green text */
}

/* Hover effect for active tab (white background) */
.tab-button.active:hover {
    background: var(--white);
    color: var(--primary-dark); /* Darker green text on hover */
    box-shadow: inset 0 0 0 1px var(--primary-light);
}

/* Hover effect for inactive tab (green background) */
.tab-button:not(.active):hover {
    background: var(--white); /* White background on hover */
    color: var(--primary); /* Green text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 142, 0.2);
}

/* Optional: Add smooth transition for the hover effect */
.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.tab-button:hover::before {
    transform: translateY(0);
}

.tab-button:not(.active):hover {
    color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav-right .courses-dropdown,
    .nav-right .header-icon:not(.hamburger-btn) {
        display: none;
    }

    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 20px 0 40px 0;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

    .enroll-btn {
        margin-bottom: 30px;
    }

    .slide-indicators {
        bottom: 20px;
    }
    
    /* Adjust hero margin for mobile */
    .hero-carousel {
        margin-top: 65px;
        padding: 0 0 40px 0;
    }
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* EXTRA FIXES - ADD THESE AT THE END */
body > header.main-header:first-of-type {
    margin-top: 0;
    top: 0;
}

body > section.hero-carousel:first-of-type {
    margin-top: 70px; /* Navbar height */
    padding-top: 0;
}

/* Ensure no gap in any browser */
html {
    scroll-padding-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-carousel {
        margin-top: 65px;
    }
    
    body > section.hero-carousel:first-of-type {
        margin-top: 65px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        margin-top: 60px;
    }
    
    body > section.hero-carousel:first-of-type {
        margin-top: 60px;
    }
}



    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--light-gray);
      color: var(--dark-text);
      padding: 3rem 1rem;
    }

    /* ===== LAYOUT WRAPPER ===== */
    .container {
      max-width: 1350px;
      margin: 0 auto;
    }

    /* ===== TABS NAVIGATION ===== */
    .tabs-container {
      margin-bottom: 2.5rem;
      border-bottom: 2px solid #e0e0e0;
      width: 100%;
    }

    .tabs-list {
      display: flex;
      justify-content: center;
      gap: 3rem;
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 0;
    }

    .tab-link {
      text-decoration: none;
      color: var(--medium-text);
      font-weight: 500;
      font-size: 1rem;
      padding-bottom: 1rem;
      position: relative;
      transition: color 0.3s ease;
      display: inline-block;
    }

    .tab-link:hover {
      color: var(--primary);
    }

    .tab-link::after {
  display: none !important;
    }

    .tab-link.active {
      color: var(--primary);
      font-weight: 700;
    }

    .tab-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary);
      border-radius: 2px 2px 0 0;
    }

    /* ===== MAIN GRID LAYOUT ===== */
    .content-grid {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 2.5rem;
      align-items: start;
    }

    /* ===== SIDEBAR ===== */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      position: sticky;
      top: 2rem;
      align-self: start;
    }

    .sidebar-card {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      background: var(--white);
      padding: 1.8rem;
      border-radius: 16px;
      text-decoration: none;
      color: inherit;
      box-shadow: var(--card-shadow);
      position: relative;
      border-left: 5px solid transparent;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .sidebar-card:hover {
      transform: translateX(8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      background-color: var(--primary-light);
      border-left-color: var(--primary);
    }

    .sidebar-card i {
      width: 54px;
      height: 54px;
      background: rgba(0, 168, 142, 0.1);
      color: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .sidebar-text strong {
      display: block;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--dark-text);
    }

    .sidebar-text p {
      font-size: 0.9rem;
      color: var(--medium-text);
    }

    /* Active State for Sidebar */
    .sidebar-card.active {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      border-left-color: transparent;
      box-shadow: 0 15px 30px rgba(0, 102, 85, 0.25);
    }

    .sidebar-card.active i {
      background: rgba(255,255,255,0.2);
      color: var(--white);
    }

    .sidebar-card.active .sidebar-text strong { color: var(--white); }
    .sidebar-card.active .sidebar-text p { color: rgba(255,255,255,0.9); }

    .sidebar-card.active::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 10px solid var(--primary-dark);
    }

    /* ===== COURSE CARDS ===== */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .course-card {
      background: var(--white);
      border-radius: var(--card-radius);
      box-shadow: var(--card-shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid #f0f0f0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.1);
      border-color: rgba(0, 168, 142, 0.3);
    }

    .course-img {
      width: 100%;
      height: 140px;
      object-fit: cover;
    }

    .course-body {
      padding: 1.2rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .badge {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
    }

    .course-body h3 {
      font-size: 1rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 1rem;
      line-height: 1.4;
      flex-grow: 1;
    }

    .meta-info {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 1.2rem;
    }

    .meta-info span {
      font-size: 0.85rem;
      color: var(--medium-text);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .meta-info i {
      color: var(--primary);
      font-size: 0.9rem;
    }

    .btn-link {
      align-self: flex-start;
      background-color: var(--primary);
      color: var(--white);
      text-decoration: none;
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.3s;
    }

    .btn-link:hover {
      background-color: var(--primary-dark);
    }

    /* Hide all course categories by default */
    .course-category {
      display: none;
    }

    /* Show only the active category */
    .course-category.active {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
      .courses-grid, .course-category.active {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 900px) {
      .tabs-list { justify-content: flex-start; }
      .content-grid { grid-template-columns: 1fr; }
      .sidebar { flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
      .sidebar-card { flex: 0 0 280px; }
      .sidebar-card.active::after { display: none; }
    }

    @media (max-width: 600px) {
      .courses-grid, .course-category.active {
        grid-template-columns: 1fr;
      }
      .tabs-list { gap: 1.5rem; }
    }


        /* Mission Section */
        .mission {
            padding: 100px 0;
            background-color: var(--light-gray);
            position: relative;
        }
        
        .mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23e6f7f4" opacity="0.3"/></svg>');
            background-size: cover;
            pointer-events: none;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 18px;
            color: var(--medium-text);
            max-width: 700px;
            margin: 25px auto 0;
        }
        
        .mission-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .mission-card {
            background-color: var(--white);
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-top: 5px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        
        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .mission-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px var(--shadow-dark);
        }
        
        .mission-card:hover::before {
            transform: scaleX(1);
        }
        
        .mission-card h3 {
            font-size: 22px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            padding-left: 25px;
        }
        
        .mission-card h3::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .mission-card p {
            color: var(--medium-text);
            font-size: 16px;
            line-height: 1.7;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--white);
            padding: 35px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 168, 142, 0.1);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 142, 0.05) 0%, rgba(0, 131, 114, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 20px 45px var(--shadow-dark);
            border-color: rgba(0, 168, 142, 0.2);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card h3 {
            font-size: 22px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .service-card p {
            color: var(--medium-text);
            font-size: 16px;
            margin-bottom: 25px;
            flex-grow: 1;
            position: relative;
            z-index: 2;
            line-height: 1.7;
        }
        
        .learn-more-btn {
            display: inline-block;
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: auto;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        
        .learn-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            z-index: -1;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .learn-more-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--shadow-dark);
            border-color: transparent;
        }
        
        .learn-more-btn:hover::before {
            transform: translateY(0);
        }
        
        /* Keywords Showcase */
        .keywords {
            padding: 100px 0;
            background-color: var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .keywords::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 168, 142, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .keywords-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .keyword-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 18px;
            box-shadow: 0 8px 25px var(--shadow-light);
            display: flex;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 168, 142, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .keyword-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
            transform: scaleY(0);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .keyword-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px var(--shadow-dark);
            border-color: rgba(0, 168, 142, 0.2);
        }
        
        .keyword-item:hover::before {
            transform: scaleY(1);
        }
        
        .keyword-icon {
            font-size: 28px;
            color: var(--primary);
            margin-right: 25px;
            transition: all 0.4s ease;
            min-width: 40px;
        }
        
        .keyword-item:hover .keyword-icon {
            transform: scale(1.2) rotate(10deg);
        }
        
        .keyword-text {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.5;
        }
        
        /* Stats Section */
        .stats {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-radius: 25px;
            margin: 60px auto;
            width: calc(100% - 40px);
            box-shadow: 0 20px 50px rgba(0, 102, 85, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            pointer-events: none;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            padding: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 15px;
        }
        
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .stat-item h3 {
            font-size: 52px;
            margin-bottom: 10px;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }
        
        .stat-item:hover h3 {
            transform: scale(1.05);
        }
        
        .stat-item p {
            font-size: 18px;
            opacity: 0.9;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(0, 168, 142, 0.05) 0%, rgba(0, 131, 114, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 Q50,30 100,0 V100 H0 Z" fill="rgba(255,255,255,0.8)"/></svg>');
            background-size: cover;
            pointer-events: none;
        }
        
        .cta-section h2 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            font-size: 20px;
            color: var(--medium-text);
            max-width: 700px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 2;
            line-height: 1.7;
        }
        
        /* About Us Section - Matching Image Design */
        .about-section {
            padding: 120px 0;
            background-color: var(--white);
            position: relative;
        }
        
        .about-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .about-header h1 {
            font-size: 48px;
            color: var(--primary-dark);
            margin-bottom: 25px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }
        
        .about-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 3px;
        }
        
        .about-header p {
            font-size: 20px;
            color: var(--medium-text);
            max-width: 800px;
            margin: 40px auto 0;
            line-height: 1.8;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 80px;
        }
        
        .mission-box, .vision-box {
            background: var(--light-gray);
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 15px 35px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 168, 142, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .mission-box::before, .vision-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 142, 0.05) 0%, rgba(0, 131, 114, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .mission-box:hover, .vision-box:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px var(--shadow-dark);
            border-color: rgba(0, 168, 142, 0.2);
        }
        
        .mission-box:hover::before, .vision-box:hover::before {
            opacity: 1;
        }
        
        .mission-box h2, .vision-box h2 {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .mission-box p, .vision-box p {
            font-size: 18px;
            color: var(--medium-text);
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }
        
        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            margin: 80px 0;
            width: 100%;
            position: relative;
        }
        
        .divider::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--primary);
        }
        
        .drivers-section h2 {
            font-size: 36px;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 60px;
            font-weight: 700;
            position: relative;
        }
        
        .drivers-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }
        
        .drivers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .driver-card {
            background: var(--white);
            padding: 40px 35px;
            border-radius: 20px;
            box-shadow: 0 15px 35px var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0, 168, 142, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .driver-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 168, 142, 0.05) 0%, rgba(0, 131, 114, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .driver-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 50px var(--shadow-dark);
            border-color: rgba(0, 168, 142, 0.2);
        }
        
        .driver-card:hover::before {
            opacity: 1;
        }
        
        .driver-card h3 {
            font-size: 24px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .driver-card p {
            font-size: 16px;
            color: var(--medium-text);
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }
        
/* ===== Combined Contact + Location Section ===== */
.contact-location-section {
    padding: 120px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.contact-location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 142, 0.03) 0%, rgba(0, 131, 114, 0.03) 100%);
}

/* Grid Layout */
.contact-location__grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ===== LEFT: Contact Form ===== */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 168, 142, 0.1);
}

.contact-form-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-dark);
    border-color: rgba(0, 168, 142, 0.2);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--light-gray);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 168, 142, 0.15);
    background: white;
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px var(--shadow-dark);
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn i {
    position: relative;
    z-index: 2;
}

.whatsapp-option {
    margin-top: 25px;
    text-align: center;
    padding: 18px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-option p {
    color: var(--medium-text);
    margin-bottom: 12px;
    font-size: 15px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #128C7E;
    transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover::before {
    left: 0;
}

.whatsapp-btn i {
    position: relative;
    z-index: 2;
}

/* ===== RIGHT: Location + Image ===== */
.location-media-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.location-card {
    background: var(--white);
    border: 1px solid rgba(0, 168, 142, 0.1);
    border-radius: 20px;
    box-shadow: 0 14px 34px var(--shadow-light);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px var(--shadow-dark);
    border-color: rgba(0, 168, 142, 0.2);
}

.location-card__title {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--dark-text);
    font-weight: 700;
}

.location-card__subtitle {
    color: var(--medium-text);
    margin-bottom: 20px;
    font-size: 14px;
}

.location-card__row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 168, 142, 0.15);
}

.location-card__row:last-of-type {
    border-bottom: none;
}

.location-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 168, 142, 0.1) 100%);
    color: var(--primary-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.location-card__row:hover .location-card__icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.location-card__heading {
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--dark-text);
    font-weight: 700;
}

.location-card__text {
    color: var(--medium-text);
    line-height: 1.6;
    font-size: 14px;
}

.location-card__actions {
    margin-top: 20px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
}

.location-btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

.location-btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--shadow-dark);
}

/* Map Embed */
.map-embed {
    background: var(--white);
    border: 1px solid rgba(0, 168, 142, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 34px var(--shadow-light);
    transition: all 0.4s ease;
}

.map-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px var(--shadow-dark);
}

.map-embed iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}



/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .contact-location__grid {
        grid-template-columns: 1fr;
    }
    
    .location-media-wrapper {
        position: relative;
        top: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-location-section {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .location-media-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 25px;
    }
    
    .map-embed iframe {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .submit-btn {
        padding: 14px 30px;
    }
}  


        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
            color: white;
            padding: 80px 0 30px;
            border-radius: 25px 25px 0 0;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .footer-logo:hover {
            transform: translateY(-3px);
            filter: brightness(110%);
        }
        
        .footer-links h4 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-links li i {
            color: var(--primary);
            font-size: 14px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
            position: relative;
            z-index: 2;
        }
        
        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Responsive Styles */
        @media (max-width: 1100px) {
            .nav-links a {
                padding: 10px 18px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 992px) {
            header {
                margin: 0;
                width: 100%;
                border-radius: 0;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 20px;
                right: 20px;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                border-radius: 20px;
                box-shadow: 0 15px 40px rgba(0,0,0,0.15);
                gap: 10px;
                margin-top: 10px;
                border: 1px solid rgba(0, 168, 142, 0.1);
            }
            
            .nav-links.active {
                display: flex;
                animation: slideDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .nav-links li {
                margin: 0;
                width: 100%;
            }
            
            .nav-links a {
                padding: 15px 20px;
                text-align: center;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero h1, .about-header h1 {
                font-size: 36px;
            }
            
            .hero p, .about-header p {
                font-size: 18px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .keywords-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .hero, .about-section, .contact-section {
                padding: 80px 0;
            }
            
            .section-title h2, .drivers-section h2 {
                font-size: 28px;
            }
            
            .mission, .services, .keywords, .stats, .cta-section {
                padding: 70px 0;
            }
            
            .stat-item h3 {
                font-size: 36px;
            }
            
            .contact-form, .contact-info, .mission-box, .vision-box, .driver-card {
                padding: 25px;
            }
            
            .stats {
                width: calc(100% - 20px);
                border-radius: 15px;
            }
            
            .about-header h1 {
                font-size: 32px;
            }
            
            .mission-box h2, .vision-box h2 {
                font-size: 26px;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            
            .logo i {
                font-size: 26px;
            }
            
            .drivers-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .cta-button {
                padding: 14px 35px;
                font-size: 16px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
        }