.elementor-2985 .elementor-element.elementor-element-90ea613{--display:flex;}.elementor-2985 .elementor-element.elementor-element-d4ba599{width:100%;max-width:100%;top:-1px;}body:not(.rtl) .elementor-2985 .elementor-element.elementor-element-d4ba599{left:-5px;}body.rtl .elementor-2985 .elementor-element.elementor-element-d4ba599{right:-5px;}.elementor-2985 .elementor-element.elementor-element-dbcdde0{width:100%;max-width:100%;top:-1px;}body:not(.rtl) .elementor-2985 .elementor-element.elementor-element-dbcdde0{left:-5px;}body.rtl .elementor-2985 .elementor-element.elementor-element-dbcdde0{right:-5px;}/* Start custom CSS for html, class: .elementor-element-d4ba599 *//* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    background-color: #FFFFFF;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo-text, .nav-links a, .cta-button, .counsellor-card h3 {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A3C6E;
    margin-bottom: 2rem;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== GOOGLE FONTS IMPORT ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700&display=swap');

/* ==================== RESET AND BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

/* ==================== HEADER BASE ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #1A3C6E;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

/* ==================== HEADER INNER ==================== */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ==================== BRAND IDENTITY ==================== */
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    line-height: 1;
}

/* ==================== HAMBURGER BUTTON ==================== */
.menu-toggle-input {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
}

.hamburger-label span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* ==================== MAIN NAV DESKTOP ==================== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

/* Hide all sub-checkboxes on desktop */
input#services-toggle,
input#destinations-toggle,
input#company-toggle {
    display: none;
}

/* Nav Link Base */
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: #FFFFFF;
    padding: 8px 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
    white-space: nowrap;
    user-select: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Active state */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Dropdown label specific */
.dropdown-label {
    cursor: pointer;
}

/* Chevron styling */
.chevron {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease;
    margin-left: 2px;
    line-height: 1;
    transform: rotate(90deg);
}

/* ==================== DROPDOWN MENUS DESKTOP ==================== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    min-width: 230px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Desktop hover to show dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Chevron rotation on hover */
.has-dropdown:hover .chevron {
    transform: rotate(-90deg);
}

/* Dropdown section label */
.dropdown-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 10px 20px 4px;
    pointer-events: none;
    display: block;
}

/* Dropdown menu items */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: #EEF2FF;
    color: #2563EB;
    border-left-color: #F97316;
    padding-left: 23px;
}

/* ==================== CTA BUTTON ==================== */
.cta-button {
    background: #F97316;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.25s;
    display: inline-block;
}

.cta-button:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.nav-cta {
    margin-left: 10px;
}

/* ==================== TABLET AND MOBILE BREAKPOINT (max-width 1023px) ==================== */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 20px;
        height: 64px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-tagline {
        font-size: 9.5px;
    }

    /* Show hamburger on tablet/mobile */
    .hamburger-label {
        display: flex;
    }

    /* Mobile nav panel - hidden by default */
    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #1A3C6E;
        z-index: 9998;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    /* Open menu when checkbox is checked */
    input#main-menu-toggle:checked ~ .main-nav {
        max-height: 100vh;
    }

    /* Mobile nav list styles */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 8px 0 16px 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 24px;
        width: 100%;
        justify-content: space-between;
        border-radius: 0;
    }

    /* CTA button in mobile menu */
    .nav-cta {
        margin-left: 0;
        padding: 16px 20px;
    }

    .cta-button {
        display: block;
        text-align: center;
        border-radius: 25px;
        padding: 13px 20px;
        font-size: 15px;
    }

    /* ==================== MOBILE DROPDOWN MENUS CRITICAL ==================== */
    /* Reset desktop dropdown positioning for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.25);
        min-width: unset;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Override desktop hover behavior for mobile - prevent hover from opening dropdowns */
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 0;
        transform: none;
    }

    /* Open Services dropdown when its checkbox is checked */
    input#services-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Destinations dropdown when its checkbox is checked */
    input#destinations-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Company dropdown when its checkbox is checked */
    input#company-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Rotate chevron when sub-dropdown is open */
    input#services-toggle:checked ~ .dropdown-label .chevron,
    input#destinations-toggle:checked ~ .dropdown-label .chevron,
    input#company-toggle:checked ~ .dropdown-label .chevron {
        transform: rotate(-90deg);
    }

    /* Mobile dropdown item styles */
    .dropdown-menu li a {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-left: none;
        display: block;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #FFFFFF;
        padding-left: 44px;
        border-left: none;
    }

    /* Mobile dropdown section label */
    .dropdown-section-label {
        color: rgba(255, 255, 255, 0.45);
        padding: 10px 24px 4px 40px;
        font-size: 9px;
    }
}

/* ==================== SMALL MOBILE (max-width 480px) ==================== */
@media (max-width: 480px) {
    .brand-name {
        font-size: 15px;
    }

    .brand-tagline {
        display: none;
    }

    .header-inner {
        height: 60px;
    }

    .main-nav {
        top: 60px;
    }
}

/* ==================== ACTIVE STATES ==================== */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Accessibility focus styles */
.nav-link:focus-visible,
.cta-button:focus-visible,
.brand:focus-visible,
.hamburger-label:focus-visible {
    outline: 2px solid #F97316;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==================== SECTION 2: PAGE HERO ==================== */
.counselling-hero {
    background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #F97316;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #1A3C6E;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-white {
    background: white;
    color: #1A3C6E;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== SECTION 3: WHAT IS OUR COUNSELLING ==================== */
/* ========================
   WHAT COUNSELLING COVERS SECTION - IMPROVED
   ======================== */

.what-counselling {
    background: linear-gradient(135deg, #F8F9FA 0%, #EEF2FF 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background element */
.what-counselling::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.what-counselling::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.counselling-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Side Styles */
.counselling-left h2 {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.counselling-left h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #2563EB);
    border-radius: 2px;
}

.counselling-left > p {
    color: #4b5563;
    margin: 25px 0 30px 0;
    line-height: 1.7;
    font-size: 16px;
}

/* Features Grid - Enhanced */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: white;
    padding: 15px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #2563EB;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #2563EB 0%, #1e3c72 100%);
    color: white;
    transform: scale(1.05);
}

.feature-text h4 {
    color: #1e3c72;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-text p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

/* Right Side - Expert Placeholder Enhanced */
.expert-placeholder {
    background: linear-gradient(135deg, #1e3c72 0%, #0f2b4f 50%, #1e3c72 100%);
    border-radius: 24px;
    height: auto;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 50px 30px;
    position: sticky;
    top: 100px;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
}

.expert-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.25);
    border-color: rgba(249, 115, 22, 0.5);
}

.expert-placeholder i {
    font-size: 70px;
    margin-bottom: 25px;
    color: #F97316;
    background: rgba(249, 115, 22, 0.15);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.expert-placeholder:hover i {
    transform: scale(1.05);
    background: rgba(249, 115, 22, 0.25);
}

.expert-placeholder h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.expert-placeholder p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Stats inside expert placeholder */
.expert-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.expert-stat {
    text-align: center;
}

.expert-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #F97316;
}

.expert-stat-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

/* Badge */
.expert-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .counselling-layout {
        gap: 40px;
    }
    
    .counselling-left h2 {
        font-size: 32px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .expert-placeholder {
        padding: 40px 25px;
        min-height: 420px;
        position: static;
    }
    
    .expert-placeholder i {
        font-size: 55px;
        width: 100px;
        height: 100px;
    }
    
    .expert-placeholder h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .what-counselling {
        padding: 50px 0;
    }
    
    .counselling-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .counselling-left h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .counselling-left h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .counselling-left > p {
        text-align: center;
        font-size: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 15px;
    }
    
    .feature-text p {
        font-size: 12px;
    }
    
    .expert-placeholder {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .expert-placeholder i {
        font-size: 50px;
        width: 90px;
        height: 90px;
    }
    
    .expert-placeholder h3 {
        font-size: 22px;
    }
    
    .expert-placeholder p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .expert-stats {
        gap: 15px;
    }
    
    .expert-stat-number {
        font-size: 18px;
    }
    
    .expert-stat-label {
        font-size: 10px;
    }
}

/* ==================== SECTION 4: COUNSELLING PROCESS ==================== */
/* Grid Layout CSS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    border-color: #F97316;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 15px;
}

.process-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SECTION 5: COUNSELLING MODES ==================== */
.counselling-modes {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mode-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mode-icon {
    width: 64px;
    height: 64px;
    background: #EEF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2563EB;
    font-size: 1.8rem;
}

.mode-card h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 1rem;
}

.mode-card p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-now-btn {
    display: inline-block;
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== SECTION 6: MEET OUR COUNSELLORS ==================== */
.meet-counsellors {
    background-color: #F8F9FA;
    padding: 5rem 0;
}

.counsellors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.counsellor-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.counsellor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.counsellor-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.counsellor-info {
    padding: 1.5rem;
    text-align: center;
}

.counsellor-info h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.designation {
    color: #2563EB;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-badge {
    display: inline-block;
    background: #EEF2FF;
    color: #1A3C6E;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}

.specialization {
    color: #6B7280;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.book-session-btn {
    display: inline-block;
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-session-btn:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== SECTION 7: SUCCESS STORIES COUNTER BAND ==================== */
.counter-band {
    background-color: #2563EB;
    padding: 4rem 0;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.counter-col {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.counter-col:last-child {
    border-right: none;
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==================== SECTION 8: COUNSELLING FAQ ==================== */
.counselling-faq {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 0;
}

/* Hide the default checkbox */
.faq-item input {
    display: none;
}

/* Question Styling - Clickable */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #1e3c72;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0;
    user-select: none;
}

.faq-question:hover {
    color: #F97316;
}

/* Plus/Minus Icon Styling */
.faq-question i {
    color: #F97316;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.1);
}

/* Rotate icon when checked (plus to minus effect) */
.faq-item input:checked + .faq-question i {
    transform: rotate(45deg);
    background: #F97316;
    color: white;
}

/* Answer Styling - Hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
    line-height: 1.6;
    padding: 0 0 0 0;
    font-size: 14px;
}

/* Show answer when checkbox is checked */
.faq-item input:checked + .faq-question + .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

/* Active state styling */
.faq-item input:checked + .faq-question {
    color: #F97316;
}

/* ==================== SECTION 9: BOOK SESSION FORM ==================== */
.book-session-form {
    background-color: #EEF2FF;
    padding: 5rem 0;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-left h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.form-left p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.session-benefits {
    list-style: none;
}

.session-benefits li {
    color: #374151;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.session-benefits li i {
    color: #16A34A;
}

.session-form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.session-form-card input,
.session-form-card select,
.session-form-card textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.session-form-card input:focus,
.session-form-card select:focus,
.session-form-card textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

.submit-booking {
    width: 100%;
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-booking:hover {
    background-color: #1A3C6E;
    transform: translateY(-2px);
}

/* ==================== SECTION 10: CTA BANNER ==================== */
.cta-banner-counselling {
    background-color: #1A3C6E;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner-counselling h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-banner-counselling p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== SECTION 11: FOOTER ==================== */
.footer {
    background-color: #0F172A;
    padding: 3rem 2rem 1rem;
    color: #6B7280;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p, .footer-col a {
    color: #6B7280;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F97316;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.75rem;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #16A34A;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c3a;
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 1.3rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .counsellors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1A3C6E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-content {
        position: static;
        background-color: #1A3C6E;
        box-shadow: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: #EEF2FF;
    }
    
    .counselling-layout, .form-layout {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-line {
        width: 2px;
        height: 30px;
    }
    
    .modes-grid, .counsellors-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .counter-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 1rem;
    }
    
    .counter-col:last-child {
        border-bottom: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline-white {
        text-align: center;
    }
    
    .trust-badges {
        gap: 0.5rem;
    }
    
    .badge-white {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .whatsapp-float {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dbcdde0 *//* ==================== RESET & GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    background-color: #FFFFFF;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo-text, .nav-links a, .cta-button, .counsellor-card h3 {
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A3C6E;
    margin-bottom: 2rem;
    text-align: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== GOOGLE FONTS IMPORT ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700&display=swap');

/* ==================== RESET AND BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

/* ==================== HEADER BASE ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: #1A3C6E;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

/* ==================== HEADER INNER ==================== */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* ==================== BRAND IDENTITY ==================== */
.brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    line-height: 1;
}

/* ==================== HAMBURGER BUTTON ==================== */
.menu-toggle-input {
    display: none;
}

.hamburger-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    z-index: 10001;
}

.hamburger-label span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hamburger animation when menu is open */
input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
    transform: rotate(45deg) translateY(7.5px);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

input#main-menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* ==================== MAIN NAV DESKTOP ==================== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

/* Hide all sub-checkboxes on desktop */
input#services-toggle,
input#destinations-toggle,
input#company-toggle {
    display: none;
}

/* Nav Link Base */
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    color: #FFFFFF;
    padding: 8px 13px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
    white-space: nowrap;
    user-select: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Active state */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Dropdown label specific */
.dropdown-label {
    cursor: pointer;
}

/* Chevron styling */
.chevron {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease;
    margin-left: 2px;
    line-height: 1;
    transform: rotate(90deg);
}

/* ==================== DROPDOWN MENUS DESKTOP ==================== */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    min-width: 230px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Desktop hover to show dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Chevron rotation on hover */
.has-dropdown:hover .chevron {
    transform: rotate(-90deg);
}

/* Dropdown section label */
.dropdown-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #6B7280;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 10px 20px 4px;
    pointer-events: none;
    display: block;
}

/* Dropdown menu items */
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: #EEF2FF;
    color: #2563EB;
    border-left-color: #F97316;
    padding-left: 23px;
}

/* ==================== CTA BUTTON ==================== */
.cta-button {
    background: #F97316;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 25px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    transition: all 0.25s;
    display: inline-block;
}

.cta-button:hover {
    background: #ea6c0a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.nav-cta {
    margin-left: 10px;
}

/* ==================== TABLET AND MOBILE BREAKPOINT (max-width 1023px) ==================== */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 20px;
        height: 64px;
    }

    .brand-name {
        font-size: 17px;
    }

    .brand-tagline {
        font-size: 9.5px;
    }

    /* Show hamburger on tablet/mobile */
    .hamburger-label {
        display: flex;
    }

    /* Mobile nav panel - hidden by default */
    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #1A3C6E;
        z-index: 9998;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    /* Open menu when checkbox is checked */
    input#main-menu-toggle:checked ~ .main-nav {
        max-height: 100vh;
    }

    /* Mobile nav list styles */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 8px 0 16px 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        font-size: 15px;
        padding: 14px 24px;
        width: 100%;
        justify-content: space-between;
        border-radius: 0;
    }

    /* CTA button in mobile menu */
    .nav-cta {
        margin-left: 0;
        padding: 16px 20px;
    }

    .cta-button {
        display: block;
        text-align: center;
        border-radius: 25px;
        padding: 13px 20px;
        font-size: 15px;
    }

    /* ==================== MOBILE DROPDOWN MENUS CRITICAL ==================== */
    /* Reset desktop dropdown positioning for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.25);
        min-width: unset;
        width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    /* Override desktop hover behavior for mobile - prevent hover from opening dropdowns */
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 0;
        transform: none;
    }

    /* Open Services dropdown when its checkbox is checked */
    input#services-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Destinations dropdown when its checkbox is checked */
    input#destinations-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Open Company dropdown when its checkbox is checked */
    input#company-toggle:checked ~ .dropdown-menu {
        max-height: 500px;
    }

    /* Rotate chevron when sub-dropdown is open */
    input#services-toggle:checked ~ .dropdown-label .chevron,
    input#destinations-toggle:checked ~ .dropdown-label .chevron,
    input#company-toggle:checked ~ .dropdown-label .chevron {
        transform: rotate(-90deg);
    }

    /* Mobile dropdown item styles */
    .dropdown-menu li a {
        padding: 12px 24px 12px 40px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        border-left: none;
        display: block;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #FFFFFF;
        padding-left: 44px;
        border-left: none;
    }

    /* Mobile dropdown section label */
    .dropdown-section-label {
        color: rgba(255, 255, 255, 0.45);
        padding: 10px 24px 4px 40px;
        font-size: 9px;
    }
}

/* ==================== SMALL MOBILE (max-width 480px) ==================== */
@media (max-width: 480px) {
    .brand-name {
        font-size: 15px;
    }

    .brand-tagline {
        display: none;
    }

    .header-inner {
        height: 60px;
    }

    .main-nav {
        top: 60px;
    }
}

/* ==================== ACTIVE STATES ==================== */
.nav-link.active {
    color: #F97316;
    font-weight: 600;
}

/* Accessibility focus styles */
.nav-link:focus-visible,
.cta-button:focus-visible,
.brand:focus-visible,
.hamburger-label:focus-visible {
    outline: 2px solid #F97316;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==================== SECTION 2: PAGE HERO ==================== */
.counselling-hero {
    background: linear-gradient(135deg, #1A3C6E 0%, #2563EB 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #F97316;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #1A3C6E;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-white {
    background: white;
    color: #1A3C6E;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== SECTION 3: WHAT IS OUR COUNSELLING ==================== */

.what-counselling {
    padding: 80px 0;
    background: white;
}

.counselling-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counselling-left {
    flex: 2;
}

.counselling-right {
    flex: 1;
}

.counselling-left h2 {
    font-size: 36px;
    color: #1e3c72;
    margin-bottom: 20px;
}

.counselling-left > p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Right Side - Expert Card (FIXED WIDTH & HEIGHT) */
.expert-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: sticky;
    top: 100px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.expert-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #2a5298;
}

.expert-placeholder i {
    font-size: 60px;
    color: #2a5298;
    margin-bottom: 20px;
}

.expert-placeholder h3 {
    font-size: 24px;
    color: #1e3c72;
    margin-bottom: 10px;
}

.expert-placeholder p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .counselling-layout {
        flex-direction: column;
    }
    
    .counselling-left > p {
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-placeholder {
        position: static;
        margin-top: 20px;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .what-counselling {
        padding: 50px 0;
    }
    
    .counselling-left h2 {
        font-size: 28px;
    }
    
    .feature-item {
        padding: 8px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .expert-placeholder {
        padding: 30px 20px;
    }
    
    .expert-placeholder i {
        font-size: 50px;
    }
    
    .expert-placeholder h3 {
        font-size: 22px;
    }
}

/* ==================== SECTION 4: COUNSELLING PROCESS ==================== */
.counselling-process {
    background-color: #EEF2FF;
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.step-circle {
    width: 48px;
    height: 48px;
    background: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.step-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.step-desc {
    font-size: 0.75rem;
    color: #6B7280;
}

.step-line {
    width: 50px;
    height: 2px;
    background: #E5E7EB;
    border-top: 2px dashed #E5E7EB;
}

/* ==================== SECTION 5: COUNSELLING MODES ==================== */
.counselling-modes {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mode-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.mode-icon {
    width: 64px;
    height: 64px;
    background: #EEF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2563EB;
    font-size: 1.8rem;
}

.mode-card h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 1rem;
}

.mode-card p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-now-btn {
    display: inline-block;
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== SECTION 6: MEET OUR COUNSELLORS ==================== */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .meet-counsellors {
            padding: 80px 0;
        }

        .meet-counsellors h2 {
            text-align: center;
            font-size: 38px;
            color: #1a2a4f;
            margin-bottom: 15px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 16px;
            color: #666;
            max-width: 750px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        /* Featured Card */
        .featured-card {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 60px;
        }

        .featured-image {
            width: 300px;
            min-width: 300px;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-content {
            padding: 30px;
        }

        .featured-content h3 {
            font-size: 26px;
            color: #1a2a4f;
            margin-bottom: 5px;
        }

        .designation {
            color: #e63946;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .badge {
            background: #eef2f7;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #1a2a4f;
        }

        .bio {
            color: #444;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .stat {
            background: #f0f2f5;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 14px;
        }

        .stat span {
            font-weight: bold;
            color: #e63946;
            font-size: 18px;
        }

        .linkedin-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #0077b5;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .linkedin-btn:hover {
            background: #005e8c;
        }

        /* Team Grid */
        .team-title {
            text-align: center;
            font-size: 30px;
            color: #1a2a4f;
            margin: 40px 0 30px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .team-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .team-image {
            height: 280px;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
        }

        .team-info h4 {
            font-size: 20px;
            color: #1a2a4f;
            margin-bottom: 5px;
        }

        .team-role {
            color: #e63946;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .team-specialty {
            background: #eef2f7;
            display: inline-block;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .team-desc {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .book-btn {
            display: inline-block;
            color: #e63946;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border: 2px solid #e63946;
            padding: 6px 18px;
            border-radius: 25px;
            transition: 0.3s;
        }

        .book-btn:hover {
            background: #e63946;
            color: white;
        }

        /* Distribution Grid */
        .dist-title {
            text-align: center;
            font-size: 30px;
            color: #1a2a4f;
            margin-bottom: 30px;
        }

        .dist-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .dist-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border-left: 4px solid #e63946;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .dist-item h5 {
            font-size: 18px;
            color: #1a2a4f;
            margin-bottom: 8px;
        }

        .dist-item p {
            color: #666;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 800px) {
            .featured-card {
                flex-direction: column;
            }
            
            .featured-image {
                width: 100%;
                height: 300px;
            }
            
            .meet-counsellors h2 {
                font-size: 30px;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
        }

/* ==================== SECTION 7: SUCCESS STORIES COUNTER BAND ==================== */
.counter-band {
    background-color: #2563EB;
    padding: 4rem 0;
}

.counter-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.counter-col {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.counter-col:last-child {
    border-right: none;
}

.counter-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==================== SECTION 8: COUNSELLING FAQ ==================== */
.counselling-faq {
    background-color: #FFFFFF;
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}

.faq-item input {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #2563EB;
}

.faq-question i {
    color: #2563EB;
    transition: transform 0.3s ease;
}

.faq-item input:checked + .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #374151;
    line-height: 1.6;
    padding: 0;
}

.faq-item input:checked + .faq-question + .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

/* ==================== SECTION 9: BOOK SESSION FORM ==================== */
.book-session-form {
    background-color: #EEF2FF;
    padding: 5rem 0;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-left h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.form-left p {
    color: #374151;
    margin-bottom: 1.5rem;
}

.session-benefits {
    list-style: none;
}

.session-benefits li {
    color: #374151;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.session-benefits li i {
    color: #16A34A;
}

.session-form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.session-form-card input,
.session-form-card select,
.session-form-card textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.session-form-card input:focus,
.session-form-card select:focus,
.session-form-card textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

.submit-booking {
    width: 100%;
    background-color: #2563EB;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-booking:hover {
    background-color: #1A3C6E;
    transform: translateY(-2px);
}

/* ==================== SECTION 10: CTA BANNER ==================== */
.cta-banner-counselling {
    background-color: #1A3C6E;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner-counselling h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-banner-counselling p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    background-color: #F97316;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e05f0a;
    transform: translateY(-2px);
}

/* ==================== SECTION 11: FOOTER ==================== */
.footer {
    background-color: #0F172A;
    padding: 3rem 2rem 1rem;
    color: #6B7280;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p, .footer-col a {
    color: #6B7280;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #F97316;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    font-size: 0.75rem;
}

/* ==================== FLOATING WHATSAPP BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #16A34A;
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c3a;
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 1.3rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .counsellors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1A3C6E;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-content {
        position: static;
        background-color: #1A3C6E;
        box-shadow: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        color: #EEF2FF;
    }
    
    .counselling-layout, .form-layout {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-line {
        width: 2px;
        height: 30px;
    }
    
    .modes-grid, .counsellors-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .counter-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-bottom: 1rem;
    }
    
    .counter-col:last-child {
        border-bottom: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline-white {
        text-align: center;
    }
    
    .trust-badges {
        gap: 0.5rem;
    }
    
    .badge-white {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .whatsapp-float {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}/* End custom CSS */