/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    overflow-x: hidden;
}

/* Common Utility Classes */
.gradient-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.25);
}

/* Animations */
.animate-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 1s ease-out forwards;
}

.chart-fade-in {
    animation: chartFadeIn 1.2s ease-out forwards;
    opacity: 0;
}

.scale-up {
    animation: scaleUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes chartFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.glow {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.gradient-text {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Header Styles */
.header-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 6px 0; /* Adjust to maintain header height */
}

.logo {
    width: 320px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 15px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1px;
}
.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.9;
}

/* Program Cards */
.program-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-gradient-1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.card-gradient-2 {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.card-gradient-3 {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

/* Mobile Navigation */
.nav-links-mobile {
    display: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-links-mobile.active {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Chart Styles */
.chart-container {
    position: relative;
    height: 200px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.stat-card canvas {
    display: block;
    margin: 0 auto;
    max-height: 200px;
}

/* Square card styles */
.square-card {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Form styling */
.form-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

 /* Form elements */
        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        
        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            background-color: white;
        }
        
        .form-select:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        
        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            resize: vertical;
            min-height: 100px;
        }
        
        .form-textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }
        
        .form-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .form-btn-primary {
            background: #3b82f6;
            color: white;
            border: none;
        }
        
        .form-btn-primary:hover {
            background: #2563eb;
        }
        
        .form-btn-secondary {
            background: #f1f5f9;
            color: #64748b;
            border: 1px solid #cbd5e1;
        }
        
        .form-btn-secondary:hover {
            background: #e2e8f0;
        }
        
        .success-message {
            text-align: center;
            padding: 2rem;
        }
        
        .success-icon {
            font-size: 4rem;
            color: #10b981;
            margin-bottom: 1rem;
        }
        
        .success-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        
        .success-message-text {
            color: #64748b;
            margin-bottom: 1.5rem;
        }
        
        /* Progress bar */
        .progress-container {
            width: 100%;
            background-color: #e2e8f0;
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        
        .progress-bar {
            height: 10px;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            border-radius: 10px;
            transition: width 0.4s ease;
        }
        
        /* Form step animation */
        .form-step {
            display: none;
            animation: fadeIn 0.5s ease-out forwards;
        }
        
        .form-step.active {
            display: block;
        }

/* Carousel styles */
.carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px;
    text-align: center;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.bg-white {
    transition: all 0.5s ease-in-out;
}


.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.active {
    background: white;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* New MBA section styles */
.mba-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 1.5rem;
    overflow: hidden;
}

.ranking-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ranking-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.ranking-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ranking-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Announcement banner */
.announcement-banner {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.announcement-banner .marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(50%); }
    100% { transform: translateX(-100%); }
}

/* About VIT section */
.about-vit {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

/* VITOL Advantage section */
.advantage-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Quick Links section */
.quick-links {
    background: #f8fafc;
}

/* Contact section */
.contact-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.4s ease;
    position: relative;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #1e293b;
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-btn-primary {
    background: #3b82f6;
    color: white;
    border: none;
}

.modal-btn-primary:hover {
    background: #2563eb;
}

.modal-btn-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.modal-btn-secondary:hover {
    background: #e2e8f0;
}

.modal-success {
    text-align: center;
    padding: 2rem;
}

.modal-success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.modal-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.modal-success-message {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Updated styles for program cards */
.program-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.program-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-card-body {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-card-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.program-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.program-card-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.program-card-footer {
    margin-top: auto;
}

/* Updated styles for accreditation badges */
.accreditation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.accreditation-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.accreditation-content {
    flex-grow: 1;
}

.accreditation-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.accreditation-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* Header Styles */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Mobile: Logo left, hamburger right */
@media (max-width: 768px) {
    .header-nav {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo-container {
        order: 1;
    }
    
    .hamburger-container {
        order: 2;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
    }
}

/* Desktop: Logo left, navigation right */
@media (min-width: 769px) {
    .header-nav {
        justify-content: space-between;
    }
    
    .logo-container {
        margin-right: auto;
    }
    
    .nav-container {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

/* Mobile Navigation Menu */
.nav-links-mobile {
    display: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-links-mobile.active {
    display: block;
}

/* Ensure header has relative positioning for mobile menu */
header {
    position: relative;
}

/* MBA Page Specific Styles */
.futuristic-bg {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.cyber-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.cyber-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.cyber-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.neon-gradient {
    background: linear-gradient(90deg, #ff6b9d, #a855f7, #4f46e5);
}

.hologram-effect {
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: hologram 3s infinite linear;
}

@keyframes hologram {
    0% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.cyber-border {
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(45deg, #ffffff, #ffffff), 
                linear-gradient(135deg, #ff6b9d, #a855f7, #4f46e5);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

.matrix-bg {
    position: relative;
    overflow: hidden;
}

.matrix-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 70%, rgba(167, 139, 250, 0.1) 90%, transparent),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(167, 139, 250, 0.05) 3px, rgba(167, 139, 250, 0.05) 4px);
    z-index: -1;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff6b9d;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 1px 0 #a855f7;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(85px, 9999px, 72px, 0); }
    50% { clip: rect(71px, 9999px, 75px, 0); }
    55% { clip: rect(2px, 9999px, 48px, 0); }
    60% { clip: rect(30px, 9999px, 16px, 0); }
    65% { clip: rect(59px, 9999px, 50px, 0); }
    70% { clip: rect(41px, 9999px, 62px, 0); }
    75% { clip: rect(2px, 9999px, 82px, 0); }
    80% { clip: rect(47px, 9999px, 73px, 0); }
    85% { clip: rect(3px, 9999px, 27px, 0); }
    90% { clip: rect(26px, 9999px, 55px, 0); }
    95% { clip: rect(42px, 9999px, 97px, 0); }
    100% { clip: rect(38px, 9999px, 49px, 0); }
}

.floating-3d {
    transform-style: preserve-3d;
    animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {
    0%, 100% { transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0); }
    33% { transform: translate3d(10px, -10px, 10px) rotate3d(1, 1, 0, 5deg); }
    66% { transform: translate3d(-5px, 5px, -5px) rotate3d(0, 1, 1, 3deg); }
}

.particle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.neon-glow {
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.3),
                0 0 20px rgba(102, 126, 234, 0.2),
                0 0 30px rgba(102, 126, 234, 0.1);
}

.holographic-card {
    position: relative;
    overflow: hidden;
}

.holographic-card::before {
    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);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cyber-button {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cyber-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: 0.5s;
}

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.neuro-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        inset 3px 3px 5px rgba(255, 255, 255, 0.5),
        inset -3px -3px 5px rgba(167, 139, 250, 0.1),
        5px 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.neuro-card:hover {
    box-shadow: 
        inset 3px 3px 5px rgba(255, 255, 255, 0.5),
        inset -3px -3px 5px rgba(167, 139, 250, 0.1),
        10px 10px 20px rgba(0, 0, 0, 0.1);
}

.matrix-text {
    font-family: 'Orbitron', monospace;
    color: #4f46e5;
    text-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cyber-input {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
    color: #1a1a2e;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cyber-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.scan-line {
    position: relative;
    overflow: hidden;
}

.scan-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4f46e5, transparent);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.morphing-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(167, 139, 250, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(167, 139, 250, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 130%; height: 130%; opacity: 0; }
}

.digital-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 70%, rgba(167, 139, 250, 0.05) 90%, transparent),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(167, 139, 250, 0.03) 3px, rgba(167, 139, 250, 0.03) 4px);
    z-index: -1;
    opacity: 0.3;
}

.quantum-card {
    position: relative;
    overflow: hidden;
}

.quantum-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b9d, #a855f7, #4f46e5, #4f46e5, #a855f7, #ff6b9d);
    background-size: 400%;
    z-index: -1;
    border-radius: 16px;
    animation: quantum-glow 8s linear infinite;
}

@keyframes quantum-glow {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.hologram-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hologram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.5s;
}

.hologram-card:hover::before {
    left: 100%;
}

.data-stream {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 70%, rgba(167, 139, 250, 0.05) 90%, transparent),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(167, 139, 250, 0.03) 3px, rgba(167, 139, 250, 0.03) 4px);
    z-index: -1;
    opacity: 0.3;
    animation: data-flow 10s linear infinite;
}

@keyframes data-flow {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* Interactive Book Styles */
.book-container {
    perspective: 1500px;
    width: 300px;
    height: 400px;
    margin: 0 auto;
}

.book {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: left center;
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 10px 20px 20px 10px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    backface-visibility: hidden;
    cursor: pointer;
}

.book-cover h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.book-cover p {
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.8;
}

.book-pages {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 0 10px 10px 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    padding: 20px;
    overflow-y: auto;
}

.book-pages h4 {
    color: #4f46e5;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.book-pages ul {
    list-style-type: none;
}

.book-pages li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.book-pages li:before {
    content: "•";
    color: #a855f7;
    position: absolute;
    left: 0;
}

.book-container:hover .book {
    transform: rotateY(-30deg);
}

/* Glowing MBA Icon */
.mba-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mba-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.mba-icon:hover {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
    transform: scale(1.05);
}

.mba-icon:hover::before {
    opacity: 1;
    animation: icon-glow 2s infinite;
}

@keyframes icon-glow {
    0% { transform: rotate(45deg) translateX(-100%) translateY(-100%); }
    100% { transform: rotate(45deg) translateX(100%) translateY(100%); }
}

/* Section Backgrounds */
.section-light {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.section-accent {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
}

.hero-section {
    background: url('img/vit_hero.png'); /* Removed blue overlay */
    background-size: cover;
    background-position: center;
    min-height: 54vh; /* Reduced by 40% from 90vh */
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* 30% black overlay */
    z-index: 0;
}

.hero-section * {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2rem;
}

.hero-text {
    color: white;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-feature i {
    color: #60a5fa;
    font-size: 1.25rem;
}

.hero-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem; /* Reduced padding */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 400px; /* Reduced width */
    margin-left: auto; /* Push to right side */
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    text-align: center;
}

.form-group {
    margin-bottom: 0.8rem; /* Reduced margin */
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.6rem 1rem; /* Reduced padding */
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.phone-input-group {
    display: flex;
}

.country-code {
    width: 30%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.phone-number {
    width: 70%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.no-surname {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.no-surname input {
    width: auto;
}

.no-surname label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem; /* Reduced margin */
    line-height: 1.4;
}

.form-button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.form-button:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Specializations Section */
.specializations-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.section-title p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialization-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.specialization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.specialization-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.specialization-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.specialization-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
}

.specialization-list {
    list-style-type: none;
}

.specialization-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specialization-list li:last-child {
    border-bottom: none;
}

.specialization-list li i {
    color: #10b981;
    font-size: 0.875rem;
}

/* New Section Styles */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.icon-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.1);
}

.icon-img img {
    max-width: 50px;
    max-height: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.scholarship-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.scholarship-table th, .scholarship-table td {
    border: 1px solid #e5e7eb;
    padding: 1rem;
    text-align: left;
}

.scholarship-table th {
    background-color: #f8faff;
    font-weight: 600;
}

.scholarship-table tr:nth-child(even) {
    background-color: #f9fafb;
}

.job-function-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.job-function {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
}

.job-function:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.company-logo {
    height: 60px;
    display: flex;
    align-items: center;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.company-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.company-logo img {
    max-height: 100%;
    max-width: 150px;
}

.programme-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    text-align: center;
}

.module-list {
    list-style-type: none;
}

.module-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.module-list li:last-child {
    border-bottom: none;
}

.module-list li i {
    color: #4f46e5;
    font-size: 0.875rem;
}

/* Case Study Carousel Styles */
.case-study-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    animation: carousel-scroll 30s linear infinite;
}

.carousel-item {
    flex: 0 0 200px;
    height: 100%;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

@keyframes carousel-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.coordinator-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.coordinator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coordinator-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #eef2ff;
}

.coordinator-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8faff;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #eef2ff;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* Logo Grid Styles */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Combined Section Styles */
.combined-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.combined-content {
    max-width: 1200px;
    margin: 0 auto;
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.combined-left {
    padding-right: 2rem;
}

.combined-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* NEW: FAQ Flip Cards Section */
.faq-flip-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.faq-flip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-flip-card {
    background: transparent;
    perspective: 1000px;
    height: 250px;
}

.faq-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.faq-flip-card.flipped .faq-flip-card-inner {
    transform: rotateY(180deg);
}

.faq-flip-card-front, .faq-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-flip-card-front {
    background: white;
    color: #1e3a8a;
    border: 1px solid #e5e7eb;
}

.faq-flip-card-back {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: rotateY(180deg);
    overflow-y: auto;
}

.faq-flip-card-question {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-flip-card-answer {
    font-size: 0.875rem;
    line-height: 1.5;
}

.faq-flip-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
}

.faq-flip-card-back .faq-flip-card-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-flip-card-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4f46e5;
}

.faq-flip-card-back .faq-flip-card-icon {
    color: white;
}

/* Accreditation Card Styles */
.accreditation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.accreditation-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.accreditation-text {
    color: #4b5563;
    line-height: 1.6;
}

/* Additional Utility Classes */
.icon-bg {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* NEW: Tools Cards Section */
.tools-cards-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.tools-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-card-header {
    width: 100%;
    margin-bottom: 1rem;
}

.tool-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.tool-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.tool-card-body {
    width: 100%;
}

.tool-card-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Market Landscape Section */
.market-landscape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.market-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.market-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.1);
}

.market-icon i {
    font-size: 2rem;
    color: #4f46e5;
}

/* Career Growth Section */
.career-growth-section {
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    padding: 5rem 2rem;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.career-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.career-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

/* Tools Covered Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 12px;
}

.tool-icon i {
    font-size: 1.5rem;
    color: #4f46e5;
}

/* Programme Outcomes Section */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.outcome-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.outcome-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.outcome-content {
    flex: 1;
}

.outcome-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.outcome-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Glowing MCA Icon */
.mca-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mca-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.mca-icon:hover {
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
    transform: scale(1.05);
}

.mca-icon:hover::before {
    opacity: 1;
    animation: icon-glow 2s infinite;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header and Navigation */
    .header-nav {
        flex-direction: row;
        align-items: center;
    }
    
    .nav-links-mobile a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
    }
    
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Logo */
    .logo {
        width: 200px;
        height: 50px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    /* Program Cards */
    .program-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .square-card {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    /* MBA Section */
    .mba-section {
        padding: 1.5rem;
    }
    
    .mba-section h1 {
        font-size: 2rem;
    }
    
    .ranking-card {
        padding: 1rem;
    }
    
    .ranking-number {
        font-size: 1.8rem;
    }
    
    /* Form Container */
    .form-container {
        flex-direction: column;
    }
    
    .form-container > div {
        width: 100%;
    }
    
    /* Carousel */
    .carousel {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 15px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    /* Analytics Section */
    .chart-container {
        height: 150px;
    }
    
    /* Advantage Cards */
    .advantage-card {
        padding: 1.5rem;
    }
    
    /* Quick Links */
    .quick-links .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    footer .flex.space-x-4 {
        justify-content: center;
    }
    
    footer .flex.items-center {
        justify-content: center;
    }
    
    /* General Text Adjustments */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
    
    /* Padding adjustments */
    .py-16 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Grid adjustments */
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    /* MBA Page Specific Mobile Styles */
    .header-gradient .flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-gradient .hidden.md\\:flex {
        display: none;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .book-container {
        width: 200px;
        height: 280px;
    }
    
    .mba-icon {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
    
    .ranking-number {
        font-size: 1.5rem;
    }
    
    .ranking-description {
        font-size: 0.75rem;
    }
    
    .cyber-card {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .chart-container {
        height: 160px;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .specializations-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-form {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .combined-right {
        grid-template-columns: 1fr;
    }
    
    .faq-flip-grid {
        grid-template-columns: 1fr;
    }
    
    .combined-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .combined-left {
        padding-right: 0;
    }
    
    /* NEW: Responsive tools cards */
    .tools-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tool-card-image {
        height: 100px;
    }
    
    /* NEW: Responsive FAQ flip cards */
    .faq-flip-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .book-container {
        width: 260px;
        height: 340px;
    }
    
    .mba-icon {
        width: 100px;
        height: 100px;
        font-size: 1.8rem;
    }
    
    .ranking-number {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .combined-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .combined-left {
        padding-right: 0;
    }
    
    /* NEW: Responsive tools cards */
    .tools-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* NEW: Responsive FAQ flip cards */
    .faq-flip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive Typography */
    .text-5xl {
        font-size: 3rem;
    }
    
    .text-4xl {
        font-size: 2.5rem;
    }
    
    .text-3xl {
        font-size: 2rem;
    }
    
    .text-2xl {
        font-size: 1.75rem;
    }
    
    .text-xl {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    /* Further adjustments for very small screens */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .square-card {
        height: 280px;
    }
    
    .carousel {
        height: 250px;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .quick-links .grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-banner .marquee {
        font-size: 0.9rem;
    }
    
    /* MBA Page Specific Small Screen Styles */
    .book-container {
        width: 180px;
        height: 250px;
    }
    
    .mba-icon {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
    
    .ranking-number {
        font-size: 1.3rem;
    }
    
    .ranking-description {
        font-size: 0.7rem;
    }
    
    .cyber-card {
        padding: 0.8rem;
    }
    
    .stat-card {
        padding: 0.6rem;
    }
    
    .chart-container {
        height: 140px;
    }
    
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    /* NEW: Responsive tools cards */
    .tools-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-card-image {
        height: 90px;
    }
    
    /* Responsive Typography */
    .text-5xl {
        font-size: 2rem;
    }
    
    .text-4xl {
        font-size: 1.75rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
    }
    
    .text-2xl {
        font-size: 1.25rem;
    }
    
    .text-xl {
        font-size: 1rem;
    }
    
    /* Responsive Spacing */
    .py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-16 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .py-12 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .pt-32 {
        padding-top: 1.5rem;
    }
    
    .pb-20 {
        padding-bottom: 1.5rem;
    }
    
    .mb-16 {
        margin-bottom: 1.5rem;
    }
    
    .mb-8 {
        margin-bottom: 0.75rem;
    }
    
    .mb-6 {
        margin-bottom: 0.5rem;
    }
    
    .mb-4 {
        margin-bottom: 0.25rem;
    }
    
    /* Responsive Grid Gaps */
    .gap-12 {
        gap: 1.5rem;
    }
    
    .gap-8 {
        gap: 1rem;
    }
    
    .gap-6 {
        gap: 0.75rem;
    }
    
    .gap-4 {
        gap: 0.5rem;
    }
}

/* Mobile Navigation */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-12 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .pt-32 {
        padding-top: 2rem;
    }
    
    .pb-20 {
        padding-bottom: 2rem;
    }
    
    .mb-16 {
        margin-bottom: 2rem;
    }
    
    .mb-8 {
        margin-bottom: 1rem;
    }
    
    .mb-6 {
        margin-bottom: 0.75rem;
    }
    
    .mb-4 {
        margin-bottom: 0.5rem;
    }
}

/* Responsive Grid Gaps */
@media (max-width: 768px) {
    .gap-12 {
        gap: 2rem;
    }
    
    .gap-8 {
        gap: 1.5rem;
    }
    
    .gap-6 {
        gap: 1rem;
    }
    
    .gap-4 {
        gap: 0.75rem;
    }
}