        @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');
        :root {
            --primary-color: #2563eb;
            --secondary-color: #7c3aed;
            --accent-color: #f59e0b;
            --dark-bg: #0f172a;
            --light-bg: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --success-color: #10b981;
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            --text-dark: #1e293b;
            --text-light: #64748b;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Sora', sans-serif;
            overflow-x: hidden;
            color: var(--text-dark);
            background: #fff;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
        }
        /* Modern Header */
        .modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}
/* Animated Top Border */
.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #667eea 75%,
        #764ba2 100%);
    background-size: 200% auto;
    animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.modern-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.99);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Enhanced Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}
.logo-wrapper:hover::before {
    opacity: 0.3;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}
.logo-section img {
    height: 50px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}
.logo-section img:hover {
    transform: scale(1.05) rotate(-2deg);
}
.modern-header.scrolled .logo-section img {
    height: 45px;
}
/* Institute Name Badge */
.institute-name {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.institute-name .main-name {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}
.institute-name .tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
/* Enhanced Accreditation Badges */
.accreditation-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}
.accreditation-badges::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.badge-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}
.badge-item:hover {
    transform: translateY(-5px) scale(1.05);
}
.badge-item img {
    height: 45px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.2));
    position: relative;
    z-index: 1;
}
.badge-item:hover img {
    filter: drop-shadow(0 8px 20px rgba(102, 126, 234, 0.4));
}
.badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
.badge-item:hover .badge-label {
    opacity: 1;
    transform: translateY(0);
}
/* Quick Info Bar */
.quick-info-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}
.info-item i {
    color: #667eea;
    font-size: 1rem;
}
.info-item .value {
    color: #667eea;
    font-weight: 700;
}
/* WhatsApp Button */
.whatsapp-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.whatsapp-button:hover::before {
    left: 100%;
}
.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}
.whatsapp-button:active {
    transform: translateY(-1px) scale(1.02);
}
.whatsapp-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.whatsapp-button:hover .whatsapp-icon {
    transform: rotate(15deg) scale(1.1);
}
/* Enhanced CTA Button */
.modern-header .cta-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}
.modern-header .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}
.modern-header .cta-button:hover::before {
    left: 100%;
}
.modern-header .cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modern-header .cta-button:hover::after {
    opacity: 1;
}
.modern-header .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    color: white;
}
.modern-header .cta-button:active {
    transform: translateY(-1px) scale(1.02);
}
.modern-header .cta-button .icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}
.modern-header .cta-button:hover .icon {
    transform: translateX(5px);
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.active {
    max-height: 600px;
    padding: 1.5rem 2rem;
}
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Mobile Quick Info */
.mobile-quick-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mobile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.mobile-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}
.mobile-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}
.mobile-info-item i {
    font-size: 1.5rem;
    color: #667eea;
}
.mobile-info-item .info-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mobile-info-item .info-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}
/* Mobile Accreditation */
.mobile-accreditation h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mobile-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}
.mobile-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    flex: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}
.mobile-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}
.mobile-badge-item img {
    height: 50px;
    transition: all 0.3s ease;
}
.mobile-badge-item:hover img {
    transform: scale(1.1);
}
.mobile-badge-item span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}
/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
/* Responsive Design */
@media (max-width: 1200px) {
    .header-actions {
        gap: 1.2rem;
    }
    .whatsapp-button,
    .modern-header .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 992px) {
    .header-actions {
        gap: 1rem;
    }
    .institute-name {
        display: none;
    }
    .quick-info-bar {
        display: none;
    }
    .accreditation-badges {
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
    }
    .badge-item img {
        height: 35px;
    }
    .whatsapp-button .button-text,
    .modern-header .cta-button .button-text {
        display: none;
    }
    .whatsapp-button,
    .modern-header .cta-button {
        padding: 0.8rem;
        width: 44px;
        height: 44px;
    }
    .whatsapp-icon,
    .modern-header .cta-button .icon {
        width: 18px;
        height: 18px;
    }
}
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .header-actions {
        gap: 0.8rem;
    }
    .accreditation-badges {
        display: none;
    }
    .whatsapp-button,
    .modern-header .cta-button {
        padding: 0.7rem;
        width: 40px;
        height: 40px;
    }
    .whatsapp-icon,
    .modern-header .cta-button .icon {
        width: 15px;
        height: 15px;
    }
}
@media (max-width: 480px) {
    .header-content {
        padding: 0 0.8rem;
    }
    .mobile-menu.active {
        padding: 1.2rem;
    }
    .mobile-info-grid {
        grid-template-columns: 1fr;
    }
    .mobile-badges {
        flex-direction: column;
    }
    .mobile-badge-item {
        min-width: auto;
    }
}
        /* Animated Background */
        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding: 150px 0;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(
                    135deg,
                    rgba(0, 0, 0, 0.45),
                    rgba(0, 0, 0, 0.65)
                ),
                url('../images/nit-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }
        /* Floating Geometric Shapes */
        .geometric-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }
        .shape-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            top: 10%;
            left: -5%;
            animation-delay: 0s;
        }
        .shape-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 60%;
            right: -5%;
            animation-delay: 3s;
        }
        .shape-3 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #34d399, #10b981);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            bottom: 10%;
            left: 15%;
            animation-delay: 6s;
        }
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }
        /* Particle Effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            opacity: 0.6;
            animation: rise 15s infinite ease-in;
        }
        @keyframes rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100vh) scale(1);
                opacity: 0;
            }
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        /* Badge with Glow */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            padding: 0.65rem 1.15rem;
            border-radius: 50px;
            color: white;
            font-size: 0.775rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease, glow 2s infinite;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
            }
            50% {
                box-shadow: 0 0 40px rgba(251, 191, 36, 0.8);
            }
        }
        /* Animated Title */
        .hero-title {
            font-size: 3.15rem;
            color: white;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.2s both;
        }
        .hero-title .highlight {
            background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s linear infinite;
            position: relative;
        }
        @keyframes shimmer {
            to {
                background-position: 200% center;
            }
        }
        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.4s both;
        }
        /* Enhanced Scholarship Card */
        .scholarship-highlight {
    position: relative;
    background: linear-gradient(135deg,
        #1e3b8a02,
        #262726a4,
        #cacaca00);
    /* backdrop-filter: blur(20px); */
    border: 3px solid rgba(255, 255, 255, 0.35);
    border-radius: 28px;
    padding: 2.3rem 2.6rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* smooth and calm */
    box-shadow:
        0 15px 45px rgba(30, 58, 138, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.2) inset;
    cursor: pointer;
}
/* Gentle Hover - Very Light Lift */
.scholarship-highlight:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 65px rgba(30, 58, 138, 0.45),
        0 0 0 6px rgba(255, 255, 255, 0.28) inset;
}
/* Soft & Slow Shine Layer */
.scholarship-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 40%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 60%
    );
    transform: rotate(30deg);
    animation: softShine 6s linear infinite;   /* Slower = more comfortable */
    pointer-events: none;
    opacity: 0.6;
}
.scholarship-highlight:hover::before {
    animation-duration: 4s;
    opacity: 0.75;
}
/* Very Subtle Sparkle (Optional - can be removed if you find it distracting) */
.scholarship-highlight::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.6) 15%, transparent 70%);
    border-radius: 50%;
    opacity: 0.18;
    animation: softSparkle 7s ease-in-out infinite;
    pointer-events: none;
}
/* Content Styling - Clean & Comfortable */
.scholarship-highlight h4 {
    color: #ffffff;
    font-size: 1.72rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}
.scholarship-highlight:hover h4 {
    letter-spacing: -0.3px;
    /* Removed scale to keep it calm */
}
.scholarship-highlight p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
/* Optional Icon */
.scholarship-icon {
    position: absolute;
    top: 25px;
    right: 28px;
    font-size: 3.2rem;
    color: rgba(255, 255, 255, 0.75);
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
    transition: all 0.6s ease;
    z-index: 1;
}
.scholarship-highlight:hover .scholarship-icon {
    transform: scale(1.1);
    color: #fcd34d;
}
/* Gentle Keyframe Animations */
@keyframes softShine {
    0% {
        transform: translateX(-110%) translateY(-110%) rotate(30deg);
    }
    100% {
        transform: translateX(110%) translateY(110%) rotate(30deg);
    }
}
@keyframes softSparkle {
    0%, 100% { opacity: 0.15; transform: scale(0.9); }
    50%      { opacity: 0.28; transform: scale(1.15); }
}
/* Responsive */
@media (max-width: 768px) {
    .scholarship-highlight {
        padding: 1.9rem 2.1rem;
        border-radius: 24px;
    }
    .scholarship-highlight h4 {
        font-size: 1.55rem;
    }
}
        /* Enhanced CTA Buttons */
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        .cta-button.primary {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1f2937;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
        }
        .cta-button.primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .cta-button.primary:hover::before {
            width: 300px;
            height: 300px;
        }
        .cta-button.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
        }
        .cta-button.secondary {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }
        .cta-button span {
            position: relative;
            z-index: 1;
        }
        /* Ultra Modern Form */
        .modern-form-card {
            z-index: 5;
            background: rgba(255, 255, 255, 0.98);
            border-radius: 24px;
            padding: 2.5rem;
            backdrop-filter: blur(20px);
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 100px rgba(102, 126, 234, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            animation: fadeInRight 0.8s ease 0.6s both;
        }
        .modern-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
            background-size: 200% auto;
            animation: gradientMove 3s linear infinite;
        }
        @keyframes gradientMove {
            to {
                background-position: 200% center;
            }
        }
        .form-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .form-header h3 {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .form-header p {
            font-size: 0.95rem;
            color: #64748b;
        }
        .modern-input,
        .modern-select {
            width: 100%;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: #fff;
            margin-bottom: 1.25rem;
            font-family: 'Sora', sans-serif;
        }
        .modern-input:focus,
        .modern-select:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }
        .submit-button {
            width: 100%;
            padding: 1.1rem;
            border-radius: 12px;
            border: none;
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
            cursor: pointer;
            background: linear-gradient(135deg, #667eea, #764ba2);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: 'Space Grotesk', sans-serif;
        }
        .submit-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .submit-button:hover::before {
            width: 400px;
            height: 400px;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
        }
        .submit-button span {
            position: relative;
            z-index: 1;
        }
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .stats-row {
                flex-wrap: wrap;
            }
            .stat-item {
                flex-basis: calc(50% - 1rem);
            }
        }
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .modern-form-card {
                margin-top:25px;
                padding: 1.5rem;
            }
        }
        /* Stats Section */
         /* Enhanced Stats Section */
        .stats-section {
            padding: 6rem 0;
            background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        /* Animated Background Elements */
        .stats-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
            border-radius: 50%;
            animation: stats-float 20s infinite ease-in-out;
        }
        .stats-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            border-radius: 50%;
            animation: stats-float 15s infinite ease-in-out reverse;
        }
        @keyframes stats-float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }
        /* Section Header */
        .stats-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 2;
        }
        .stats-section .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            color: #667eea;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            border: 2px solid rgba(102, 126, 234, 0.2);
        }
        .stats-section .section-title {
            font-size: 2.75rem;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #764ba2;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .stats-section .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        /* Enhanced Stat Card */
        .stats-section .stat-card {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 2px solid rgba(102, 126, 234, 0.1);
            cursor: pointer;
        }
        /* Gradient Border Animation */
        .stats-section .stat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .stats-section .stat-card:hover::before {
            opacity: 1;
        }
        /* Shine Effect */
        .stats-section .stat-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }
        .stats-section .stat-card:hover::after {
            opacity: 1;
            left: 100%;
            top: 100%;
        }
        .stats-section .stat-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow:
                0 25px 50px rgba(102, 126, 234, 0.2),
                0 10px 20px rgba(0, 0, 0, 0.1);
        }
        /* Individual Card Colors */
        .stats-section .stat-card-1:hover { box-shadow: 0 25px 50px rgba(245, 158, 11, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1); }
        .stats-section .stat-card-2:hover { box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1); }
        .stats-section .stat-card-3:hover { box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1); }
        .stats-section .stat-card-4:hover { box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25), 0 10px 20px rgba(0, 0, 0, 0.1); }
        /* Stat Icon */
        .stats-section .stat-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.5rem;
            background: var(--gradient-primary);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            color: white;
            position: relative;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }
        .stats-section .stat-icon::before {
            content: '';
            position: absolute;
            inset: -5px;
            background: inherit;
            border-radius: 22px;
            filter: blur(15px);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        .stats-section .stat-card:hover .stat-icon {
            transform: scale(1.1);
        }
        .stats-section .stat-card:hover .stat-icon::before {
            opacity: 0.6;
            animation: stats-pulse 2s infinite;
        }
        @keyframes stats-pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 0.8; }
        }
        /* Icon Colors */
        .stats-section .stat-card-1 .stat-icon {
            background: var(--gradient-gold);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        }
        .stats-section .stat-card-2 .stat-icon {
            background: var(--gradient-blue);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }
        .stats-section .stat-card-3 .stat-icon {
            background: var(--gradient-green);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        }
        .stats-section .stat-card-4 .stat-icon {
            background: var(--gradient-purple);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }
        /* Stat Number with Counter Animation */
        .stats-section .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            position: relative;
            line-height: 1;
            transition: all 0.3s ease;
        }
        .stats-section .stat-card:hover .stat-number {
            transform: scale(1.05);
        }
        /* Gradient Text Colors */
        .stats-section .stat-card-1 .stat-number {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #764ba2;
            background-clip: text;
        }
        .stats-section .stat-card-2 .stat-number {
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #764ba2;
            background-clip: text;
        }
        .stats-section .stat-card-3 .stat-number {
            background: var(--gradient-green);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #764ba2;
            background-clip: text;
        }
        .stats-section .stat-card-4 .stat-number {
            background: var(--gradient-purple);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #764ba2;
            background-clip: text;
        }
        /* Stat Label */
        .stats-section .stat-label {
            color: var(--text-light);
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .stats-section .stat-card:hover .stat-label {
            color: var(--text-dark);
        }
        /* Stat Description */
        .stats-section .stat-description {
            font-size: 0.85rem;
            color: var(--text-light);
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            margin-top: 1rem;
            padding: 0.75rem 1rem;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }
        .stats-section .stat-card:hover .stat-description {
            opacity: 1;
            max-height: 100px;
        }
        /* Progress Bar */
        .stats-section .stat-progress {
            width: 100%;
            height: 6px;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 1rem;
            position: relative;
        }
        .stats-section .stat-progress-bar {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
            transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: 0;
            position: relative;
            overflow: hidden;
        }
        .stats-section .stat-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: stats-shimmer 2s infinite;
        }
        @keyframes stats-shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        .stats-section .stat-card-1 .stat-progress-bar { background: var(--gradient-gold); }
        .stats-section .stat-card-2 .stat-progress-bar { background: var(--gradient-blue); }
        .stats-section .stat-card-3 .stat-progress-bar { background: var(--gradient-green); }
        .stats-section .stat-card-4 .stat-progress-bar { background: var(--gradient-purple); }
        .stats-section .stat-card.aos-animate .stat-progress-bar {
            width: var(--progress-width, 100%);
        }
        /* Achievement Badge */
        .stats-section .achievement-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
            opacity: 0;
            transform: scale(0) rotate(-15deg);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .stats-section .stat-card:hover .achievement-badge {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
        /* Floating Particles */
        .stats-section .stat-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            pointer-events: none;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .stats-section .section-title {
                font-size: 2rem;
            }
            .stats-section .stat-number {
                font-size: 2.25rem;
            }
            .stats-section .stat-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }
            .stats-section .stat-card {
                padding: 2rem 1.5rem;
            }
        }
         .placement-hero {
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f1f5f9 100%);
            padding: 4rem 0;
            color: #1e293b;
            position: relative;
            overflow: hidden;
        }
        /* Animated Background Elements */
        .placement-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: placement-float 20s infinite ease-in-out;
        }
        .placement-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: placement-float 15s infinite ease-in-out reverse;
        }
        @keyframes placement-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 30px) scale(1.1); }
        }
        /* Floating Particles */
        .placement-hero .placement-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }
        .placement-hero .placement-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(124, 58, 237, 0.3);
            border-radius: 50%;
            animation: placement-particle-rise 15s infinite ease-in;
        }
        @keyframes placement-particle-rise {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) scale(1);
                opacity: 0;
            }
        }
        .placement-hero .container {
            position: relative;
            z-index: 2;
        }
        /* Left Content Section */
        .placement-hero .hero-content {
            padding-right: 2rem;
        }
        .placement-hero .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(124, 58, 237, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(124, 58, 237, 0.2);
            color: #7c3aed;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: placement-badge-pulse 2s infinite;
        }
        @keyframes placement-badge-pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.2); }
            50% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.4); }
        }
        .placement-hero h2 {
            font-size: 2.75rem;
            margin-bottom: 1.25rem;
            font-weight: 900;
            line-height: 1.2;
            animation: placement-fadeInUp 1s ease;
            color: #1e293b;
        }
        .placement-hero .highlight-text {
            background: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: placement-shimmer 3s linear infinite;
        }
        @keyframes placement-shimmer {
            to { background-position: 200% center; }
        }
        .placement-hero .hero-description {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            animation: placement-fadeInUp 1s ease 0.2s both;
        }
        /* Enhanced Placement Card */
        .placement-hero .placement-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(124, 58, 237, 0.15);
            border-radius: 30px;
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
        }
        /* Animated Top Border */
        .placement-hero .placement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
            background-size: 200% auto;
            animation: placement-shimmer 3s linear infinite;
        }
        /* Glow Effect */
        .placement-hero .placement-card::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            border-radius: 30px;
            opacity: 0;
            z-index: -1;
            filter: blur(20px);
            transition: opacity 0.5s ease;
        }
        .placement-hero .placement-card:hover::after {
            opacity: 0.3;
            animation: placement-glow-pulse 2s infinite;
        }
        @keyframes placement-glow-pulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }
        .placement-hero .placement-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(124, 58, 237, 0.25);
        }
        /* Student Image */
        .placement-hero .placement-student-img-wrapper {
            position: relative;
            width: 250px;
            height: 250px;
            margin: 0 auto 1.5rem;
        }
        .placement-hero .placement-student-img-wrapper::before {
            content: '';
            position: absolute;
            inset: -8px;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            border-radius: 50%;
            animation: placement-rotate 3s linear infinite;
            z-index: -1;
        }
        @keyframes placement-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .placement-hero .placement-student-img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            border: 4px solid #ffffff;
            object-fit: cover;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        .placement-hero .placement-card:hover .placement-student-img {
            transform: scale(1.05);
        }
        /* Achievement Badge on Image */
        .placement-hero .achievement-badge {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
            animation: placement-badge-bounce 2s infinite;
            border: 3px solid #ffffff;
        }
        @keyframes placement-badge-bounce {
            0%, 100% { transform: scale(1) translateY(0); }
            50% { transform: scale(1.1) translateY(-5px); }
        }
        /* Student Name */
        .placement-hero .placement-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            font-weight: 800;
            color: #1e293b;
        }
        /* Package Amount */
        .placement-hero .package-amount {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
            animation: placement-shimmer 3s linear infinite;
            position: relative;
        }
        /* Sparkle Effect */
        .placement-hero .package-sparkle {
            position: absolute;
            width: 16px;
            height: 16px;
            background: #7c3aed;
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            opacity: 0;
            animation: placement-sparkle 2s infinite;
        }
        .placement-hero .package-sparkle:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        .placement-hero .package-sparkle:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 0.5s;
        }
        .placement-hero .package-sparkle:nth-child(3) {
            bottom: 15%;
            left: 20%;
            animation-delay: 1s;
        }
        @keyframes placement-sparkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }
            50% {
                opacity: 1;
                transform: scale(1) rotate(180deg);
            }
        }
        /* Company Name */
        .placement-hero .company-name {
            font-size: 1.15rem;
            color: #64748b;
            font-weight: 700;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .placement-hero .company-icon {
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        /* Testimonial */
        .placement-hero .testimonial {
            background: rgba(124, 58, 237, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(124, 58, 237, 0.1);
            border-radius: 16px;
            padding: 1.25rem;
            margin-top: 1.25rem;
            position: relative;
            font-style: italic;
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .placement-hero .testimonial::before {
            content: '"';
            position: absolute;
            top: -5px;
            left: 15px;
            font-size: 3rem;
            color: rgba(124, 58, 237, 0.2);
            font-family: Georgia, serif;
        }
        /* Confetti Animation */
        .placement-hero .confetti {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #7c3aed;
            animation: placement-confetti 3s infinite;
        }
        @keyframes placement-confetti {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(500px) rotate(360deg);
                opacity: 0;
            }
        }
        /* Responsive Animations */
        @keyframes placement-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .placement-hero {
                padding: 3rem 0;
            }
            .placement-hero h2 {
                font-size: 2.25rem;
            }
            .placement-hero .package-amount {
                font-size: 3rem;
            }
            .placement-hero .placement-card {
                margin-top: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .placement-hero {
                padding: 3rem 0;
            }
            .placement-hero h2 {
                font-size: 2rem;
            }
            .placement-hero .package-amount {
                font-size: 2.5rem;
            }
            .placement-hero .placement-student-img-wrapper,
            .placement-hero .placement-student-img {
                width: 130px;
                height: 130px;
            }
            .placement-hero .placement-card {
                padding: 2rem 1.5rem;
            }
        }
        /* Company Logos */
        .companies-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fdfdfd 0%, #f8fafc 50%, #fdfdfd 100%);
    position: relative;
    overflow: hidden;
}
/* Animated Background */
.companies-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: companies-float 20s infinite ease-in-out;
}
.companies-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: companies-float 15s infinite ease-in-out reverse;
}
@keyframes companies-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
}
.companies-section .container {
    position: relative;
    z-index: 2;
}
/* Section Header */
.companies-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: companies-fadeInDown 1s ease;
}
.companies-section .section-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.companies-section .gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.companies-section .section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 0;
}
/* Carousel Wrapper */
.companies-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}
/* Carousel Container */
.companies-section .companies-carousel {
    overflow: hidden;
    padding: 2rem 0;
    flex: 1;
}
.companies-section .carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Carousel Navigation Buttons */
.carousel-btn {
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #667eea;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}
.carousel-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}
.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
/* Company Card - Modern Design */
.companies-section .company-card {
    min-width: 200px;
    height: 150px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(102, 126, 234, 0.1);
    flex-shrink: 0;
}
/* Gradient Border on Hover */
.companies-section .company-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.companies-section .company-card:hover::before {
    opacity: 1;
}
.companies-section .company-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}
.companies-section .company-card img {
    padding-top: 25px;
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%) opacity(0.9);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}
.companies-section .company-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
.companies-section .company-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 0.75rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.companies-section .company-card:hover .company-name {
    opacity: 1;
    transform: translateY(0);
}
/* Tier Badges */
.companies-section .tier-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}
.companies-section .company-card:hover .tier-badge {
    opacity: 1;
    transform: scale(1);
}
/* Carousel Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 30px;
    border-radius: 6px;
}
.carousel-dot:hover {
    background: rgba(102, 126, 234, 0.6);
}
/* Animations */
@keyframes companies-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 992px) {
    .companies-section {
        padding: 4rem 0;
    }
    .companies-section .section-header h2 {
        font-size: 2.25rem;
    }
    .companies-section .company-card {
        min-width: 180px;
    }
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .companies-section {
        padding: 3rem 0;
    }
    .companies-section .section-header h2 {
        font-size: 2rem;
    }
    .companies-section .company-card {
        min-width: 160px;
        height: 130px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .companies-carousel-wrapper {
        gap: 1rem;
    }
}
@media (max-width: 576px) {
    .companies-section .company-card {
        min-width: 140px;
        height: 120px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}
        /* Courses Section */
        .courses-modern {
            padding: 5rem 0;
            background: linear-gradient(to bottom, #eeecec, #ffffff );
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .section-header h2 .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-header p {
            color: var(--text-light);
            font-size: 1.125rem;
        }
        .course-tabs-modern {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .course-tab {
            padding: 0.75rem 2rem;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .course-tab.active, .course-tab:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        .course-card-modern {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .course-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        .course-card-modern:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        .course-card-modern:hover::before {
            transform: scaleY(1);
        }
        .course-card-modern h3 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .course-card-modern p {
            color: var(--text-light);
            line-height: 1.6;
        }
        /* Achievements */
        .achievements-modern {
            padding: 5rem 0;
            background: var(--light-bg);
        }
        .achievement-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .achievement-item {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }
        .achievement-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .achievement-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
        }
        .achievement-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .achievement-item h3 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .achievement-item p {
            color: var(--text-light);
            line-height: 1.6;
        }
        /* Infrastructure */
        .infrastructure-modern {
            padding: 5rem 0;
            background: var(--dark-bg);
            color: white;
            position: relative;
        }
        .infra-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .infra-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 350px;
        }
        .infra-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .infra-item:hover img {
            transform: scale(1.1);
        }
        .infra-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
            transform: translateY(80%);
            transition: transform 0.3s ease;
        }
        .infra-item:hover .infra-overlay {
            transform: translateY(0);
        }
        .infra-overlay h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        .infra-overlay p {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        /* Testimonials */
         .testimonials-modern {
            padding: 5rem 0;
            background: #f8fafc;
            position: relative;
        }
        .testimonials-modern .container {
            max-width: 1400px;
        }
        /* Section Header */
        .testimonials-modern .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .testimonials-modern .section-header h2 {
            font-size: 2.75rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 900;
        }
        .testimonials-modern .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .testimonials-modern .section-header p {
            color: var(--text-light);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
        }
        /* Swiper Container */
        .testimonials-modern .testimonials-slider {
            position: relative;
            padding: 2rem 0;
        }
        .testimonials-modern .swiper {
            width: 100%;
            padding: 1rem;
        }
        /* Clean Testimonial Card */
        .testimonials-modern .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        .testimonials-modern .testimonial-card:hover {
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-5px);
        }
        /* Top Section - Image & Info */
        .testimonials-modern .testimonial-top {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid #f1f5f9;
        }
        .testimonials-modern .student-image {
            width: 75px;
            height: 75px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
            border: 3px solid #f1f5f9;
        }
        .testimonials-modern .student-details {
            flex: 1;
        }
        .testimonials-modern .student-name {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
            line-height: 1.3;
        }
        .testimonials-modern .student-role {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        .testimonials-modern .company-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: var(--primary-color);
            font-weight: 600;
            background: rgba(37, 99, 235, 0.08);
            padding: 0.3rem 0.75rem;
            border-radius: 6px;
        }
        /* Package Display */
        .testimonials-modern .package-display {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
            border-left: 3px solid var(--success-color);
            padding: 0.75rem 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        .testimonials-modern .package-display i {
            color: var(--success-color);
            font-size: 1.1rem;
        }
        .testimonials-modern .package-amount {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--success-color);
            line-height: 1;
        }
        .testimonials-modern .package-label {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        /* Testimonial Quote */
        .testimonials-modern .quote-text {
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            flex: 1;
            position: relative;
        }
        .testimonials-modern .quote-text::before {
            content: '"';
            font-size: 3rem;
            color: rgba(37, 99, 235, 0.1);
            font-family: Georgia, serif;
            position: absolute;
            left: -1rem;
            top: -1rem;
            line-height: 1;
        }
        /* Rating */
        .testimonials-modern .rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
        }
        .testimonials-modern .stars {
            display: flex;
            gap: 0.2rem;
        }
        .testimonials-modern .stars i {
            color: #fbbf24;
            font-size: 0.9rem;
        }
        .testimonials-modern .rating-text {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 600;
        }
        /* Navigation Buttons - Clean Style */
        .testimonials-modern .slider-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        .testimonials-modern .nav-button {
            width: 45px;
            height: 45px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-dark);
        }
        .testimonials-modern .nav-button:hover {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        .testimonials-modern .nav-button.swiper-button-disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        /* Pagination - Clean Dots */
        .testimonials-modern .swiper-pagination {
            position: relative;
            margin-top: 2rem;
        }
        .testimonials-modern .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #cbd5e1;
            opacity: 1;
            transition: all 0.3s ease;
        }
        .testimonials-modern .swiper-pagination-bullet-active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 5px;
        }
        /* Verified Badge */
        .testimonials-modern .verified-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: rgba(16, 185, 129, 0.1);
            color: var(--success-color);
            padding: 0.4rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .testimonials-modern .verified-badge i {
            font-size: 0.9rem;
        }
        /* Responsive */
        @media (max-width: 992px) {
            .testimonials-modern {
                padding: 4rem 0;
            }
            .testimonials-modern .section-header h2 {
                font-size: 2.25rem;
            }
            .testimonials-modern .testimonial-card {
                padding: 2rem;
            }
        }
        @media (max-width: 768px) {
            .testimonials-modern {
                padding: 3rem 0;
            }
            .testimonials-modern .section-header h2 {
                font-size: 2rem;
            }
            .testimonials-modern .testimonial-top {
                flex-direction: column;
                text-align: center;
            }
            .testimonials-modern .student-image {
                width: 70px;
                height: 70px;
            }
            .testimonials-modern .package-amount {
                font-size: 1.25rem;
            }
        }
        /* Footer */
        .modern-footer {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            text-align: center;
        }
        .footer-content p {
            margin: 0.5rem 0;
            opacity: 0.8;
        }
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        /* Floating Animation */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .modern-header {
                padding: 0.75rem 0;
            }
            .header-content {
                padding: 0 1rem;
            }
            .accreditation-badges {
                display: none;
            }
            .stat-number {
                font-size: 2rem;
            }
            .package-amount {
                font-size: 2.5rem;
            }
            .section-header h2 {
                font-size: 2rem;
            }
        }
        /* Credit Card Section */
        .credit-card-section {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            padding: 3rem;
            border-radius: 24px;
            color: white;
            margin-top: 3rem;
        }
        .credit-logos {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .credit-logos img {
            height: 50px;
            background: white;
            padding: 0.5rem;
            border-radius: 10px;
        }
        .credit-card-section h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }
        .credit-card-section p {
            opacity: 0.95;
            line-height: 1.6;
        }
        /* Pulse animation for CTA */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
            }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        /* CTC */
         .ctc-highlight-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.13rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e2937 50%, #334155 100%);
    padding: 1.35rem 2.14rem;
    border-radius: 22px;
    margin-bottom: 2rem;
    box-shadow:
        0 20px 60px rgba(234, 179, 8, 0.45),
        0 0 0 3px rgba(255, 255, 255, 0.3) inset,
        0 0 50px rgba(234, 179, 8, 0.35);
    overflow: hidden;
    border: 2px solid rgba(234, 179, 8, 0.4);
    cursor: default; /* changed from pointer since it's now automatic */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: gentleFloat 4s ease-in-out infinite;
    user-select: none;
}
/* Hover still feels premium */
.ctc-highlight-badge:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(234, 179, 8, 0.55),
        0 0 0 4px rgba(255, 255, 255, 0.35) inset;
}
/* Automatic "Move Away" Animation */
.ctc-highlight-badge.fly-away {
    animation: flyAwayAuto 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* Return to position smoothly */
.ctc-highlight-badge.return {
    animation: returnToPosition 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* Icon & Content */
.ctc-icon {
    font-size: 3.1rem;
    color: #fbbf24;
    filter: drop-shadow(0 4px 10px rgba(234, 179, 8, 0.5));
    transition: all 0.5s ease;
}
.ctc-highlight-badge:hover .ctc-icon {
    transform: scale(1.12) rotate(15deg);
}
.ctc-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.ctc-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #fcd34d;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.ctc-amount {
    font-size: 2.15rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -1.5px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.ctc-year {
    font-size: 0.78rem;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Shine Effect */
.ctc-shine {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(
        135deg,
        transparent 35%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 65%
    );
    animation: shine 4s linear infinite;
    pointer-events: none;
}
/* Animations */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes flyAwayAuto {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    60%  { transform: translate(-90px, -70px) rotate(-22deg) scale(1.08); }
    100% { transform: translate(110px, 50px) rotate(28deg) scale(0.88); opacity: 0.75; }
}
@keyframes returnToPosition {
    from { transform: translate(110px, 50px) rotate(28deg) scale(0.88); opacity: 0.75; }
    to   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
}
@keyframes shine {
    0%   { transform: translateX(-100%) translateY(-100%) rotate(40deg); }
    100% { transform: translateX(120%) translateY(120%) rotate(40deg); }
}
/* Responsive */
@media (max-width: 768px) {
    .ctc-highlight-badge {
        padding: 1.1rem 1.8rem;
        gap: 1rem;
        border-radius: 18px;
    }
    .ctc-icon {
        font-size: 2.5rem;
    }
    .ctc-amount {
        font-size: 2rem;
    }
}
