/* SHUHANA MICRO FOUNDATION - NEXT-GEN MASTER FRAMEWORK
    Theme: Solarpunk Atmospheric (Yellow, Green, Orange)
    Version: 2.0 (Unified & Conflict-Free)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=JetBrains+Mono:wght@500&display=swap');

:root {
    /* Branding Colors */
    --smf-yellow: #facc15;
    --smf-green: #22c55e;
    --smf-orange: #f97316;
    
    /* Functional Colors */
	
    --text-bright: #ffffff;
    --text-muted: #a3a3a3;
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--smf-yellow) 0%, var(--smf-orange) 100%);
    --grad-mesh: radial-gradient(at 0% 0%, rgba(34, 197, 94, 0.08) 0px, transparent 50%),
                 radial-gradient(at 100% 100%, rgba(250, 204, 21, 0.08) 0px, transparent 50%);
    
    /* Layout */
    --font-base: 16px;
    --nav-height: 80px;
    --radius-lg: 3rem;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- Base Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-base);
    color: var(--text-bright);
    background-color: var(--bg-dark);
    background-image: var(--grad-mesh);
    line-height: 1.6;
    overflow-x: hidden;
    transition: font-size 0.3s ease;
}

/* --- Navigation & Mega Menu --- */
.site-header {
    height: var(--nav-height);
    /* Light Grey (248, 250, 252) with 80% opacity */
    background: rgba(248, 250, 252, 0.8); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); /* For Safari support */
    /* Lighten the border so it doesn't look too dark against the light grey */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); 
    z-index: 1000;
}

.mega-dropdown-glass {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(25px);
    border-top: 3px solid var(--smf-orange);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 2rem 2rem;
}

/* --- The Bento & Gradient Cards --- */
.bento-card, .grad-card {
    background: var(--glass-white);
    border: 1px solid rgb(81 78 78 / 10%);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card:hover, .grad-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.1);
}

/* Spotlight Hover Effect (Triggered by JS) */
.grad-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(249, 115, 22, 0.12) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.grad-card:hover::after { opacity: 1; }

/* --- Typography & Visual Accents --- */
.text-shiny {
    background: linear-gradient(to right, var(--smf-yellow), var(--smf-orange), var(--smf-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

.label-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* --- Core Values Carousel Styles --- */
.val-item {
    transition: var(--transition);
    opacity: 0.3;
}

.val-item.active {
    opacity: 1;
    transform: translateX(10px);
}

#value-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: opacity 1.5s ease-in-out, transform 10s linear;
}

#value-photo-container img.active { opacity: 0.25; transform: scale(1.1); }
#value-photo-container img.inactive { opacity: 0; }

#rotation-loader {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

#rotation-loader div {
    position: absolute;
    height: 100%;
    background: var(--smf-green);
    width: 0%;
}

.loading-bar-active { animation: loadLine 5s linear infinite; }

@keyframes loadLine {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* --- Interactive Buttons --- */
.btn-glow {
    background: var(--grad-primary);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 12px 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
    transform: scale(1.05);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { 
    background: var(--smf-orange); 
    border-radius: 10px;
}

/* SHUHANA MICRO FOUNDATION - COSMOS FRAMEWORK
   Aesthetic: True Black + Solarpunk Atmos Glow
   Colors: Green, Yellow, Orange
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --smf-yellow: #facc15;
    --smf-green: #22c55e;
    --smf-orange: #f97316;
}

/* 1. Base Framework - MANDATORY DEEP BLACK */


/* 2. ATMOSPHERIC MESH BACKGROUND */
body {
    /* Subtle organic light "blobs" to create depth */
    background-image: 
        radial-gradient(at 10% 10%, rgba(34, 197, 94, 0.08) 0px, transparent 50%),
        radial-gradient(at 90% 90%, rgba(250, 204, 21, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
}

/* 3. The Catalyze Section - Floating Glass Container */
.catalyze-section {
    background: rgba(255, 255, 255, 0.01); /* Ultra-subtle tint */
    border-radius: 4rem; /* Deep rounded corners */
    backdrop-filter: blur(20px);
    border: 1px solid rgb(8 8 8 / 5%);
    padding: 4rem 4rem; /* Generous 'Boot Space' */
    margin: 4rem auto; /* Floating spacing */
    position: relative;
    overflow: hidden;
}

/* Catalyst section inner glow */
.catalyze-section::before {
    content: "";
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* 4. Professional Glass Cards */
.grad-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgb(0 0 0 / 8%);
    border-radius: 3rem;
    padding: 3.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 10;
}

.grad-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(250, 204, 21, 0.3);
    transform: translateY(-10px) scale(1.01);
}

/* Specific Hover Glows */
.card-green:hover { box-shadow: 0 30px 60px -15px rgba(34, 197, 94, 0.15); }
.card-yellow:hover { box-shadow: 0 30px 60px -15px rgba(250, 204, 21, 0.15); }
.card-orange:hover { box-shadow: 0 30px 60px -15px rgba(249, 115, 22, 0.15); }

/* Typography */
.text-shiny {
    background: linear-gradient(90deg, var(--smf-yellow), var(--smf-orange), var(--smf-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }
.label-mono { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; }



/* Our Programme */
/* SMF Bounce Motion for Program Hub */
@keyframes bounceSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes bounceSlow2 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(15px) scale(1.05); }
}

.animate-bounce-slow { animation: bounceSlow 6s ease-in-out infinite; }
.animate-bounce-slow-2 { animation: bounceSlow2 8s ease-in-out infinite; }
.animate-bounce-delayed { animation: bounceSlow 7s ease-in-out 1s infinite; }

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
}

/* Ensure the black text is sharp */
.text-black {
    color: #1a1a1a !important;
}
/* SMF Logo Background Interaction */
.program-hub-container .group-hover\/section\:text-\[\#22c55e\]\/20 {
    /* This ensures that when any part of the section is hovered, 
       the big SMF text glows green at 20% opacity */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Optional: Individual item hover also affects the logo depth */
.program-hub-container .group:hover ~ div h2 {
    filter: blur(2px);
    opacity: 0.1;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 15s linear infinite;
}

/* Hub Hover Interaction */
.group\/hub:hover h2 {
    color: rgba(34, 197, 94, 0.2) !important; /* Green #22c55e at low opacity */
    transform: scale(1.05);
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}