/* ===== MODERN DESIGN SYSTEM WITH BRAND COLORS ===== */

:root {
    /* Brand Colors from Logo */
    --ecs-primary: #F59E0B;          /* Orange from logo */
    --ecs-primary-light: #FCD34D;    /* Light orange */
    --ecs-primary-dark: #D97706;     /* Dark orange */
    --ecs-secondary: #1E3A8A;        /* Blue from logo */
    --ecs-secondary-light: #3B82F6;  /* Light blue */
    --ecs-secondary-dark: #1E40AF;   /* Dark blue */
    
    /* Gradients */
    --ecs-gradient-primary: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --ecs-gradient-secondary: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --ecs-gradient-mixed: linear-gradient(135deg, #F59E0B 0%, #1E3A8A 100%);
    --ecs-gradient-light: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    
    /* Neutral Colors */
    --ecs-white: #FFFFFF;
    --ecs-gray-50: #F9FAFB;
    --ecs-gray-100: #F3F4F6;
    --ecs-gray-200: #E5E7EB;
    --ecs-gray-300: #D1D5DB;
    --ecs-gray-400: #9CA3AF;
    --ecs-gray-500: #6B7280;
    --ecs-gray-600: #4B5563;
    --ecs-gray-700: #374151;
    --ecs-gray-800: #1F2937;
    --ecs-gray-900: #111827;
    
    /* Semantic Colors */
    --ecs-success: #10B981;
    --ecs-warning: #F59E0B;
    --ecs-error: #EF4444;
    --ecs-info: #3B82F6;
    
    /* Shadows */
    --ecs-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --ecs-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --ecs-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --ecs-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --ecs-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --ecs-radius-sm: 6px;
    --ecs-radius-md: 12px;
    --ecs-radius-lg: 16px;
    --ecs-radius-xl: 24px;
    --ecs-radius-full: 9999px;
    
    /* Transitions */
    --ecs-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ecs-transition-fast: all 0.15s ease-in-out;
    --ecs-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --ecs-space-xs: 0.25rem;
    --ecs-space-sm: 0.5rem;
    --ecs-space-md: 1rem;
    --ecs-space-lg: 1.5rem;
    --ecs-space-xl: 2rem;
    --ecs-space-2xl: 3rem;
    --ecs-space-3xl: 4rem;
    
    /* Typography */
    --ecs-font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    --ecs-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ecs-font-family);
    line-height: 1.6;
    color: var(--ecs-gray-800);
    background-color: var(--ecs-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== ENHANCED PAGE LOADER ===== */
#ecs-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1E3A8A 0%, #F59E0B 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#ecs-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.ecs-loader-container {
    text-align: center;
    color: white;
}

.ecs-loader-logo {
    margin-bottom: 2rem;
}

.ecs-logo-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.ecs-graduation-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--ecs-primary);
    animation: bounce 2s infinite;
}

.ecs-book-base {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: var(--ecs-secondary);
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.ecs-stars {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.ecs-star {
    font-size: 1rem;
    color: var(--ecs-primary);
    animation: twinkle 1.5s infinite;
}

.ecs-star-1 { animation-delay: 0s; }
.ecs-star-2 { animation-delay: 0.5s; }
.ecs-star-3 { animation-delay: 1s; }

.ecs-brand-text .ecs-main-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ecs-primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.ecs-brand-text .ecs-sub-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ecs-secondary);
    letter-spacing: 1px;
}

.ecs-loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 2rem auto 1rem;
    overflow: hidden;
}

.ecs-loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--ecs-primary) 0%, var(--ecs-secondary) 100%);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}

.ecs-loading-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}
/* ===== COMPLETE ENHANCED HEADER STYLES - FIXED DROPDOWN ===== */

/* Base Header Styles */
.ecs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--ecs-transition);
}

/* Top Bar Styles Removed */

.ecs-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--ecs-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--ecs-transition);
    font-size: 0.85rem;
}

.ecs-social-link:hover {
    background: var(--ecs-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.ecs-auth-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ecs-gray-300);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--ecs-radius-full);
    transition: var(--ecs-transition);
    font-size: 0.85rem;
}

.ecs-auth-btn:hover {
    background: var(--ecs-primary);
    color: white;
    border-color: var(--ecs-primary);
    transform: translateY(-1px);
}

/* Enhanced Main Navigation */
.ecs-main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ecs-gray-200);
    padding: 1.5rem 0; /* Increased for bigger logo */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.ecs-main-nav.ecs-header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 1.25rem 0;
}

/* MUCH BIGGER LOGO STYLES */
.ecs-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--ecs-transition);
}

.ecs-brand:hover {
    transform: scale(1.05);
}

.ecs-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* BIGGER LOGO - INCREASED SIZE */
.ecs-logo img {
    max-height: 120px !important; /* Increased from 100px to 120px */
    width: auto;
    object-fit: contain;
    transition: var(--ecs-transition);
}

.ecs-logo-icon {
    position: relative;
    width: 80px; /* Increased */
    height: 80px; /* Increased */
}

.ecs-graduation-cap-nav,
.ecs-graduation-cap-footer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem; /* Increased */
    color: var(--ecs-primary);
    animation: float 3s ease-in-out infinite;
}

.ecs-book-base-nav,
.ecs-book-base-footer {
    position: absolute;
    bottom: 10px; /* Adjusted */
    left: 50%;
    transform: translateX(-50%);
    width: 65px; /* Increased */
    height: 20px; /* Increased */
    background: var(--ecs-secondary);
    border-radius: 12px; /* Increased */
}

.ecs-stars-nav,
.ecs-stars-footer {
    position: absolute;
    top: -12px; /* Adjusted */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px; /* Increased */
}

.ecs-stars-nav .ecs-star,
.ecs-stars-footer .ecs-star {
    font-size: 0.9rem; /* Increased */
    color: var(--ecs-primary);
    animation: twinkle 2s infinite;
}

.ecs-logo-text .ecs-brand-main {
    font-size: 1.7rem; /* Increased */
    font-weight: 800;
    color: var(--ecs-secondary);
    line-height: 1;
    letter-spacing: 1px;
}

.ecs-logo-text .ecs-brand-sub {
    font-size: 1rem; /* Increased */
    font-weight: 600;
    color: var(--ecs-primary);
    line-height: 1;
    letter-spacing: 1px;
}

/* Enhanced Mobile Toggle */
.ecs-navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--ecs-radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--ecs-transition);
}

.ecs-navbar-toggler:hover {
    background: rgba(245, 158, 11, 0.2);
    transform: scale(1.05);
}

.ecs-navbar-toggler span {
    display: block;
    height: 3px;
    width: 25px;
    background: var(--ecs-secondary);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--ecs-transition);
    transform-origin: center;
}

.ecs-navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ecs-navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.ecs-navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Navigation Links */
.navbar-nav {
    align-items: center;
    gap: 0.25rem;
}

.ecs-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ecs-gray-700) !important;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--ecs-radius-md);
    transition: var(--ecs-transition);
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.95rem;
}

.ecs-nav-link:hover {
    color: var(--ecs-primary) !important;
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.ecs-nav-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

.ecs-nav-link:hover i {
    opacity: 1;
}

/* FIXED DROPDOWN HOVER - MANAGEMENT MEGA MENU */

/* Custom 5-column layout */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* FIXED: Management Mega Dropdown with Proper Hover */
.ecs-mega-dropdown {
    position: static;
}

.ecs-compact-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 95vw;
    max-width: 1300px;
    background: white;
    border: 1px solid var(--ecs-gray-200);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    border-radius: var(--ecs-radius-xl);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    max-height: 75vh;
    overflow-y: auto;
    margin-top: 0.5rem;
}

/* FIXED: Proper Hover Zone - Include gap area */
.ecs-mega-dropdown:hover .ecs-compact-mega-menu,
.ecs-mega-dropdown.show .ecs-compact-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Bridge gap between trigger and dropdown */
.ecs-mega-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px; /* Bridge gap */
    background: transparent;
    z-index: 1049;
}

.ecs-compact-container {
    padding: 2.5rem;
}

/* Featured States Section */
.ecs-mega-featured {
    border-bottom: 1px solid var(--ecs-gray-200);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.ecs-compact-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ecs-secondary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ecs-gray-200);
    position: relative;
}

.ecs-compact-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--ecs-primary);
}

.ecs-compact-title i {
    color: var(--ecs-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.ecs-compact-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ecs-compact-link {
    padding: 0.5rem 0.75rem;
    color: var(--ecs-gray-700);
    text-decoration: none;
    border-radius: var(--ecs-radius-md);
    transition: var(--ecs-transition);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    position: relative;
}

.ecs-compact-link:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--ecs-primary);
    transform: translateX(5px);
    text-decoration: none;
    font-weight: 600;
    padding-left: 1.5rem;
}

.ecs-compact-link::before {
    content: '→';
    position: absolute;
    left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--ecs-transition);
    color: var(--ecs-primary);
}

.ecs-compact-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Tabbed States Section */
.ecs-all-states {
    margin-bottom: 2rem;
    background: var(--ecs-gradient-light);
    border-radius: var(--ecs-radius-lg);
    padding: 1.5rem;
}

.ecs-states-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.ecs-tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--ecs-gray-100);
    color: var(--ecs-gray-700);
    border: 2px solid transparent;
    border-radius: var(--ecs-radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ecs-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecs-tab-btn:hover {
    background: var(--ecs-primary-light);
    color: var(--ecs-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--ecs-shadow-md);
}

.ecs-tab-btn.active {
    background: var(--ecs-gradient-primary);
    color: white;
    border-color: var(--ecs-primary);
    transform: translateY(-2px);
    box-shadow: var(--ecs-shadow-lg);
}

.ecs-tab-content {
    min-height: 150px;
}

.ecs-tab-panel {
    display: none;
    animation: fadeInUp 0.4s ease-in-out;
}

.ecs-tab-panel.active {
    display: block;
}

.ecs-state-group {
    margin-bottom: 1.5rem;
    background: white;
    padding: 1rem;
    border-radius: var(--ecs-radius-md);
    box-shadow: var(--ecs-shadow-sm);
    transition: var(--ecs-transition);
}

.ecs-state-group:hover {
    box-shadow: var(--ecs-shadow-md);
    transform: translateY(-2px);
}

.ecs-state-group h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ecs-secondary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ecs-gray-200);
    position: relative;
}

.ecs-state-group h6::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--ecs-primary);
}

.ecs-state-group a {
    display: block;
    padding: 0.4rem 0.75rem;
    color: var(--ecs-gray-700);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--ecs-radius-sm);
    transition: var(--ecs-transition);
    margin-bottom: 0.25rem;
}

.ecs-state-group a:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--ecs-primary);
    text-decoration: none;
    font-weight: 600;
    transform: translateX(3px);
}

/* Footer Action */
.ecs-mega-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--ecs-gray-200);
    background: var(--ecs-gradient-light);
    margin: -2.5rem -2.5rem 0 -2.5rem;
    padding: 2rem 2.5rem;
    border-radius: 0 0 var(--ecs-radius-xl) var(--ecs-radius-xl);
}

.ecs-compact-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--ecs-gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--ecs-radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--ecs-transition);
    box-shadow: var(--ecs-shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ecs-compact-view-all:hover {
    background: var(--ecs-gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--ecs-shadow-2xl);
    text-decoration: none;
}

.ecs-compact-view-all i {
    font-size: 1.1rem;
    transition: var(--ecs-transition);
}

.ecs-compact-view-all:hover i {
    transform: translateX(3px);
}

/* FIXED: Standard Dropdown with Proper Hover */
.ecs-nav-dropdown {
    position: relative;
}

.ecs-nav-dropdown .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: var(--ecs-transition);
    font-size: 0.75rem;
}

.ecs-nav-dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.ecs-standard-dropdown {
    background: white;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    border-radius: var(--ecs-radius-xl);
    padding: 1.5rem 0;
    border: 1px solid var(--ecs-gray-200);
    margin-top: 0.5rem;
    min-width: 320px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* FIXED: Bridge gap for standard dropdown too */
.ecs-nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 1049;
}

.ecs-nav-dropdown.show .ecs-standard-dropdown,
.ecs-nav-dropdown:hover .ecs-standard-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.ecs-standard-dropdown .ecs-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: var(--ecs-gray-700);
    transition: var(--ecs-transition);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
}

.ecs-standard-dropdown .ecs-dropdown-item:hover,
.ecs-standard-dropdown .ecs-dropdown-item:focus {
    background: rgba(245, 158, 11, 0.1);
    color: var(--ecs-primary);
    transform: translateX(8px);
    font-weight: 600;
}

.ecs-standard-dropdown .ecs-dropdown-item i {
    color: var(--ecs-primary);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Enhanced CTA Button */
.ecs-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ecs-gradient-primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--ecs-radius-full);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: var(--ecs-transition);
    border: none;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.ecs-cta-btn:hover {
    background: var(--ecs-gradient-secondary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-decoration: none;
}

/* HOVER EFFECTS FOR DESKTOP */
@media (min-width: 992px) {
    .ecs-nav-dropdown:hover .ecs-standard-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .ecs-mega-dropdown:hover .ecs-compact-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}

/* Enhanced Mobile Responsive */
@media (max-width: 991.98px) {
    .ecs-contact-info {
        gap: 1rem;
    }
    
    .ecs-contact-item span {
        display: none;
    }
    
    .ecs-social-links {
        gap: 0.25rem;
    }
    
    .ecs-auth-btn span {
        display: none;
    }
    
    .ecs-logo img {
        max-height: 100px !important; /* Reduced for mobile */
        width: 250px;
    }
    
    .ecs-main-nav {
        padding: 0rem 0;
    }
    
    /* Remove bridge gaps on mobile */
    .ecs-mega-dropdown::after,
    .ecs-nav-dropdown::after {
        display: none;
    }
    
    .ecs-compact-mega-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: 100%;
        max-width: none;
        margin-top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        max-height: none;
        overflow-y: visible;
    }
    
    .ecs-compact-container {
        padding: 1.5rem;
    }
    
    .ecs-states-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .ecs-tab-btn {
        flex-shrink: 0;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .ecs-standard-dropdown {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        margin-top: 0;
        box-shadow: none;
        border-top: 1px solid var(--ecs-gray-200);
        border-bottom: 1px solid var(--ecs-gray-200);
    }
    
    .ecs-nav-link {
        padding: 1rem;
        justify-content: flex-start;
        margin: 0.25rem 0;
    }
    
    .ecs-cta-btn {
        margin: 1rem 0;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .ecs-top-bar {
        padding: 0.25rem 0;
        font-size: 0.8rem;
    }
    
    .ecs-logo img {
        max-height: 80px !important;
        width: 250px;
    }
    
    .ecs-main-nav {
        padding: 0rem 0;
    }
    
    .ecs-compact-container {
        padding: 1rem;
    }
    
    .ecs-compact-title {
        font-size: 0.9rem;
    }
    
    .ecs-compact-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .ecs-state-group h6 {
        font-size: 0.9rem;
    }
    
    .ecs-state-group a {
        font-size: 0.8rem;
    }
    
    .ecs-contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Enhanced Animations */
@keyframes float {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px); 
    }
    50% { 
        transform: translateX(-50%) translateY(-15px); 
    }
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(0.8);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body Padding for Bigger Header */
body {
    padding-top: 0px; /* Increased for bigger logo */
}

/* Custom Scrollbar */
.ecs-compact-mega-menu::-webkit-scrollbar {
    width: 8px;
}

.ecs-compact-mega-menu::-webkit-scrollbar-track {
    background: var(--ecs-gray-100);
    border-radius: 4px;
}

.ecs-compact-mega-menu::-webkit-scrollbar-thumb {
    background: var(--ecs-primary);
    border-radius: 4px;
}

.ecs-compact-mega-menu::-webkit-scrollbar-thumb:hover {
    background: var(--ecs-primary-dark);
}

/* Enhanced Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States for Accessibility */
.ecs-nav-link:focus,
.ecs-compact-link:focus,
.ecs-tab-btn:focus,
.ecs-cta-btn:focus {
    outline: 3px solid rgba(245, 158, 11, 0.5);
    outline-offset: 2px;
}

/* Mobile Dropdown Enhancements */
@media (max-width: 991px) {
    /* Improved dropdown styling */
    .ecs-nav-dropdown .dropdown-menu,
    .ecs-mega-dropdown .ecs-compact-mega-menu {
        position: static;
        width: 100%;
        max-height: none;
        box-shadow: none;
        overflow: hidden;
        padding: 0;
        display: none;
        background-color: #f8f9fa;
        border-radius: 8px;
        margin-top: 5px;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        border-left: 3px solid var(--ecs-primary);
    }
    
    .ecs-nav-dropdown.show .dropdown-menu,
    .ecs-mega-dropdown.show .ecs-compact-mega-menu {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .ecs-dropdown-item {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .ecs-dropdown-item:last-child {
        border-bottom: none;
    }
    
    .ecs-dropdown-item i {
        margin-right: 10px;
        color: var(--ecs-primary);
    }
    
    /* Improved tab navigation */
    .ecs-states-tabs {
        display: flex;
        flex-wrap: wrap;
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 15px;
    }
    
    .ecs-tab-btn {
        flex: 1 0 50%;
        padding: 12px 8px;
        text-align: center;
        background-color: #f1f5f9;
        border: none;
        font-weight: 500;
        color: #64748b;
        transition: all 0.3s ease;
    }
    
    .ecs-tab-btn.active {
        background-color: var(--ecs-primary);
        color: white;
    }
    
    /* Improved toggle button */
    .navbar-toggler {
        border: none;
        padding: 10px;
        outline: none !important;
    }
    
    .navbar-toggler span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--ecs-primary);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* ===== HERO SECTION ===== */
.ecs-hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
    background: var(--ecs-gradient-mixed);
    padding: 25px;
}

/* ===== PAGE HERO SECTION ===== */
.ecs-page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    overflow: hidden;
}

.ecs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.8);
    z-index: 1;
}

.ecs-page-hero .container {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.ecs-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.ecs-page-hero .breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--ecs-radius-full);
}

.ecs-page-hero .breadcrumb-item,
.ecs-page-hero .breadcrumb-item a {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.ecs-page-hero .breadcrumb-item.active {
    color: var(--ecs-primary);
}

.ecs-page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.ecs-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ecs-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.ecs-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ecs-float-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    animation: floatElement 8s ease-in-out infinite;
}

.ecs-element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.ecs-element-2 { top: 20%; right: 10%; animation-delay: 1s; }
.ecs-element-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.ecs-element-4 { bottom: 20%; right: 20%; animation-delay: 3s; }
.ecs-element-5 { top: 60%; left: 5%; animation-delay: 4s; }

.ecs-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.ecs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--ecs-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ecs-hero-badge i {
    color: var(--ecs-primary);
}

.ecs-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ecs-text-gradient {
    background: linear-gradient(45deg, #FCD34D, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecs-text-highlight {
    position: relative;
    color: var(--ecs-primary);
}

.ecs-text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ecs-primary);
    border-radius: 2px;
    opacity: 0.7;
}

.ecs-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ===== HERO SEARCH BOX ===== */
.ecs-hero-search {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--ecs-radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--ecs-shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ecs-search-wrapper {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
}

.ecs-search-field {
    position: relative;
}

.ecs-search-field i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ecs-gray-400);
    z-index: 2;
}

.ecs-search-input {
    width: 100%;
    height: 50px;
    border: 2px solid var(--ecs-gray-200);
    border-radius: var(--ecs-radius-md);
    padding: 0 1rem 0 3rem;
    font-size: 1rem;
    color: var(--ecs-gray-800);
    transition: var(--ecs-transition);
    background: white;
}

.ecs-search-input:focus {
    outline: none;
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.ecs-search-input::placeholder {
    color: var(--ecs-gray-400);
}

.ecs-select {
    height: 50px;
    border: 2px solid var(--ecs-gray-200);
    border-radius: var(--ecs-radius-md);
    padding: 0 1rem;
    font-size: 1rem;
    color: var(--ecs-gray-800);
    background: white;
    transition: var(--ecs-transition);
    min-width: 150px;
}

.ecs-select:focus {
    outline: none;
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.ecs-search-btn {
    height: 50px;
    background: var(--ecs-gradient-primary);
    color: white;
    border: none;
    border-radius: var(--ecs-radius-md);
    padding: 0 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ecs-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.ecs-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--ecs-shadow-lg);
}

.ecs-popular-searches {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--ecs-gray-600);
    font-size: 0.9rem;
}

.ecs-popular-searches span {
    font-weight: 600;
}

.ecs-popular-searches a {
    color: var(--ecs-secondary);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    background: rgba(30, 58, 138, 0.1);
    border-radius: var(--ecs-radius-full);
    transition: var(--ecs-transition);
    font-size: 0.85rem;
}

.ecs-popular-searches a:hover {
    background: var(--ecs-secondary);
    color: white;
}

.ecs-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.ecs-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--ecs-transition);
    font-size: 1rem;
}

.ecs-btn-primary:hover {
    background: white;
    color: var(--ecs-secondary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--ecs-transition);
    font-size: 1rem;
}

.ecs-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.ecs-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
}

.ecs-stat-item {
    text-align: center;
}

.ecs-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: var(--ecs-primary);
}

.ecs-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* ===== HERO VISUAL ===== */
.ecs-hero-visual {
    position: relative;
    z-index: 2;
}

.ecs-hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.ecs-hero-image {
    width: 100%;
    border-radius: var(--ecs-radius-xl);
    box-shadow: var(--ecs-shadow-2xl);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.ecs-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: var(--ecs-radius-lg);
    box-shadow: var(--ecs-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatCard 4s ease-in-out infinite;
    max-width: 200px;
}

.ecs-floating-card i {
    color: var(--ecs-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.ecs-card-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ecs-secondary);
    margin-bottom: 0.25rem;
}

.ecs-card-content p {
    font-size: 0.75rem;
    color: var(--ecs-gray-600);
    margin: 0;
}

.ecs-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.ecs-card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.ecs-card-3 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

/* ===== SECTION STYLES ===== */
.ecs-section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT PAGE STYLES ===== */
.ecs-about-section {
    padding: 5rem 0;
}

.ecs-about-image {
    position: relative;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-lg);
}

.ecs-about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--ecs-radius-lg);
    transition: var(--ecs-transition);
}

.ecs-about-image:hover img {
    transform: scale(1.05);
}

.ecs-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--ecs-gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: var(--ecs-radius-lg);
    box-shadow: var(--ecs-shadow-lg);
    text-align: center;
    min-width: 120px;
}

.ecs-experience-badge .ecs-years {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.ecs-experience-badge .ecs-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.ecs-about-content {
    margin-top: 2rem;
}

.ecs-about-content p {
    margin-bottom: 1.5rem;
    color: var(--ecs-gray-600);
}

.ecs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ecs-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--ecs-gradient-light);
    border-radius: var(--ecs-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ecs-primary);
    font-size: 1.5rem;
}

.ecs-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--ecs-gray-800);
}

.ecs-feature-content p {
    font-size: 0.9rem;
    color: var(--ecs-gray-600);
    margin-bottom: 0;
}

/* Mission & Vision Styles */
.ecs-mission-section {
    background-color: var(--ecs-gray-50);
}

.ecs-mission-card,
.ecs-vision-card {
    background: white;
    padding: 2rem;
    border-radius: var(--ecs-radius-lg);
    box-shadow: var(--ecs-shadow-md);
    height: 100%;
    transition: var(--ecs-transition);
    border: 1px solid var(--ecs-gray-200);
}

.ecs-mission-card:hover,
.ecs-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-mission-icon,
.ecs-vision-icon {
    width: 70px;
    height: 70px;
    background: var(--ecs-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ecs-mission-icon i,
.ecs-vision-icon i {
    font-size: 2rem;
    color: var(--ecs-primary);
}

.ecs-mission-card h3,
.ecs-vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ecs-gray-900);
}

.ecs-mission-card p,
.ecs-vision-card p {
    color: var(--ecs-gray-600);
    margin-bottom: 1.5rem;
}

.ecs-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecs-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--ecs-gray-700);
}

.ecs-check-list li i {
    color: var(--ecs-primary);
    margin-top: 0.25rem;
}

/* Team Section Styles */
.ecs-team-section {
    padding: 5rem 0;
}

.ecs-team-card {
    background: white;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    border: 1px solid var(--ecs-gray-200);
}

.ecs-team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-team-image {
    position: relative;
    overflow: hidden;
}

.ecs-team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--ecs-transition);
}

.ecs-team-card:hover .ecs-team-image img {
    transform: scale(1.1);
}

.ecs-team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--ecs-transition);
}

.ecs-team-card:hover .ecs-team-social {
    bottom: 0;
}

.ecs-team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ecs-gradient-light);
    color: var(--ecs-primary);
    border-radius: 50%;
    transition: var(--ecs-transition);
}

.ecs-team-social a:hover {
    background: var(--ecs-gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.ecs-team-info {
    padding: 1.5rem;
    text-align: center;
}

.ecs-team-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--ecs-gray-900);
}

.ecs-team-info p {
    color: var(--ecs-primary);
    font-weight: 500;
    margin-bottom: 0;
}

/* Testimonials Section Styles */
.ecs-testimonials-section {
    background-color: var(--ecs-gray-50);
    padding: 5rem 0;
}

.ecs-testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--ecs-radius-lg);
    box-shadow: var(--ecs-shadow-md);
    height: 100%;
    transition: var(--ecs-transition);
    border: 1px solid var(--ecs-gray-200);
}

.ecs-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-testimonial-rating {
    margin-bottom: 1rem;
    color: var(--ecs-primary);
}

.ecs-testimonial-text {
    font-size: 1rem;
    color: var(--ecs-gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ecs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ecs-testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ecs-testimonial-author h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--ecs-gray-900);
}

.ecs-testimonial-author p {
    font-size: 0.85rem;
    color: var(--ecs-gray-600);
    margin-bottom: 0;
}

/* CTA Section Styles */
.ecs-cta-section {
    padding: 3rem 0;
}

.ecs-cta-wrapper {
    background: var(--ecs-gradient-mixed);
    padding: 3rem;
    border-radius: var(--ecs-radius-xl);
    color: white;
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-cta-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ecs-cta-wrapper p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* ===== SERVICES PAGE STYLES ===== */
.ecs-services-section {
    padding: 5rem 0;
}

.ecs-service-card {
    background: white;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    height: 100%;
    border: 1px solid var(--ecs-gray-200);
}

.ecs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-service-image {
    position: relative;
    overflow: hidden;
}

.ecs-service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--ecs-transition);
}

.ecs-service-card:hover .ecs-service-image img {
    transform: scale(1.1);
}

.ecs-service-content {
    padding: 1.5rem;
}

.ecs-service-icon {
    width: 60px;
    height: 60px;
    background: var(--ecs-gradient-light);
    border-radius: var(--ecs-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--ecs-primary);
    font-size: 1.5rem;
}

.ecs-service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ecs-gray-900);
}

.ecs-service-content p {
    color: var(--ecs-gray-600);
    margin-bottom: 1.5rem;
}

.ecs-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ecs-primary);
    font-weight: 600;
    transition: var(--ecs-transition);
}

.ecs-service-link:hover {
    gap: 0.75rem;
    color: var(--ecs-secondary);
}

/* Service Details Styles */
.ecs-service-details {
    padding: 5rem 0;
}

.ecs-service-details-image {
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-lg);
    margin-bottom: 2rem;
}

.ecs-service-details-image img {
    width: 100%;
    height: auto;
    border-radius: var(--ecs-radius-lg);
}

.ecs-service-details-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ecs-gray-900);
}

.ecs-service-details-content p {
    margin-bottom: 1.5rem;
    color: var(--ecs-gray-600);
}

.ecs-service-benefits {
    margin: 2rem 0;
}

.ecs-service-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ecs-gray-900);
}

.ecs-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ecs-benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--ecs-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ecs-primary);
    font-size: 1.2rem;
}

.ecs-benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ecs-gray-800);
}

.ecs-benefit-content p {
    font-size: 0.95rem;
    color: var(--ecs-gray-600);
    margin-bottom: 0;
}

/* Process Section Styles */
.ecs-process-section {
    background-color: var(--ecs-gray-50);
    padding: 5rem 0;
}

.ecs-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.ecs-process-step:last-child {
    margin-bottom: 0;
}

.ecs-process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 25px;
    width: 2px;
    height: calc(100% + 3rem);
    background: var(--ecs-gray-200);
    z-index: 1;
}

.ecs-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--ecs-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 2;
}

.ecs-step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--ecs-gray-900);
}

.ecs-step-content p {
    color: var(--ecs-gray-600);
    margin-bottom: 0;
}

/* FAQ Section Styles */
.ecs-faq-section {
    padding: 5rem 0;
}

.ecs-accordion-item {
    background: white;
    border-radius: var(--ecs-radius-md);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--ecs-gray-200);
}

.ecs-accordion-header {
    padding: 1.25rem;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--ecs-transition);
}

.ecs-accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--ecs-gray-800);
}

.ecs-accordion-header i {
    color: var(--ecs-primary);
    transition: var(--ecs-transition);
}

.ecs-accordion-header.active {
    background: var(--ecs-gradient-light);
}

.ecs-accordion-header.active h3 {
    color: var(--ecs-primary);
}

.ecs-accordion-header.active i {
    transform: rotate(180deg);
}

.ecs-accordion-body {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.ecs-accordion-body.active {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.ecs-accordion-body p {
    color: var(--ecs-gray-600);
    margin-bottom: 0;
}

/* Pricing Section Styles */
.ecs-pricing-section {
    padding: 5rem 0;
}

.ecs-pricing-card {
    background: white;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    height: 100%;
    border: 1px solid var(--ecs-gray-200);
}

.ecs-pricing-card.featured {
    border: 2px solid var(--ecs-primary);
    transform: translateY(-10px);
}

.ecs-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-xl);
}

.ecs-pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--ecs-gray-200);
}

.ecs-pricing-badge {
    display: inline-block;
    background: var(--ecs-gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ecs-pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ecs-gray-900);
}

.ecs-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ecs-primary);
    margin-bottom: 0.5rem;
}

.ecs-pricing-duration {
    font-size: 0.9rem;
    color: var(--ecs-gray-600);
}

.ecs-pricing-features {
    padding: 2rem;
}

.ecs-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ecs-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--ecs-gray-700);
}

.ecs-pricing-features li i {
    color: var(--ecs-primary);
}

.ecs-pricing-features li.disabled {
    color: var(--ecs-gray-400);
}

.ecs-pricing-features li.disabled i {
    color: var(--ecs-gray-400);
}

.ecs-pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* ===== CONTACT PAGE STYLES ===== */
/* Using BEM methodology for better organization and maintainability */

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact__section {
    margin-bottom: 4rem;
}

/* Contact Info Cards */
.contact-card {
    background: white;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    height: 100%;
    border: 1px solid var(--ecs-gray-200);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-xl);
}

.contact-card:hover .contact-card__icon {
    transform: scale(1.1);
    background: var(--ecs-gradient-primary);
    color: white;
}

.contact-card__icon {
    width: 80px;
    height: 80px;
    background: var(--ecs-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--ecs-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-card__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(var(--ecs-primary-rgb), 0.1);
    border-radius: 50%;
    z-index: -1;
    transform: scale(1.2);
    opacity: 0.5;
}

.contact-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ecs-gray-900);
}

.contact-card__text {
    color: var(--ecs-gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card__link {
    color: var(--ecs-primary);
    font-weight: 600;
    transition: var(--ecs-transition);
    display: inline-block;
    margin-top: 1rem;
}

.contact-card__link:hover {
    color: var(--ecs-secondary);
    text-decoration: none;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-lg);
    border: 1px solid var(--ecs-gray-200);
    height: 100%;
    padding: 26px;
}

.contact-form__header {
    background: var(--ecs-gradient-primary);
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-form__header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
}

.contact-form__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.contact-hours__content {
    padding: 2rem;
}

.contact-hours__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ecs-gray-200);
}

.contact-hours__item:last-child {
    border-bottom: none;
}

.contact-hours__day {
    font-weight: 600;
    color: var(--ecs-gray-800);
}

.contact-hours__time {
    color: var(--ecs-gray-700);
}

.contact-hours__time--closed {
    color: var(--ecs-danger);
}

.contact-hours__btn {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--ecs-gradient-primary);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    transition: var(--ecs-transition);
    text-decoration: none;
}

.contact-hours__btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--ecs-shadow-md);
    color: white;
    text-decoration: none;
}

/* Newsletter Section */
.contact-newsletter {
    padding: 4rem 0;
    background-color: var(--ecs-gray-50);
}

.contact-newsletter__wrapper {
    background: white;
    border-radius: var(--ecs-radius-lg);
    padding: 3rem;
    box-shadow: var(--ecs-shadow-md);
    border: 1px solid var(--ecs-gray-200);
}

.contact-newsletter__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ecs-gray-900);
}

.contact-newsletter__text {
    color: var(--ecs-gray-700);
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-newsletter__form {
    margin-top: 1rem;
}

.contact-newsletter__input-group {
    display: flex;
    gap: 0.5rem;
}

.contact-newsletter__input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--ecs-gray-300);
    border-radius: var(--ecs-radius-md);
    font-size: 1rem;
    color: var(--ecs-gray-800);
    transition: var(--ecs-transition);
}

.contact-newsletter__input:focus {
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(var(--ecs-primary-rgb), 0.1);
    outline: none;
}

.contact-newsletter__btn {
    background: var(--ecs-gradient-primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--ecs-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.contact-newsletter__btn:hover {
    box-shadow: var(--ecs-shadow-md);
    transform: translateY(-3px);
}

/* Accessibility Enhancements */
.contact-form__input:focus-visible,
.contact-newsletter__input:focus-visible,
.contact-form__submit:focus-visible,
.contact-newsletter__btn:focus-visible,
.contact-hours__btn:focus-visible {
    outline: 2px solid var(--ecs-primary);
    outline-offset: 2px;
}
    position: relative;
}

.ecs-form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.ecs-form-body {
    padding: 2rem;
}

.ecs-form-group {
    margin-bottom: 1.5rem;
}

.ecs-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ecs-gray-800);
}

.ecs-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ecs-gray-300);
    border-radius: var(--ecs-radius-md);
    transition: var(--ecs-transition);
    color: var(--ecs-gray-800);
}

.ecs-form-control:focus {
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(var(--ecs-primary-rgb), 0.1);
    outline: none;
}

.ecs-form-control::placeholder {
    color: var(--ecs-gray-500);
}

textarea.ecs-form-control {
    min-height: 150px;
    resize: vertical;
}

.ecs-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ecs-gray-300);
    border-radius: var(--ecs-radius-md);
    transition: var(--ecs-transition);
    color: var(--ecs-gray-800);
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.ecs-form-select:focus {
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(var(--ecs-primary-rgb), 0.1);
    outline: none;
}

.contact-form__body {
    padding: 2.5rem;
}

.contact-form__group {
    margin-bottom: 1.5rem;
}

.contact-form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ecs-gray-800);
    font-size: 0.95rem;
}

.contact-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ecs-gray-300);
    border-radius: var(--ecs-radius-md);
    font-size: 1rem;
    color: var(--ecs-gray-800);
    transition: var(--ecs-transition);
    background-color: white;
}

.contact-form__input:focus {
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(var(--ecs-primary-rgb), 0.1);
    outline: none;
}

.contact-form__input::placeholder {
    color: var(--ecs-gray-500);
}

.contact-form__textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-form__checkbox-input {
    margin-top: 0.25rem;
}

.contact-form__checkbox-label {
    font-size: 0.9rem;
    color: var(--ecs-gray-700);
    line-height: 1.5;
}

.contact-form__submit {
    background: var(--ecs-gradient-primary);
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--ecs-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.contact-form__submit:hover {
    box-shadow: var(--ecs-shadow-md);
    transform: translateY(-3px);
}

.contact-form__submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--ecs-primary-rgb), 0.3);
}

/* Map Section Styles */
.contact-map {
    padding: 5rem 0;
}

.contact-map__wrapper {
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-lg);
    border: 1px solid var(--ecs-gray-200);
    height: 450px;
    position: relative;
}

.contact-map__wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.contact-map__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section Styles */
.contact-faq {
    background-color: var(--ecs-gray-50);
    padding: 5rem 0;
}

.contact-faq__item {
    background: white;
    border-radius: var(--ecs-radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--ecs-shadow-sm);
    border: 1px solid var(--ecs-gray-200);
    transition: var(--ecs-transition);
}

.contact-faq__item:hover {
    box-shadow: var(--ecs-shadow-md);
}

.contact-faq__question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--ecs-gray-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-faq__question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: var(--ecs-transition);
}

.contact-faq__question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.contact-faq__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--ecs-gray-700);
    line-height: 1.6;
}

/* Office Hours Styles */
.contact-hours {
    padding: 5rem 0;
}

.contact-hours__card {
    background: white;
    border-radius: var(--ecs-radius-lg);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    border: 1px solid var(--ecs-gray-200);
    height: 100%;
}

.contact-hours__header {
    background: var(--ecs-gradient-primary);
    padding: 1.5rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hours__header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
}

.contact-hours__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.ecs-hours-body {
    padding: 2rem;
}

.ecs-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ecs-gray-200);
}

.ecs-hours-item:last-child {
    border-bottom: none;
}

.ecs-day {
    font-weight: 600;
    color: var(--ecs-gray-800);
}

.ecs-time {
    color: var(--ecs-gray-600);
}

.ecs-closed {
    color: var(--ecs-danger);
    font-weight: 600;
}

/* Newsletter Section Styles */
.ecs-newsletter-section {
    background: var(--ecs-gradient-mixed);
    padding: 5rem 0;
    color: white;
}

.ecs-newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ecs-newsletter-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ecs-newsletter-wrapper p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.ecs-newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.ecs-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--ecs-radius-md);
    font-size: 1rem;
}

.ecs-newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.ecs-newsletter-btn {
    background: white;
    color: var(--ecs-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--ecs-transition);
}

.ecs-newsletter-btn:hover {
    background: var(--ecs-gray-100);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .ecs-newsletter-form {
        flex-direction: column;
    }
    
    .ecs-newsletter-btn {
        width: 100%;
    }
}

.ecs-section-badge {
    display: inline-block;
    background: var(--ecs-gradient-light);
    color: var(--ecs-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--ecs-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.ecs-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ecs-gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ecs-section-subtitle {
    font-size: 1.1rem;
    color: var(--ecs-gray-600);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.ecs-services-section {
    padding: 6rem 0;
    background: var(--ecs-gray-50);
}

.ecs-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--ecs-radius-xl);
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    height: 100%;
    border: 1px solid var(--ecs-gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ecs-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ecs-gradient-primary);
}

.ecs-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-2xl);
}

.ecs-service-featured {
    background: var(--ecs-gradient-mixed);
    color: white;
    transform: scale(1.05);
}

.ecs-service-featured::before {
    background: rgba(255, 255, 255, 0.3);
}

.ecs-service-featured .ecs-service-title,
.ecs-service-featured .ecs-service-desc {
    color: white;
}

.ecs-service-icon {
    width: 80px;
    height: 80px;
    background: var(--ecs-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.ecs-service-featured .ecs-service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.ecs-service-icon i {
    font-size: 2rem;
    color: var(--ecs-primary);
}

.ecs-service-featured .ecs-service-icon i {
    color: white;
}

.ecs-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ecs-gray-900);
    margin-bottom: 1rem;
}

.ecs-service-desc {
    color: var(--ecs-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ecs-service-link {
    color: var(--ecs-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--ecs-transition);
}

.ecs-service-featured .ecs-service-link {
    color: white;
}

.ecs-service-link:hover {
    gap: 1rem;
    transform: translateX(5px);
}

/* ===== COLLEGES SECTION ===== */
.ecs-colleges-section {
    padding: 6rem 0;
}

.ecs-college-card {
    background: white;
    border-radius: var(--ecs-radius-xl);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    height: 100%;
    border: 1px solid var(--ecs-gray-200);
    position: relative;
}

.ecs-college-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-2xl);
}

.ecs-college-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ecs-college-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ecs-transition);
}

.ecs-college-card:hover .ecs-college-image img {
    transform: scale(1.1);
}

.ecs-college-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--ecs-gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--ecs-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.ecs-badge-medical {
    background: var(--ecs-gradient-secondary);
}

.ecs-badge-management {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.ecs-college-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--ecs-transition);
}

.ecs-college-card:hover .ecs-college-overlay {
    opacity: 1;
}

.ecs-overlay-btn {
    background: white;
    color: var(--ecs-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--ecs-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--ecs-transition);
}

.ecs-overlay-btn:hover {
    background: var(--ecs-primary);
    color: white;
    transform: scale(1.05);
}

.ecs-college-content {
    padding: 1.5rem;
}

.ecs-college-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ecs-gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.ecs-college-location {
    color: var(--ecs-gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ecs-college-location i {
    color: var(--ecs-primary);
}

.ecs-college-desc {
    color: var(--ecs-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.ecs-college-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ecs-college-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--ecs-primary);
    font-weight: 600;
}

.ecs-college-type {
    background: var(--ecs-gradient-light);
    color: var(--ecs-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--ecs-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(30, 58, 138, 0.2);
}

.ecs-type-medical {
    background: rgba(59, 130, 246, 0.1);
    color: var(--ecs-secondary-light);
    border-color: rgba(59, 130, 246, 0.2);
}

.ecs-type-management {
    background: rgba(16, 185, 129, 0.1);
    color: var(--ecs-success);
    border-color: rgba(16, 185, 129, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.ecs-testimonials-section {
    padding: 6rem 0;
    background: var(--ecs-gray-50);
}

.ecs-testimonial-card {
    background: white;
    border-radius: var(--ecs-radius-xl);
    padding: 2rem;
    box-shadow: var(--ecs-shadow-md);
    transition: var(--ecs-transition);
    height: 100%;
    border: 1px solid var(--ecs-gray-200);
    position: relative;
    overflow: hidden;
}

.ecs-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--ecs-gradient-primary);
}

.ecs-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ecs-shadow-2xl);
}

.ecs-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ecs-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--ecs-primary);
}

.ecs-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecs-testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ecs-gray-900);
    margin-bottom: 0.25rem;
}

.ecs-testimonial-author span {
    color: var(--ecs-gray-500);
    font-size: 0.9rem;
}

.ecs-testimonial-rating {
    margin-left: auto;
    display: flex;
    gap: 0.25rem;
}

.ecs-testimonial-rating i {
    color: var(--ecs-primary);
    font-size: 0.9rem;
}

.ecs-testimonial-content {
    position: relative;
}

.ecs-quote-icon {
    color: var(--ecs-primary);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.ecs-testimonial-content p {
    color: var(--ecs-gray-600);
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.ecs-cta-section {
    padding: 6rem 0;
    background: var(--ecs-gradient-mixed);
    position: relative;
    overflow: hidden;
    color: white;
}

.ecs-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ecs-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M40 40V20c0-11-9-20-20-20S0 9 0 20v20h40z'/%3E%3C/g%3E%3C/svg%3E");
    animation: patternMove 30s linear infinite;
}

.ecs-cta-content {
    position: relative;
    z-index: 2;
}

.ecs-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ecs-cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ecs-cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ecs-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.ecs-feature-item i {
    color: var(--ecs-primary);
    font-size: 1.2rem;
}

.ecs-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.ecs-cta-btn-primary,
.ecs-cta-btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--ecs-transition);
    text-align: center;
    font-size: 1rem;
}

.ecs-cta-btn-primary {
    background: white;
    color: var(--ecs-secondary);
    box-shadow: var(--ecs-shadow-lg);
}

.ecs-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--ecs-shadow-2xl);
    color: var(--ecs-secondary);
}

.ecs-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ecs-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* ===== FOOTER STYLES ===== */
.ecs-footer {
    background: var(--ecs-gray-900);
    color: white;
    position: relative;
}

.ecs-footer-wave {
    line-height: 0;
}

.ecs-footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.ecs-footer-content {
    padding: 4rem 0 2rem;
}

.ecs-footer-logo {
    margin-bottom: 1.5rem;
}

.ecs-footer-desc {
    color: var(--ecs-gray-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ecs-footer-social {
    display: flex;
    gap: 0.75rem;
}

.ecs-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--ecs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--ecs-transition);
    font-size: 1rem;
}

.ecs-social-btn:hover {
    background: var(--ecs-primary);
    color: white;
    transform: translateY(-3px);
}

.ecs-footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    color: white;
}

.ecs-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background: var(--ecs-primary);
}

.ecs-footer-links {
    list-style: none;
}

.ecs-footer-links li {
    margin-bottom: 0.75rem;
}

.ecs-footer-links a {
    color: var(--ecs-gray-400);
    text-decoration: none;
    transition: var(--ecs-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ecs-footer-links a:hover {
    color: var(--ecs-primary);
    transform: translateX(5px);
}

.ecs-footer-links a i {
    color: var(--ecs-primary);
    font-size: 0.8rem;
    width: 12px;
}

.ecs-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ecs-copyright {
    color: var(--ecs-gray-400);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.ecs-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    align-items: center;
}

.ecs-footer-bottom-links a {
    color: var(--ecs-gray-400);
    text-decoration: none;
    transition: var(--ecs-transition);
    font-size: 0.9rem;
}

.ecs-footer-bottom-links a:hover {
    color: var(--ecs-primary);
}

.ecs-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--ecs-gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--ecs-transition);
    z-index: 1000;
    box-shadow: var(--ecs-shadow-lg);
}

.ecs-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.ecs-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--ecs-shadow-2xl);
    color: white;
}

/* ===== MODAL STYLES ===== */
.ecs-modal .modal-content {
    border: none;
    border-radius: var(--ecs-radius-xl);
    box-shadow: var(--ecs-shadow-2xl);
    overflow: hidden;
}

.ecs-modal-header {
    background: var(--ecs-gradient-mixed);
    color: white;
    border-bottom: none;
    padding: 2rem;
}

.ecs-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ecs-modal-icon {
    font-size: 1.5rem;
}

.ecs-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.ecs-modal-body {
    padding: 2rem;
}

.ecs-form-subtitle {
    text-align: center;
    color: var(--ecs-gray-600);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ecs-form-group {
    position: relative;
}

.ecs-form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ecs-gray-400);
    z-index: 2;
}

.ecs-form-control {
    height: 50px;
    border: 2px solid var(--ecs-gray-200);
    border-radius: var(--ecs-radius-md);
    padding: 0 1rem 0 3rem;
    font-size: 1rem;
    transition: var(--ecs-transition);
    width: 100%;
}

.ecs-form-control:focus {
    outline: none;
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.ecs-submit-btn {
    width: 100%;
    height: 50px;
    background: var(--ecs-gradient-primary);
    color: white;
    border: none;
    border-radius: var(--ecs-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ecs-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.ecs-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--ecs-shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

@keyframes patternMove {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199px) {
    .ecs-hero-title {
        font-size: 3rem;
    }
    
    .ecs-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .ecs-hero-title {
        font-size: 2.5rem;
    }
    
    .ecs-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ecs-search-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ecs-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .ecs-floating-card {
        position: relative;
        margin-bottom: 1rem;
        max-width: none;
    }
    
    .ecs-card-1, .ecs-card-2, .ecs-card-3 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    
    .ecs-cta-actions {
        margin-top: 2rem;
    }
    
    .ecs-contact-info {
        gap: 1rem;
    }
    
    .ecs-top-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }
    
    /* Mobile Dropdown Enhancements */
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        padding: 15px 0;
    }
    
    .ecs-nav-dropdown .dropdown-menu,
    .ecs-mega-dropdown .ecs-compact-mega-menu {
        background-color: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 15px;
        margin-top: 5px;
        border: 1px solid #e9ecef;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .ecs-nav-dropdown.show .dropdown-menu,
    .ecs-mega-dropdown.show .ecs-compact-mega-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Animation classes for dropdowns */
    .slide-down {
        animation: slideDown 0.3s ease forwards;
    }
    
    .slide-up {
        animation: slideUp 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-10px);
        }
    }
    
    .dropdown-item {
        padding: 10px 15px;
        border-radius: 5px;
        transition: all 0.2s ease;
        margin-bottom: 5px;
    }
    
    .dropdown-item:hover {
        background-color: #e9ecef;
        transform: translateX(5px);
    }
    
    /* Fix for navbar toggler */
    .navbar-toggler, 
    .ecs-navbar-toggler {
        border: none;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        position: relative;
        background: rgba(245, 158, 11, 0.1);
        border-radius: var(--ecs-radius-md);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--ecs-transition);
    }
    
    .navbar-toggler:focus,
    .ecs-navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    
    .navbar-toggler span,
    .ecs-navbar-toggler span {
        display: block;
        height: 3px;
        width: 25px;
        background: var(--ecs-secondary);
        margin: 3px 0;
        border-radius: 2px;
        transition: var(--ecs-transition);
        transform-origin: center;
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(1),
    .ecs-navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(2),
    .ecs-navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .navbar-toggler[aria-expanded="true"] span:nth-child(3),
    .ecs-navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 767px) {
    .ecs-hero-section {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .ecs-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .ecs-hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .ecs-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }
    
    .ecs-hero-search {
        padding: 1rem;
        margin: 1rem;
    }
    
    .ecs-section-title {
        font-size: 1.75rem;
    }
    
    .ecs-cta-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .ecs-footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .ecs-top-bar {
        text-align: center;
    }
    
    .ecs-contact-info {
        justify-content: center;
    }
    
    .ecs-top-right {
        align-items: center;
    }
}

@media (max-width: 575px) {
    .ecs-hero-title {
        font-size: 1.75rem;
    }
    
    .ecs-btn-primary,
    .ecs-btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .ecs-hero-search {
        padding: 1rem;
    }
    
    .ecs-service-card,
    .ecs-testimonial-card {
        padding: 1.5rem;
    }
    
    .ecs-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .ecs-stat-number {
        font-size: 2rem;
    }
    
    .ecs-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .ecs-social-links {
        justify-content: center;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--ecs-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--ecs-gradient-primary);
}

.shadow-custom {
    box-shadow: var(--ecs-shadow-xl);
}

.border-radius-custom {
    border-radius: var(--ecs-radius-xl);
}

.transition-custom {
    transition: var(--ecs-transition);
}

/* ===== MAIN CONTENT SPACING ===== */
.ecs-main-content {
    margin-top: 100px; /* Account for fixed header */
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
*:focus {
    outline: 2px solid var(--ecs-primary);
    outline-offset: 2px;
}

button:focus,
.btn:focus,
a:focus {
    outline: 2px solid var(--ecs-primary);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .ecs-header,
    .ecs-footer,
    .ecs-back-to-top,
    #ecs-loader {
        display: none !important;
    }
    
    .ecs-main-content {
        margin-top: 0;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    :root {
        --ecs-gray-400: #666666;
        --ecs-gray-600: #333333;
    }
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* Contact Page Specific Styles */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero--contact {
    background-color: var(--ecs-gray-900);
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(245, 158, 11, 0.6) 100%);
    z-index: 1;
}

.page-hero__title {
    font-family: var(--ecs-font-family);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ecs-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-hero .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb-item {
    font-size: 1.1rem;
    font-weight: 500;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--ecs-transition);
}

.page-hero .breadcrumb-item a:hover {
    color: var(--ecs-primary);
}

.page-hero .breadcrumb-item.active {
    color: var(--ecs-white);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 1.2rem;
}

/* Contact Cards Section */
.contact-section {
    background: var(--ecs-white);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: var(--ecs-white);
    padding: 2.5rem 2rem;
    border-radius: var(--ecs-radius-lg);
    text-align: center;
    box-shadow: var(--ecs-shadow-lg);
    border: 1px solid var(--ecs-gray-100);
    transition: var(--ecs-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ecs-gradient-mixed);
    transform: scaleX(0);
    transition: var(--ecs-transition);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ecs-shadow-2xl);
}

.contact-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--ecs-gradient-light);
    border-radius: var(--ecs-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ecs-transition);
}

.contact-card:hover .contact-card__icon {
    background: var(--ecs-gradient-mixed);
    transform: scale(1.1);
}

.contact-card__icon i {
    font-size: 2rem;
    color: var(--ecs-primary);
    transition: var(--ecs-transition);
}

.contact-card:hover .contact-card__icon i {
    color: var(--ecs-white);
}

.contact-card__title {
    font-family: var(--ecs-font-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ecs-gray-900);
    margin-bottom: 1rem;
}

.contact-card__text {
    color: var(--ecs-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-card__link {
    color: var(--ecs-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--ecs-transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card__link:hover {
    color: var(--ecs-primary-dark);
    transform: translateX(3px);
}

.contact-card__link::after {
    content: "→";
    transition: var(--ecs-transition);
}

.contact-card__link:hover::after {
    transform: translateX(3px);
}

/* Contact Form Section */
.contact-form__wrapper {
    background: var(--ecs-white);
    padding: 3rem;
    border-radius: var(--ecs-radius-xl);
    box-shadow: var(--ecs-shadow-lg);
    border: 1px solid var(--ecs-gray-100);
    position: relative;
}

.contact-form__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ecs-gradient-light);
    border-radius: var(--ecs-radius-xl);
    z-index: -1;
    opacity: 0;
    transition: var(--ecs-transition);
}

.contact-form__wrapper:hover::before {
    opacity: 1;
}

.contact-form__group {
    margin-bottom: 1.5rem;
}

.contact-form__label {
    display: block;
    font-family: var(--ecs-font-family);
    font-weight: 600;
    color: var(--ecs-gray-800);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--ecs-gray-200);
    border-radius: var(--ecs-radius-md);
    font-family: var(--ecs-font-family);
    font-size: 1rem;
    color: var(--ecs-gray-800);
    background: var(--ecs-white);
    transition: var(--ecs-transition);
    outline: none;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: var(--ecs-gray-400);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.contact-form__checkbox-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--ecs-gray-300);
    border-radius: var(--ecs-radius-sm);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form__checkbox-input:checked {
    background: var(--ecs-gradient-primary);
    border-color: var(--ecs-primary);
}

.contact-form__checkbox-label {
    font-size: 0.9rem;
    color: var(--ecs-gray-600);
    line-height: 1.5;
}

.contact-form__link {
    color: var(--ecs-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--ecs-transition);
}

.contact-form__link:hover {
    color: var(--ecs-primary-dark);
    text-decoration: underline;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--ecs-gradient-primary);
    color: var(--ecs-white);
    border: none;
    border-radius: var(--ecs-radius-md);
    font-family: var(--ecs-font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ecs-transition);
    box-shadow: var(--ecs-shadow-md);
}

.contact-form__submit:hover {
    background: var(--ecs-gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--ecs-shadow-xl);
}

.contact-form__submit:active {
    transform: translateY(0);
}

/* Map Section */
.contact-map__wrapper {
    border-radius: var(--ecs-radius-xl);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-lg);
    height: 100%;
    min-height: 500px;
}

.contact-map__responsive {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.contact-map__responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.contact-faq {
    background: var(--ecs-gray-50);
    position: relative;
}

.contact-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ecs-gradient-light);
    opacity: 0.3;
    z-index: 0;
}

.contact-faq .container {
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: var(--ecs-white);
    border: 1px solid var(--ecs-gray-200);
    border-radius: var(--ecs-radius-lg) !important;
    margin-bottom: 1rem;
    box-shadow: var(--ecs-shadow-sm);
    transition: var(--ecs-transition);
    overflow: hidden;
}

.accordion-item:hover {
    box-shadow: var(--ecs-shadow-md);
    transform: translateY(-2px);
}

.accordion-button {
    background: var(--ecs-white);
    color: var(--ecs-gray-900);
    font-family: var(--ecs-font-family);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: var(--ecs-radius-lg) !important;
    transition: var(--ecs-transition);
    position: relative;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    border-color: var(--ecs-primary);
}

.accordion-button:not(.collapsed) {
    background: var(--ecs-gradient-light);
    color: var(--ecs-primary-dark);
    box-shadow: none;
}

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ecs-primary);
    transition: var(--ecs-transition);
}

.accordion-button:not(.collapsed)::after {
    content: "−";
    transform: rotate(0deg);
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    color: var(--ecs-gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* Office Hours Section */
.contact-hours {
    background: var(--ecs-white);
    position: relative;
    overflow: hidden;
}

.contact-hours__image img {
    border-radius: var(--ecs-radius-xl);
    box-shadow: var(--ecs-shadow-xl);
    transition: var(--ecs-transition);
}

.contact-hours__image:hover img {
    transform: scale(1.05);
}

.contact-hours__content {
    padding-left: 2rem;
}

.contact-hours__list {
    margin: 2rem 0;
}

.contact-hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--ecs-gray-50);
    border-radius: var(--ecs-radius-md);
    margin-bottom: 1rem;
    border-left: 4px solid var(--ecs-primary);
    transition: var(--ecs-transition);
}

.contact-hours__item:hover {
    background: var(--ecs-gradient-light);
    transform: translateX(5px);
}

.contact-hours__day {
    font-family: var(--ecs-font-family);
    font-weight: 600;
    color: var(--ecs-gray-800);
}

.contact-hours__time {
    font-weight: 500;
    color: var(--ecs-primary);
}

.contact-hours__note {
    background: rgba(245, 158, 11, 0.1);
    padding: 1.5rem;
    border-radius: var(--ecs-radius-md);
    border-left: 4px solid var(--ecs-primary);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-hours__note i {
    color: var(--ecs-primary);
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.contact-hours__note p {
    margin: 0;
    color: var(--ecs-gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
    background: var(--ecs-gray-50);
    position: relative;
}

.newsletter__wrapper {
    background: var(--ecs-white);
    padding: 3rem;
    border-radius: var(--ecs-radius-xl);
    box-shadow: var(--ecs-shadow-lg);
    border: 1px solid var(--ecs-gray-200);
    position: relative;
    overflow: hidden;
}

.newsletter__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ecs-gradient-light);
    opacity: 0;
    transition: var(--ecs-transition);
    z-index: 0;
}

.newsletter__wrapper:hover::before {
    opacity: 1;
}

.newsletter__wrapper > * {
    position: relative;
    z-index: 1;
}

.newsletter__title {
    font-family: var(--ecs-font-family);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ecs-gray-900);
    margin-bottom: 0.5rem;
}

.newsletter__text {
    color: var(--ecs-gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.newsletter__form {
    max-width: 400px;
    margin-left: auto;
}

.newsletter__input-group {
    display: flex;
    border-radius: var(--ecs-radius-md);
    overflow: hidden;
    box-shadow: var(--ecs-shadow-md);
    border: 2px solid var(--ecs-gray-200);
    transition: var(--ecs-transition);
}

.newsletter__input-group:focus-within {
    border-color: var(--ecs-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.newsletter__input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    outline: none;
    font-family: var(--ecs-font-family);
    font-size: 1rem;
    color: var(--ecs-gray-800);
    background: var(--ecs-white);
}

.newsletter__input::placeholder {
    color: var(--ecs-gray-400);
}

.newsletter__btn {
    padding: 1rem 1.5rem;
    background: var(--ecs-gradient-primary);
    color: var(--ecs-white);
    border: none;
    font-family: var(--ecs-font-family);
    font-weight: 600;
    cursor: pointer;
    transition: var(--ecs-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--ecs-gradient-secondary);
}

/* Common Utility Classes */
.section__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--ecs-gradient-light);
    color: var(--ecs-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--ecs-radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.section__title {
    font-family: var(--ecs-font-family);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ecs-gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section__subtitle {
    color: var(--ecs-gray-600);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.text-gradient {
    background: var(--ecs-gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--ecs-font-family);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--ecs-radius-md);
    transition: var(--ecs-transition);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--ecs-gradient-primary);
    color: var(--ecs-white);
    box-shadow: var(--ecs-shadow-md);
}

.btn--primary:hover {
    background: var(--ecs-gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--ecs-shadow-lg);
    color: var(--ecs-white);
}

.btn--primary:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .ecs-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .ecs-hero-search {
        width: 90%;
    }
    
    .ecs-college-card {
        margin-bottom: 2rem;
    }
    
    .ecs-service-card {
        height: auto;
    }
}

@media (max-width: 991.98px) {
    .ecs-hero-content h1 {
        font-size: 3rem;
    }
    
    .page-hero__title {
        font-size: 2.5rem;
    }
    
    .contact-hours__content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .newsletter__form {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .contact-form__wrapper {
        padding: 2rem;
    }
    
    .newsletter__wrapper {
        padding: 2rem;
    }
    
    .ecs-top-bar .ecs-contact-info {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .ecs-top-right {
        justify-content: center;
    }
    
    .ecs-college-details-header {
        flex-direction: column;
    }
    
    .ecs-college-logo {
        margin-bottom: 1.5rem;
    }
    
    .ecs-college-gallery-main {
        height: 300px;
    }
    
    .ecs-college-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .ecs-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .ecs-hero-search {
        width: 100%;
        flex-direction: column;
    }
    
    .ecs-hero-search-input {
        border-radius: var(--ecs-radius-md);
        margin-bottom: 1rem;
    }
    
    .ecs-hero-search-btn {
        border-radius: var(--ecs-radius-md);
        width: 100%;
    }
    
    .ecs-stats-item {
        margin-bottom: 1.5rem;
    }
    
    .page-hero__title {
        font-size: 2rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .newsletter__input-group {
        flex-direction: column;
    }
    
    .newsletter__btn {
        border-radius: 0 0 var(--ecs-radius-md) var(--ecs-radius-md);
    }
    
    .contact-form__wrapper {
        padding: 1.5rem;
    }
    
    .newsletter__wrapper {
        padding: 1.5rem;
    }
    
    .ecs-college-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecs-college-highlights {
        grid-template-columns: 1fr;
    }
    
    .ecs-course-item {
        flex-direction: column;
    }
    
    .ecs-course-info {
        padding-left: 0;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .ecs-hero-content h1 {
        font-size: 2rem;
    }
    
    .ecs-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .ecs-main-content {
    margin-top: 60px; /* Account for fixed header */
}
    .ecs-hero-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .ecs-section-title {
        font-size: 1.75rem;
    }
    
    .contact-hours__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card__icon i {
        font-size: 1.75rem;
    }
    
    .ecs-college-rating {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ecs-rating-count {
        margin-top: 0.5rem;
    }
    
    .ecs-college-gallery-main {
        height: 200px;
    }
    
    .ecs-college-gallery-thumbs {
        grid-template-columns: 1fr;
    }
    
    .ecs-tab-nav {
        flex-direction: column;
    }
    
    .ecs-tab-link {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }
}








/* MBA College Pages Universal Styles */

/* Base Styles */
.mba-college-page {
    padding-top: 180px;
}

/* Hero Section */
.mba-hero-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.mba-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mba-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.mba-page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Introduction Section */
.mba-intro-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.mba-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Overview Section */
.mba-overview-section {
    padding: 4rem 0;
}

.mba-overview-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.mba-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.mba-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 2px;
}

.mba-overview-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Tables Styling */
.mba-stats-table {
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.mba-stats-table thead {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.mba-stats-table th {
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.mba-stats-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
}

.mba-stats-table tbody tr:hover {
    background: #fef3c7;
}

/* Facts Section */
.mba-facts-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.mba-fact-card {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.mba-fact-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mba-fact-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.mba-fact-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Admission Process Section */
.mba-admission-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.mba-admission-intro {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.mba-process-card {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.mba-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #f59e0b;
}

.mba-process-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.mba-process-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.mba-process-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Specialization Section */
.mba-specialization-section {
    padding: 4rem 0;
}

.mba-spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.mba-spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #f59e0b;
}

.mba-spec-item i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.mba-spec-item span {
    font-weight: 600;
    color: #1f2937;
}

/* Specialization Links */
.mba-spec-links {
    margin-top: 2rem;
}

.mba-spec-link-card {
    background: white;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 3px solid #f59e0b;
    transition: all 0.3s ease;
}

.mba-spec-link-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mba-spec-link-card a {
    text-decoration: none;
    color: #f59e0b;
    font-weight: 500;
}

.mba-spec-link-card a:hover {
    color: #d97706;
}

/* Colleges Section */
.mba-colleges-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.mba-colleges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mba-college-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.mba-college-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #f59e0b;
}

.mba-college-image {
    height: 200px;
    overflow: hidden;
}

.mba-college-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.mba-college-card:hover .mba-college-image img {
    transform: scale(1.05);
}

.mba-college-content {
    padding: 1.5rem;
}

.mba-college-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.mba-college-details {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.mba-course-tag, .mba-fee-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mba-course-tag {
    background: #dbeafe;
    color: #1d4ed8;
}

.pgdm-tag {
    background: #fef3c7;
    color: #d97706;
}

.mba-fee-tag {
    background: #dcfce7;
    color: #16a34a;
}

.mba-college-accreditation {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-style: italic;
}

.mba-apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.mba-apply-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    text-decoration: none;
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Also Read Link */
.mba-also-read {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.mba-also-read a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.mba-also-read a:hover {
    color: #d97706;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mba-page-title {
        font-size: 2.2rem;
    }
    
    .mba-section-title {
        font-size: 1.8rem;
    }
    
    .mba-colleges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mba-overview-card {
        padding: 2rem 1.5rem;
    }
    
    .mba-fact-number {
        font-size: 2rem;
    }
    
    .mba-process-card {
        padding: 1.5rem 1rem;
    }
    
    .mba-college-content {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .mba-college-page {
        padding-top: 160px;
    }
    
    .mba-page-title {
        font-size: 1.8rem;
    }
    
    .mba-hero-section {
        padding: 3rem 0;
    }
    
    .mba-overview-card {
        padding: 1.5rem 1rem;
    }
    
    .mba-college-details {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mba-college-card {
    animation: fadeInUp 0.6s ease-out;
}

.mba-fact-card {
    animation: slideInLeft 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Print Styles */
media print {
    .mba-apply-btn {
        display: none;
    }
    
    .mba-hero-section {
        background: #f59e0b !important;
        color: black !important;
    }
}
