/* ================================================================
   CAREER SANKALP - MAIN STYLESHEET
   Color Palette: Deep Blue #0B2D6B | Orange #D9901A | White #FFFFFF
   ================================================================ */

:root {
    --primary: #0B2D6B;
    --primary-dark: #071d45;
    --primary-light: #1a4d9e;
    --secondary: #D9901A;
    --secondary-dark: #b5760f;
    --secondary-light: #f0a93a;
    --white: #FFFFFF;
    --light-bg: #f8f9ff;
    --gray-100: #f4f5f9;
    --gray-200: #e8ecf4;
    --gray-500: #6c757d;
    --gray-700: #343a40;
    --dark: #0d1b2a;
    --text-primary: #1a2332;
    --text-muted: #6b7280;
    --border-color: #e2e8f4;
    --shadow-sm: 0 2px 8px rgba(11, 45, 107, 0.08);
    --shadow-md: 0 4px 20px rgba(11, 45, 107, 0.12);
    --shadow-lg: 0 8px 40px rgba(11, 45, 107, 0.18);
    --shadow-xl: 0 20px 60px rgba(11, 45, 107, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

a { transition: var(--transition); text-decoration: none; }
img { max-width: 100%; }

/* ================================================================
   UTILITIES
   ================================================================ */
.text-primary { color: var(--primary) !important; }
.text-orange { color: var(--secondary) !important; }
.text-muted-custom { color: var(--text-muted); }
.bg-primary-custom { background: var(--primary); }
.bg-orange { background: var(--secondary); }
.bg-light-blue { background: var(--light-bg); }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 45, 107, 0.4);
}

.btn-orange {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border: none;
    color: #fff;
}
.btn-orange:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 144, 26, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-orange {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}
.btn-outline-orange:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 8px 0;
    font-size: 0.8rem;
}

.top-bar-left { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }

.top-bar-link {
    color: rgba(255,255,255,0.88);
    padding: 2px 12px;
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    font-size: 0.78rem;
}
.top-bar-link:last-child { border-right: none; }
.top-bar-link:hover { color: var(--secondary); }
.top-bar-link i { margin-right: 5px; color: var(--secondary); }

.top-bar-right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }

.social-icon {
    color: rgba(255,255,255,0.7);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.75rem;
    transition: var(--transition);
}
.social-icon:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================================
   MAIN NAVBAR
   ================================================================ */
.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(11, 45, 107, 0.08);
    padding: 0;
    transition: var(--transition);
    border-bottom: 3px solid var(--secondary);
}

.main-navbar.scrolled {
    box-shadow: var(--shadow-lg);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(11, 45, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(217, 144, 26, 0.3);
    border-left: 3px solid var(--secondary);
}

.logo-cs {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    z-index: 1;
}

.logo-icon-sm {
    width: 40px;
    height: 40px;
}

.logo-text { display: flex; flex-direction: column; }

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Nav Links */
.main-navbar .nav-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 0.85rem !important;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.main-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-navbar .nav-link.active::before { width: 100%; }

.main-navbar .nav-link:hover { color: var(--secondary); }

/* Dropdown Menus */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 8px;
    border-top: 3px solid var(--secondary);
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hover dropdowns on desktop (min-width: 1200px) */
@media (min-width: 1200px) {
    .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0 !important;
    }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: translateX(4px);
}

/* Mega Menu */
.mega-menu {
    width: 560px;
    padding: 20px;
}

.mega-heading {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--secondary);
}

.navbar-cta { gap: 8px; }

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
}

.swiper-hero {
    height: 500px;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    overflow: hidden;
    height: 100%;
    padding: 10px 0 30px 0;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
}

.trust-badge-item i {
    color: #4ade80;
    font-size: 0.9rem;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-slide-2 {
    background: linear-gradient(135deg, #1a0533, #0B2D6B, #1a4d9e);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #0a2d1f, #0B2D6B, #0d5040);
}

.hero-slide-4 {
    background: linear-gradient(135deg, #2d1a00, #0B2D6B, #4d2d00);
}

.hero-content { position: relative; z-index: 2; color: #fff; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 144, 26, 0.2);
    border: 1px solid rgba(217, 144, 26, 0.5);
    color: var(--secondary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }

.hero-stat-item { text-align: center; }

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Hero Image Side */
.hero-image-side {
    position: relative;
    z-index: 2;
}

.hero-floating-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card:nth-child(2) { animation-delay: 1s; }
.hero-floating-card:nth-child(3) { animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-floating-card .card-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.hero-floating-card .card-text strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-floating-card .card-text span {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

/* Hero Slide Search Box */
.hero-search-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.hero-search-box .search-field {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0 10px;
    border: 1px solid #e9ecef;
}
.hero-search-box button[type="submit"] {
    background: #071d45;
    border-color: #071d45;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9rem;
    color: #fff;
}
.hero-search-box button[type="submit"]:hover {
    background: #0b2d6b;
    border-color: #0b2d6b;
}

@media (max-width: 768px) {
    .hero-search-box {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 15px !important;
        gap: 12px !important;
    }
    .hero-search-box .search-field {
        width: 100% !important;
        height: 48px !important;
        margin-bottom: 0 !important;
    }
    .hero-search-box button[type="submit"] {
        width: 100% !important;
        padding: 12px 20px !important;
    }
}

/* Hero Search Box Section */
.hero-search-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-tabs .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    padding: 10px 20px;
    border: 2px solid transparent;
}

.search-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--secondary);
    background: rgba(11, 45, 107, 0.05);
}

.search-input-group { display: flex; gap: 8px; flex-wrap: wrap; }

.search-input-group .form-control,
.search-input-group .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    padding: 12px 16px;
    transition: var(--transition);
}

.search-input-group .form-control:focus,
.search-input-group .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 45, 107, 0.1);
}

/* ================================================================
   SECTION STYLES
   ================================================================ */
.section-padding { padding: 80px 0; }

.section-padding-sm { padding: 50px 0; }

.section-header { margin-bottom: 50px; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 144, 26, 0.1);
    border: 1px solid rgba(217, 144, 26, 0.3);
    color: var(--secondary-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title span { color: var(--secondary); }

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--secondary-light));
    border-radius: 2px;
    margin: 12px 0;
}

/* ================================================================
   CARDS
   ================================================================ */

/* University Card */
.university-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.university-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 45, 107, 0.08);
    border-color: #e2e8f0;
}

.university-card .card-banner {
    height: 170px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.university-card .card-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 107, 0.5) 0%, transparent 60%);
    z-index: 1;
}

.university-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.university-card:hover .card-banner img {
    transform: scale(1.08);
}

.university-card .card-logo {
    position: absolute;
    bottom: -28px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #fff;
    z-index: 2;
    transition: transform 0.3s ease;
}

.university-card:hover .card-logo {
    transform: scale(1.05);
}

.university-card .card-logo img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    padding: 3px;
}

.university-card .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(217, 144, 26, 0.3);
}

.university-card .card-body { 
    padding: 40px 20px 24px; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.university-card .card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.university-card .card-location {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 500;
}

.university-card .card-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 12px 0;
    border-top: 1px dashed #e2e8f0;
    border-bottom: 1px dashed #e2e8f0;
}

.university-card .stat-item { 
    text-align: left; 
}

.university-card .stat-item .stat-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.university-card .stat-item .stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.university-card p.text-muted {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.university-card .btn {
    margin-top: auto;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* College Card */
.college-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.college-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(11, 45, 107, 0.08);
    border-color: #e2e8f0;
}

.college-card .card-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.college-card .card-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 107, 0.4) 0%, transparent 50%);
    z-index: 1;
}

.college-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.college-card:hover .card-img-wrapper img { transform: scale(1.08); }

.college-card .type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: capitalize;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(11, 45, 107, 0.3);
}

.college-card .card-body { 
    padding: 24px 20px; 
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.college-card .card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.college-card .card-location {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 500;
}

.college-card .card-info { 
    display: flex; 
    gap: 16px; 
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e2e8f0;
}

.college-card .info-item {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.college-card .info-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 800;
}

.college-card .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: #f59e0b;
    margin-top: auto;
}

.college-card .card-footer-custom {
    padding: 14px 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* Course Card */
.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.course-card:hover::before { width: 6px; }

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.course-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}

.course-icon.orange { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }

.course-card .course-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.course-card .course-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.course-card .course-meta span { display: flex; align-items: center; gap: 4px; }

.course-card .course-fee {
    font-size: 0.85rem;
    color: var(--secondary-dark);
    font-weight: 600;
    margin-top: auto;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-card .blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img img { transform: scale(1.08); }

.blog-card .blog-body { padding: 20px; }

.blog-card .blog-category {
    display: inline-block;
    background: rgba(11, 45, 107, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.blog-card .blog-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ================================================================
   STATS COUNTER SECTION
   ================================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
    background-size: 120px;
}

.stat-card {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-card:last-child::after { display: none; }

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(217, 144, 26, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    margin: 0 auto 16px;
    border: 1px solid rgba(217, 144, 26, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .suffix {
    color: var(--secondary);
    font-size: 0.6em;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-section { background: var(--light-bg); }

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 700;
}

.process-step:last-child::after { display: none; }

@media (max-width: 992px) {
    .process-step::after { display: none; }
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    transform: scale(1.1);
}

.step-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--primary-dark); overflow: hidden; }

.testimonial-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }

.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.testimonial-college {
    font-size: 0.78rem;
    color: var(--secondary-light);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary);
    background: var(--gray-100);
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(0);
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after { filter: invert(1); }

.accordion-body {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 16px 20px;
}

/* ================================================================
   SCHOLARSHIP & EXAM CARDS
   ================================================================ */
.scholarship-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.scholarship-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.scholarship-card .sc-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.scholarship-card .sc-amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.scholarship-card .sc-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* Exam Card */
.exam-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.exam-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.exam-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: #fff;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: #fff;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; }

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(217, 144, 26, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-info-text h6 {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Form Styles */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 45, 107, 0.08);
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.main-footer {
    background: var(--dark);
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-contact-item i { color: var(--secondary); font-size: 0.9rem; }

.footer-contact-item:hover { color: var(--secondary); }

.footer-social { display: flex; gap: 8px; }

.footer-social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.84rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-bottom a:hover { color: var(--secondary); }

/* ================================================================
   FLOATING ELEMENTS
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show { opacity: 1; visibility: visible; }

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

/* ================================================================
   STUDY ABROAD SECTION
   ================================================================ */
.country-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.country-card:hover::before { opacity: 1; }

.country-card:hover { border-color: var(--primary); transform: translateY(-6px); }

.country-card:hover .country-name,
.country-card:hover .country-desc { color: #fff; }

.country-flag { font-size: 2.5rem; margin-bottom: 10px; position: relative; z-index: 1; }

.country-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.country-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.feature-icon.blue { background: rgba(11, 45, 107, 0.1); color: var(--primary); }
.feature-icon.orange { background: rgba(217, 144, 26, 0.1); color: var(--secondary); }
.feature-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================================
   ALERT NOTIFICATION BAR
   ================================================================ */
.admission-alert {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 10px 0;
    overflow: hidden;
}

.alert-marquee {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.alert-item {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-item::before { content: '🔔'; }

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 40px 0;
}

.breadcrumb-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav .separator { color: rgba(255,255,255,0.4); }
.breadcrumb-nav .current { color: var(--secondary); font-weight: 600; }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination .page-link {
    border: 2px solid var(--border-color);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin: 0 3px;
    transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ================================================================
   APPLY FORM MODAL
   ================================================================ */
.modal-content { border-radius: var(--radius-xl); border: none; }

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border: none;
}

.modal-header .btn-close { filter: invert(1); }

/* ================================================================
   LOADING OVERLAY
   ================================================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.dark-mode .page-loader {
    background: rgba(13, 27, 42, 0.45);
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
    text-align: center;
    animation: floatLoader 3s ease-in-out infinite;
    max-width: 90%;
}

@keyframes floatLoader {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.loader-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 1.2s linear infinite;
}

.loader-spinner::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    border-bottom-color: var(--primary);
    border-radius: 50%;
    opacity: 0.8;
    animation: spinReverse 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.dark-mode .loader-logo {
    color: #fff;
}

.loader-logo span {
    color: var(--secondary);
    position: relative;
    padding-bottom: 2px;
}

.loader-logo span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 2px;
}

/* ================================================================
   DARK MODE
   ================================================================ */
@media (prefers-color-scheme: dark) {
    body.dark-mode-enabled {
        background: #0d1b2a;
        color: #e2e8f0;
    }
}

body.dark-mode {
    background: #0d1b2a;
    color: #e2e8f0;
}

body.dark-mode .main-navbar { background: #1a2938; }
body.dark-mode .university-card,
body.dark-mode .college-card,
body.dark-mode .course-card,
body.dark-mode .blog-card,
body.dark-mode .feature-card {
    background: #1a2938;
    border-color: #2a3a4a;
}

body.dark-mode .university-card .card-title,
body.dark-mode .college-card .card-title,
body.dark-mode .course-card .course-title { color: #e2e8f0; }

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 1200px) {
    .top-bar-left .top-bar-link:nth-child(3) { display: none; }
}

@media (max-width: 992px) {
    .section-padding { padding: 60px 0; }
    .hero-image-side { display: none; }
    .stat-card::after { display: none; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .section-padding { padding: 50px 0; }
    .hero-title { font-size: 1.8rem; }
    .hero-search-section { padding: 20px; margin-top: -30px; }
    .main-navbar .nav-link { padding: 10px 16px !important; }
    .navbar-cta { padding: 12px 16px; }
    .footer-top { padding: 40px 0 30px; }
    .swiper-hero { height: auto !important; min-height: 610px; }
    .hero-slide { height: auto !important; min-height: 610px; padding: 35px 0 35px 0; }
    .hero-trust-badges { justify-content: center; gap: 10px 16px; padding: 12px; }
    .trust-badge-item { font-size: 0.78rem; }
}

@media (max-width: 576px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-stats { gap: 1rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .back-to-top { right: 20px; }
}

/* ================================================================
   ANIMATION UTILITIES
   ================================================================ */
.fade-in { animation: fadeIn 0.6s ease forwards; }
.slide-up { animation: slideUp 0.6s ease forwards; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   SWIPER CUSTOMIZATION
   ================================================================ */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after { font-size: 16px !important; font-weight: 900; }

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.4);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 28px;
    border-radius: 5px;
}

/* ================================================================
   BADGES AND TAGS
   ================================================================ */
.badge-primary { background: rgba(11, 45, 107, 0.1); color: var(--primary); font-weight: 600; border-radius: 50px; padding: 4px 12px; font-size: 0.75rem; }
.badge-orange { background: rgba(217, 144, 26, 0.1); color: var(--secondary-dark); font-weight: 600; border-radius: 50px; padding: 4px 12px; font-size: 0.75rem; }
.badge-green { background: rgba(16, 185, 129, 0.1); color: #059669; font-weight: 600; border-radius: 50px; padding: 4px 12px; font-size: 0.75rem; }

/* Support Float Button (Left Side) */
.support-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(217, 144, 26, 0.4);
    z-index: 999;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: supportPulse 2s linear infinite;
    opacity: 0;
}

@keyframes supportPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.support-float:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    box-shadow: 0 8px 25px rgba(217, 144, 26, 0.6);
}

/* Tooltip */
.support-tooltip {
    position: absolute;
    left: 75px;
    background: #0d1b2a;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.support-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #0d1b2a;
}

.support-float:hover .support-tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

@media (max-width: 576px) {
    .support-float { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .support-tooltip { display: none; }
}

/* Partners Marquee Mobile Styling Adjustments */
@media (max-width: 768px) {
    .partners-marquee-wrapper {
        flex-direction: column !important;
        text-align: center;
        padding: 15px !important;
    }
    .partners-title-container {
        border-right: none !important;
        border-bottom: 2px solid #e9ecef;
        padding-right: 0 !important;
        margin-right: 0 !important;
        padding-bottom: 12px;
        margin-bottom: 12px;
        width: 100%;
    }
    .swiper-partners {
        width: 100% !important;
    }
}
