* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* --- HEADER STYLES --- */
.header {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
}

.logo {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 4px;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.logo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 100%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.85) 50%, 
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    animation: lightSlide 2.5s infinite linear;
    pointer-events: none;
}

@keyframes lightSlide {
    0% { left: -150%; }
    100% { left: 150%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #0056b3;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: #0056b3;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #0056b3, #0088ff);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.25);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #004085, #0069d9);
    box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 79px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        border-top: 1px solid #eaeaea;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }
    .nav-menu.active { left: 0; }
}

/* --- FAQ INFOGRAPHIC STYLES --- */
.async-section-safe {
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    max-width: 950px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.async-section-safe * {
    box-sizing: border-box;
}

.async-section-safe .async-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.async-section-safe .path-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 3;
    stroke-dasharray: 6 6;
}

.async-section-safe .path-glow {
    fill: none;
    stroke: url(#lineGradientSafe);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 80 400;
    animation: flowAnimationSafe 4s linear infinite;
}

@keyframes flowAnimationSafe {
    0% { stroke-dashoffset: 480; }
    100% { stroke-dashoffset: 0; }
}

.async-section-safe .async-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    z-index: 2;
}

.async-section-safe .async-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.async-section-safe .async-card {
    width: 43%;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(28, 49, 129, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.async-section-safe .async-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(28, 49, 129, 0.1);
    border-color: #1C3181;
}

.async-section-safe .async-title-box {
    width: 45%;
    padding: 10px;
}

.async-section-safe .async-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(28, 49, 129, 0.08);
    color: #1C3181;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.async-section-safe .async-title {
    font-size: 28px;
    font-weight: 800;
    color: #1C3181;
    line-height: 1.2;
    margin-bottom: 8px;
}

.async-section-safe .async-title span {
    color: #1C3181;
    background: #FAF35C;
    padding: 0 6px;
    border-radius: 6px;
    display: inline-block;
}

.async-section-safe .async-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.async-section-safe .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.async-section-safe .card-num {
    font-size: 17px;
    font-weight: 800;
    color: #1C3181;
}

.async-section-safe .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(250, 243, 92, 0.3);
    color: #1C3181;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FAF35C;
    box-shadow: 0 0 8px rgba(250, 243, 92, 0.4);
}

.async-section-safe .card-icon svg {
    width: 18px;
    height: 18px;
    fill: #1C3181;
}

.async-section-safe .card-content h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: #1C3181;
    margin: 0 0 6px 0;
}

.async-section-safe .card-content p, 
.async-section-safe .card-content ul {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.async-section-safe .card-content ul {
    padding-left: 15px;
    margin-top: 3px;
}

.async-section-safe .card-content li {
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .async-section-safe .async-row {
        flex-direction: column !important;
        gap: 25px;
    }
    .async-section-safe .async-card, 
    .async-section-safe .async-title-box {
        width: 100%;
    }
    .async-section-safe .async-connector-svg {
        display: none;
    }
}
:root {
    --primary: #4267E0;
    --secondary: #FAF35C;
    --accent-glow: rgba(250, 243, 92, 0.4);
    --dark-bg: #152259;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

/* --- FULL WIDTH SLIDER SECTION --- */
.ultra-slider-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 580px;
    background: radial-gradient(circle at 20% 50%, #1e358a 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 5% 80px 5%;
    border-radius: 0;
}

/* Dynamic Floating Particles in Background */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(250, 243, 92, 0.15);
    animation: pulseParticle 6s infinite ease-in-out;
    pointer-events: none;
}
.p1 { width: 140px; height: 140px; top: 10%; left: 5%; animation-delay: 0s; }
.p2 { width: 220px; height: 220px; bottom: -50px; right: 8%; animation-delay: 2s; }
.p3 { width: 90px; height: 90px; top: 60%; left: 45%; animation-delay: 4s; }

/* Floating Animated Tech Icons */
.tech-icon {
    position: absolute;
    color: rgba(250, 243, 92, 0.2);
    font-size: 42px;
    animation: spinFloat 8s infinite ease-in-out;
    z-index: 1;
}
.icon-1 { top: 15%; left: 6%; }
.icon-2 { bottom: 20%; left: 42%; animation-delay: 2s; }
.icon-3 { top: 20%; right: 6%; animation-delay: 4s; }

/* Inner Content Grid Container */
.slider-inner {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 5;
    margin: 0 auto;
}

/* --- LEFT CONTENT ANIMATIONS --- */
.slide-text-wrapper {
    display: none;
}
.slide-text-wrapper.active {
    display: block;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 243, 92, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide-title {
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: textReveal 0.9s ease-out forwards;
}

.slide-desc {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    animation: textReveal 1.1s ease-out forwards;
}

/* Glow Light Button */
.glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary);
    color: #0f172a;
    padding: 15px 36px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.4s ease;
    animation: fadeInUp 1.2s ease-out forwards;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
    animation: buttonShine 3s infinite;
}

.glow-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 35px rgba(250, 243, 92, 0.8);
}

/* --- RIGHT SIDE IMAGE ANIMATIONS --- */
.card-slider-frame {
    position: relative;
    width: 100%;
    height: 380px;
    perspective: 1000px;
}

.card-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: rotateY(25deg) scale(0.85);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(250, 243, 92, 0.5);
}

.card-slide.active {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-slide::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 80%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.45) 50%, 
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    animation: lightSlideContinuous 3s infinite linear;
    pointer-events: none;
}

/* Wave Effect Bottom Border */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: radial-gradient(circle, rgba(66, 103, 224, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* --- CONTROLS & NAVIGATOR --- */
.controls-bar {
    position: absolute;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: var(--secondary);
    color: #000;
    transform: scale(1.1);
}

.progress-dots {
    display: flex;
    gap: 10px;
}

.p-dot {
    width: 12px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s;
}

.p-dot.active {
    background: var(--secondary);
    width: 32px;
    box-shadow: 0 0 10px var(--secondary);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes lightSlideContinuous {
    0% { left: -150%; }
    100% { left: 150%; }
}

@keyframes buttonShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes spinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes pulseParticle {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.3); opacity: 0.3; }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes textReveal {
    from { opacity: 0; transform: translateY(30px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Layout */
@media (max-width: 900px) {
    .ultra-slider-section {
        padding: 40px 20px 80px 20px;
    }
    .slider-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .slide-title { font-size: 32px; }
    .glow-btn { margin: 0 auto; }
    .card-slider-frame { height: 260px; }
}
:root {
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --accent-cyan: #06b6d4;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    --text-main: #0f172a;
    --text-muted: #64748b;
}

.academic-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 5%;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 40%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

/* Background Blobs (Morphing Animations) */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    pointer-events: none;
    animation: pulseMorph 8s infinite alternate ease-in-out;
}

.blob-1 {
    top: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: rgba(37, 99, 235, 0.18);
}

.blob-2 {
    bottom: -100px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: rgba(249, 115, 22, 0.15);
    animation-delay: -4s;
}

/* Floating Background Icons */
.floating-bg-icon {
    position: absolute;
    color: rgba(37, 99, 235, 0.08);
    font-size: 65px;
    pointer-events: none;
    animation: floatRotate 10s infinite linear;
}

.icon-pos-1 { top: 8%; right: 5%; animation-duration: 12s; }
.icon-pos-2 { bottom: 8%; left: 3%; animation-duration: 16s; animation-direction: reverse; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- LEFT SIDE CONTENT --- */
.header-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    animation: badgeGlow 2.5s infinite alternate ease-in-out;
}

.header-tag i {
    animation: pulseIcon 1.5s infinite ease-in-out;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 6s infinite alternate ease-in-out;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Semester Cards Container */
.semesters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sem-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatCard 5s infinite ease-in-out;
}

.sem-card:nth-child(2) { animation-delay: -1.5s; }
.sem-card:nth-child(3) { animation-delay: -3s; }

/* Continuous Light Sweep Effect on Cards */
.sem-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 80%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.7) 50%, 
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(25deg);
    animation: shineSweep 4s infinite linear;
    pointer-events: none;
}

.sem-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
}

.sem-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sem-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.c-blue { background: #eff6ff; color: #2563eb; }
.c-orange { background: #fff7ed; color: #ea580c; }
.c-green { background: #ecfdf5; color: #059669; }

/* Continuous Icon Animations */
.c-blue i { animation: spinInfinite 6s infinite linear; }
.c-orange i { animation: pulseInfinite 2s infinite ease-in-out; }
.c-green i { animation: bounceInfinite 2s infinite ease-in-out; }

.sem-details h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.sem-details p {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.sem-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulseBadge 3s infinite alternate ease-in-out;
}

.b-blue { background: #dbeafe; color: #1e40af; }
.b-orange { background: #ffedd5; color: #9a3412; }
.b-green { background: #d1fae5; color: #065f46; }

/* --- RIGHT SIDE VISUAL WITH LIGHT SLIDE --- */
.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-img-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 10px;
    border: 2px solid #f1f5f9;
    width: 100%;
    max-width: 500px;
    animation: frameGlow 3.5s infinite alternate ease-in-out;
}

.main-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.8s ease;
}

.visual-container:hover img {
    transform: scale(1.05);
}

/* CONTINUOUS LIGHT SLIDE (SHINE SWEEP) ON IMAGE */
.main-img-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 80%;
    height: 200%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: imageLightSlide 3.5s infinite ease-in-out;
    pointer-events: none;
    z-index: 2;
}

/* Floating Stat Boxes with Animation */
.floating-stat-1 {
    position: absolute;
    bottom: -15px;
    left: -10px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #f1f5f9;
    animation: continuousUpAndDown 4s infinite ease-in-out;
    z-index: 3;
}

.stat-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
    animation: pulseIcon 2s infinite ease-in-out;
}

.stat-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.stat-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 600;
}

/* --- ALL ANIMATIONS KEYFRAMES --- */
@keyframes imageLightSlide {
    0% { left: -150%; }
    50%, 100% { left: 150%; }
}

@keyframes shineSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

@keyframes pulseMorph {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.12) translate(15px, -15px); }
    100% { transform: scale(1) translate(0, 0); }
}

@keyframes floatRotate {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes continuousUpAndDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes spinInfinite {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseInfinite {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

@keyframes bounceInfinite {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 8px rgba(37, 99, 235, 0.1); }
    100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.35); }
}

@keyframes frameGlow {
    0% { border-color: #f1f5f9; box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
    100% { border-color: rgba(37, 99, 235, 0.35); box-shadow: 0 22px 55px rgba(37, 99, 235, 0.2); }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .academic-section {
        padding: 60px 5%;
        min-height: auto;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .main-img-wrapper img {
        height: 350px;
    }

    .floating-stat-1 {
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 30px;
    }

    .sem-card {
        padding: 14px 16px;
    }

    .sem-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .main-img-wrapper img {
        height: 280px;
    }
}

:root {
    --primary: #2563eb;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-border: #e2e8f0;
}

.programs-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-box {
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid #bfdbfe;
    margin-bottom: 12px;
}

.title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.title span {
    color: var(--primary);
}

.subtitle {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.grid-3x3 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(37, 99, 235, 0.03) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: softSlide 7s infinite ease-in-out;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.card-top {
    margin-bottom: 14px;
}

.icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.c-blue { color: #2563eb; background: #eff6ff; }
.c-purple { color: #7c3aed; background: #f3e8ff; }
.c-green { color: #059669; background: #ecfdf5; }
.c-orange { color: #ea580c; background: #fff7ed; }
.c-rose { color: #e11d48; background: #ffe4e6; }
.c-cyan { color: #0284c7; background: #e0f2fe; }

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.career-tag {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 10px;
    margin-top: 14px;
}

.career-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.career-desc {
    font-size: 11.5px;
    color: #475569;
    line-height: 1.4;
}

@keyframes softSlide {
    0% { left: -150%; }
    30%, 100% { left: 150%; }
}

@media (max-width: 900px) {
    .grid-3x3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-3x3 { grid-template-columns: 1fr; }
    .title { font-size: 26px; }
}
:root {
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.15);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-border: #e2e8f0;
}

.programs-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- ANIMATED HEADER --- */
.header-box {
    text-align: center;
    max-width: 650px;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #bfdbfe;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.badge i {
    animation: pulseIcon 2s infinite ease-in-out;
}

.title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- 2-COLUMN GRID FOR DIPLOMA PROGRAMS --- */
.grid-postgraduate {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* --- ADVANCED ANIMATED CARDS --- */
.card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease-out;
}

/* LIGHT SLIDE (LACIIF & SUBTLE GLASS SHINE) */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        60deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(37, 99, 235, 0.05) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: subtleShine 6s infinite ease-in-out;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.card-top {
    position: relative;
    z-index: 2;
}

/* ICON WITH FLOAT & PULSE ANIMATION */
.icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-edu {
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.icon-law {
    color: #ea580c;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* BOTTOM FEATURE BADGE */
.program-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    transition: all 0.3s ease;
}

.card:hover .footer-arrow {
    background: var(--primary);
    color: #ffffff;
    transform: translateX(5px);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes subtleShine {
    0% { left: -150%; }
    30%, 100% { left: 150%; }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.9); opacity: 0.7; }
}

@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); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .grid-postgraduate { grid-template-columns: 1fr; }
    .title { font-size: 28px; }
    .card { padding: 24px; }
}

:root {
    --mu-navy: #1C3181;
    --mu-gold: #FAF35C;
    --mu-gold-dark: #e5dc43;
    --primary-light: #f0f4ff;
    --primary-border: #cbd5e1;
    --text-main: #0f172a;
    --text-muted: #64748b;
}

.apply-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* --- HEADER SECTION --- */
.header-box {
    text-align: center;
    max-width: 650px;
    margin-bottom: 50px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--mu-navy);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(28, 49, 129, 0.2);
    box-shadow: 0 4px 12px rgba(28, 49, 129, 0.1);
    margin-bottom: 14px;
}

.badge i {
    color: var(--mu-navy);
}

.title {
    font-size: 36px;
    font-weight: 800;
    color: var(--mu-navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.title span {
    background: var(--mu-gold);
    color: var(--mu-navy);
    padding: 0 8px;
    border-radius: 6px;
}

.subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- STEPS TIMELINE GRID --- */
.steps-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}

/* --- CARD DESIGN WITH ONE CIRCLE COLOR ROTATING BORDER --- */
.step-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* SPECIAL BACKGROUND FOR STEP 5 */
.step-card.special-bg {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}
.step-card.special-bg::after {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
}

/* CONTINUOUS ROTATING BORDER LINE */
.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg, 
        var(--mu-navy) 120deg, 
        var(--mu-gold) 240deg, 
        transparent 360deg
    );
    animation: rotateBorderContinuous 5s linear infinite;
    z-index: 1;
}

.step-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #ffffff;
    border-radius: 16px;
    z-index: 2;
}

@keyframes rotateBorderContinuous {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(28, 49, 129, 0.12);
}

/* STATIC NUMBER BADGE */
.step-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--primary-light);
    color: var(--mu-navy);
    border: 2px solid rgba(28, 49, 129, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    position: relative;
    z-index: 3;
}

/* CARD CONTENT Z-INDEX FIX */
.step-content {
    flex: 1;
    position: relative;
    z-index: 3;
}

.step-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

/* ICONS */
.step-icon {
    font-size: 18px;
    color: var(--mu-navy);
    display: inline-block;
}

.step-text {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
}

.step-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 4px;
}

/* --- WEBSITE CTA CARD --- */
.website-box {
    width: 100%;
    background: linear-gradient(135deg, #f0f4ff 0%, #fffef0 100%);
    border: 1px solid rgba(28, 49, 129, 0.2);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    overflow: hidden;
    animation: slideInFromBottom 1s ease-out forwards;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.website-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.web-icon {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--mu-navy);
    box-shadow: 0 6px 18px rgba(28, 49, 129, 0.12);
}

.web-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.8px;
}

.web-link {
    font-size: 18px;
    font-weight: 800;
    color: var(--mu-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.web-link:hover {
    color: #122154;
}

.btn-apply {
    background: var(--mu-navy);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(28, 49, 129, 0.2);
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--mu-gold);
    color: var(--mu-navy);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(28, 49, 129, 0.25);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .steps-wrapper { grid-template-columns: 1fr; }
    .website-box { flex-direction: column; text-align: center; }
    .website-info { flex-direction: column; }
    .title { font-size: 28px; }
}


.mu-official-section {
    --mu-navy: #1C3181;
    --mu-gold: #FAF35C;
    --mu-light-bg: #f8fafc;
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
    max-width: 1250px;
    margin: 50px auto;
    padding: 40px 30px;
    background: #ffffff;
    border: 2px solid rgba(28, 49, 129, 0.1);
    border-radius: 32px;
    box-sizing: border-box;
    box-shadow: 0 20px 40px rgba(28, 49, 129, 0.06);
    position: relative;
    overflow: hidden;
}

.mu-official-section * {
    box-sizing: border-box;
}

/* HEADER */
.mu-off-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.mu-off-tag {
    display: inline-block;
    background: rgba(28, 49, 129, 0.08);
    color: var(--mu-navy);
    border: 1px solid rgba(28, 49, 129, 0.2);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mu-off-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--mu-navy);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.mu-off-header h2 span {
    background: var(--mu-gold);
    color: var(--mu-navy);
    padding: 0 8px;
    border-radius: 6px;
}

.mu-off-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* SPLIT CONTAINER */
.mu-split-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: center;
}

/* IMAGE BOX WITH LIGHT SLIDE */
.mu-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(28, 49, 129, 0.15);
    height: 100%;
    min-height: 520px;
}

.mu-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mu-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    animation: lightSlide 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSlide {
    0% { left: -150%; }
    35%, 100% { left: 180%; }
}

/* CARDS COLUMN */
.mu-cards-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD DESIGN */
.mu-off-card {
    background: var(--mu-light-bg);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.mu-off-card:hover {
    transform: translateX(6px);
    border-color: var(--mu-navy);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(28, 49, 129, 0.08);
}

/* ICON WITH LIGHT SLIDE ANIMATION */
.mu-off-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: var(--mu-gold);
    color: var(--mu-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 15px rgba(250, 243, 92, 0.4);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.mu-off-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: iconLightSlide 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes iconLightSlide {
    0% { left: -150%; }
    40%, 100% { left: 180%; }
}

.mu-off-card:hover .mu-off-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--mu-navy);
    color: var(--mu-gold);
}

/* CONTENT */
.mu-off-content {
    flex: 1;
}

.mu-off-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--mu-navy);
    margin: 0 0 8px 0;
}

.mu-off-content p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 14px 0;
}

/* CONTACT LIST */
.mu-off-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.mu-off-contact li {
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mu-off-contact li i {
    color: var(--mu-navy);
    font-size: 14px;
}

/* BUTTON WITH LIGHT SLIDE ANIMATION */
.mu-off-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mu-navy);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mu-off-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 243, 92, 0.4), transparent);
    transform: skewX(-25deg);
    animation: btnLightSlide 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btnLightSlide {
    0% { left: -150%; }
    40%, 100% { left: 180%; }
}

.mu-off-btn i {
    transition: transform 0.3s ease;
    color: var(--mu-gold);
}

.mu-off-card:hover .mu-off-btn {
    background: var(--mu-gold);
    color: var(--mu-navy);
    box-shadow: 0 4px 15px rgba(28, 49, 129, 0.15);
}

.mu-off-card:hover .mu-off-btn i {
    transform: translateX(4px);
    color: var(--mu-navy);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mu-split-container {
        grid-template-columns: 1fr;
    }
    .mu-image-box {
        min-height: 350px;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

.footer-section {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 20px 20px 20px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* LOGO CIRCLE LA'AAN OO SI DABIIIQI AH U SOO BAXAYA */
.footer-logo-plain {
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

.footer-logo-plain img {
    height: 48px;
    width: auto;
    object-fit: contain;
    animation: logoFloatAndGlow 3s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo-plain:hover img {
    transform: scale(1.1) rotate(3deg);
}

.footer-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.footer-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* NEWSLETTER BOX */
.newsletter-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 300deg, #2563eb 340deg, #60a5fa 360deg);
    animation: rotateLine 5s linear infinite;
    z-index: 1;
}

.newsletter-box::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #ffffff;
    border-radius: 14.5px;
    z-index: 2;
}

@keyframes rotateLine {
    100% { transform: rotate(360deg); }
}

.newsletter-content {
    position: relative;
    z-index: 3;
}

.newsletter-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.newsletter-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.newsletter-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* FOOTER BOTTOM & ANIMATED CREDIT */
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.crafted-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(37, 99, 235, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    animation: boxBounce 3s ease-in-out infinite;
}

.crafted-credit span.heart {
    display: inline-block;
    color: #ef4444;
    animation: heartBeatFast 1s ease-in-out infinite, colorShift 4s linear infinite;
    filter: drop-shadow(0 0 4px rgba(239, 68, 68, 0.6));
}

.crafted-credit a {
    color: var(--primary);
    text-decoration: none;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #2563eb);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

/* KEYFRAMES */
@keyframes logoFloatAndGlow {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 2px rgba(37, 99, 235, 0.1));
    }
    50% {
        transform: translateY(-4px);
        filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.4));
    }
}

@keyframes heartBeatFast {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.35); }
    30% { transform: scale(1); }
    45% { transform: scale(1.25); }
}

@keyframes boxBounce {
    0%, 100% { transform: translateY(0); box-shadow: 0 2px 5px rgba(37,99,235,0.05); }
    50% { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(37,99,235,0.15); }
}

@keyframes textShine {
    to { background-position: 200% center; }
}

@keyframes colorShift {
    0% { filter: hue-rotate(0deg) drop-shadow(0 0 4px rgba(239, 68, 68, 0.6)); }
    50% { filter: hue-rotate(60deg) drop-shadow(0 0 8px rgba(168, 85, 247, 0.8)); }
    100% { filter: hue-rotate(360deg) drop-shadow(0 0 4px rgba(239, 68, 68, 0.6)); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

