@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

/* Design System */
:root {
    --primary-color: #0a2342;
    /* Deep Royal Blue */
    --secondary-color: #ffd700;
    /* Gold */
    --accent-color: #2c3e50;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e1e1e1;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;

    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background-color: #e6c200;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* font-size: 1.5rem; */
    /* Removed font size as we are using image */
    /* font-weight: 700; */
    /* color: var(--primary-color); */
    /* font-family: var(--font-heading); */
}

.logo img {
    width: auto;
    object-fit: contain;
}

/* Cinematic Logo Animation */

.logo-text-anim {
    position: relative;
    height: 60px;
    width: 210px;
    /* Further reduced width to fit content tightly */
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: 8px;
}

.logo-text-anim span {
    position: absolute;
    white-space: nowrap;
    left: 0;
    opacity: 0;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    animation-fill-mode: forwards;
}

.text-1 {
    font-size: 2.4rem;
    background:
        linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.9) 40%, transparent 50%) 0 0 / 200% 100% no-repeat,
        linear-gradient(to bottom, #cfc09f 22%, #634f2c 24%, #cfc09f 26%, #cfc09f 27%, #ffecb3 40%, #3a2c0f 78%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2), 0px -1px 0px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
    animation: cinematicFade 12s infinite, goldShine 4s linear infinite;
}

/* Twinkling Star */
.text-1::after {
    content: '✦';
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700;
    opacity: 0;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes goldShine {
    0% {
        background-position: 100% 0, 0 0;
    }

    20% {
        background-position: -100% 0, 0 0;
    }

    /* Shine moves across quickly */
    100% {
        background-position: -100% 0, 0 0;
    }

    /* Pause */
}

@keyframes twinkle {

    0%,
    15% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    20% {
        opacity: 1;
        transform: scale(1) rotate(45deg);
    }

    25% {
        opacity: 0;
        transform: scale(0) rotate(90deg);
    }

    100% {
        opacity: 0;
        transform: scale(0) rotate(90deg);
    }
}

.text-2 {
    font-size: 1rem;
    /* Smaller */
    line-height: 1.3;
    white-space: normal !important;
    /* Allow wrap */
    text-align: left;
    background: linear-gradient(90deg, #ff00cc, #3333ff, #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: cinematicFadeReverse 12s infinite;
    /* Slower */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Sparkle Effect for Text 2 */
.text-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    animation: sparkleShine 12s infinite;
    /* Synced with main animation */
}



@keyframes cinematicFade {

    0%,
    40% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    45%,
    95% {
        opacity: 0;
        transform: scale(1.1) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes cinematicFadeReverse {

    0%,
    40% {
        opacity: 0;
        transform: scale(0.9) translateY(5px);
    }

    45%,
    95% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) translateY(5px);
    }
}

@keyframes sparkleShine {

    0%,
    45% {
        left: -100%;
    }

    50% {
        left: -100%;
    }

    70% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes cinematicFade {

    0%,
    45% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }

    50%,
    95% {
        opacity: 0;
        transform: scale(1.1) translateY(-5px);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

@keyframes cinematicFadeReverse {

    0%,
    45% {
        opacity: 0;
        transform: scale(0.9) translateY(5px);
        filter: blur(2px);
    }

    50%,
    95% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) translateY(5px);
        filter: blur(2px);
    }
}

@keyframes sparkleShine {

    0%,
    45% {
        left: -100%;
    }

    /* Hidden during text 1 */
    50% {
        left: -100%;
    }

    75% {
        left: 200%;
    }

    /* Shine across during text 2 visibility */
    100% {
        left: 200%;
    }
}

/* Mobile responsiveness for logo text */
@media (max-width: 768px) {
    .logo-text-anim {
        display: none;
        /* Hide on very small screens if it breaks layout, or adjust size */
    }
}

/* .logo i {
    color: var(--secondary-color);
} */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/images/hero_collage.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    /* Reset margin since nav is fixed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 35, 66, 0.7), rgba(10, 35, 66, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

.highlight-text-1 {
    color: #ffd700;
    /* Gold */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.highlight-text-2 {
    color: #00ffff;
    /* Cyan */
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 2px 2px 0 rgba(0, 0, 0, 0.5);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero p {
    font-family: 'Dancing Script', cursive;
    font-size: 2.6rem;
    margin-bottom: 3rem;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(to right, #ffff00, #33ff00, #ffff00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-ripple 3s linear infinite;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    display: block;
}

@keyframes shine-ripple {
    0% {
        background-position: 0% center;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
    }

    100% {
        background-position: 200% center;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   New About Us Section (Dream Big) - Unique Classes
   ========================================= */

/* Seamless Cloud Background for the About Us section */
#profile {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 50%, #fbc2eb 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    /* Ensure padding is controlled here */
}

.db-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Text Side (Right) */
.db-content {
    flex: 1;
    z-index: 20;
    padding-left: 2rem;
}

.db-header {
    text-align: left;
    margin-bottom: 2rem;
}

.db-header h2 {
    font-family: 'Outfit', sans-serif;
    /* Enforce font */
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.db-header .subtitle {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.db-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.db-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    /* Glassmorphism */
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: transform 0.3s ease;
}

.db-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.db-card i {
    font-size: 2rem;
    color: #4a90e2;
    /* Sky blue accent */
    margin-bottom: 0;
}

.db-card h3 {
    font-family: 'Outfit', sans-serif;
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
}

.db-card p {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Image Side (Left) */
.db-image-wrapper {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.db-image {
    position: relative;
    z-index: 10;
    width: 100%;
    /* Whoosh In Animation (From Left) */
    animation: whooshIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, float 6s ease-in-out infinite 1.5s;
    transform: translateX(-100vw) rotate(-10deg);
    /* Start off-screen Left */
}

.db-image img {
    width: 100%;
    /* Blend image edges */
    mask-image: linear-gradient(to right, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

@keyframes whooshIn {
    0% {
        transform: translateX(-500px) rotate(-10deg) scale(0.8);
        opacity: 0;
    }

    100% {
        transform: translateX(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Smoke Effect */
.db-smoke-container {
    position: absolute;
    bottom: 0px;
    left: 20%;
    /* Moved to left side */
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.db-smoke {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    animation: smoke-trail 2s ease-out infinite;
}

@keyframes smoke-trail {
    0% {
        transform: scale(0.5) translate(0, 0);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5) translate(-100px, 50px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .db-container {
        flex-direction: column;
        /* Image on top */
        text-align: center;
    }

    .db-content {
        padding-left: 0;
        padding-right: 0;
    }

    .db-header {
        text-align: center;
    }

    .db-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.line {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

/* Profile Section */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary-color);
}

.profile-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.profile-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.profile-card p {
    color: var(--text-light);
}

/* Leadership Section */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
}

.leader-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-img-placeholder {
    width: 120px;
    height: 120px;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    border: 3px solid var(--secondary-color);
}

.qualifications {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.leader-card h3 {
    margin-bottom: 0.5rem;
}

.role {
    display: block;
    color: var(--secondary-color);
    /* Changed to gold/secondary for visibility */
    font-weight: 600;
    /* Make it bold */
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.leader-card p {
    font-style: italic;
    color: var(--text-light);
}

/* Milestones Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.year {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== Announcements Section - Tech Style ===== */
.announcements-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 25%, #3b82f6 50%, #06b6d4 75%, #0891b2 100%);
    background-size: 400% 400%;
    animation: techGradientShift 20s ease infinite;
}

@keyframes techGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Circuit Pattern Overlay */
.tech-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    background-size: 50px 50px, 50px 50px, 100px 100px;
    pointer-events: none;
    opacity: 0.5;
    animation: circuitPulse 15s ease-in-out infinite;
}

@keyframes circuitPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Tech Particles */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float-tech-particle linear infinite;
}

/* Geometric Shapes */
.tech-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: rotateShape linear infinite;
}

.tech-circle {
    border-radius: 50%;
}

.tech-hexagon {
    width: 60px;
    height: 34.64px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.tech-hexagon::before,
.tech-hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.tech-hexagon::before {
    bottom: 100%;
    border-bottom: 17.32px solid rgba(255, 255, 255, 0.05);
}

.tech-hexagon::after {
    top: 100%;
    width: 0;
    border-top: 17.32px solid rgba(255, 255, 255, 0.05);
}

@keyframes float-tech-particle {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(50px) rotate(360deg);
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }

    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Glowing Orbs */
.tech-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

/* Announcements Section */
.announcements-section .container {
    position: relative;
    z-index: 10;
}

.announcements-section .section-header h2,
.announcements-section .section-header .subtitle {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.announcements-section .line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

/* Announcements Section */
.announcements-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.announcement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 10;
}

/* Gradient border effect */
.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4, #f472b6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.announcement-card:hover::before {
    opacity: 1;
}

.announcement-card:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(6, 182, 212, 0.2);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem 0;
    gap: 1rem;
}

.date-badge {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.month {
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
}

.announcement-content {
    padding: 1rem 1.5rem 1.5rem;
}

.announcement-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.announcement-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Expand Section */
.expand-section {
    text-align: center;
    margin-top: 2rem;
}

.expand-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    text-decoration: none;
}

.expand-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Admin Dashboard */
.admin-panel {
    max-width: 600px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-main);
}

.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-col p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Footer Credits - Neon Style (No Animation) */
.footer-credits {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00ffff;
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.founder-img img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-light);
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Login Type Links Container */
.login-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.login-type-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(10, 35, 66, 0.05);
    border: 2px solid rgba(10, 35, 66, 0.1);
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-type-link:hover {
    background: rgba(10, 35, 66, 0.08);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.login-type-link i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.login-type-link span {
    flex: 1;
}

/* Timeline Page Styles */
.timeline-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 25%, #3b82f6 50%, #06b6d4 75%, #0891b2 100%);
    background-size: 400% 400%;
    animation: techGradientShift 20s ease infinite;
    padding-top: 90px;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* Page header text styling for timeline page */
.timeline-page .page-header h1,
.timeline-page .page-header p {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animated Gradient Background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Overlay Layer with Animated Circles */
.timeline-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatCircles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatCircles {

    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.8;
    }
}

/* Animated Wave Effect */
.timeline-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    animation: wave 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes wave {

    0%,
    100% {
        transform: translateX(0) scaleY(1);
    }

    50% {
        transform: translateX(-20px) scaleY(1.1);
    }
}

/* ===== Floating Particles for Latest Updates ===== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

/* Different sizes and positions for each particle */
.particle:nth-child(1) {
    width: 10px;
    height: 10px;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    left: 30%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 12px;
    height: 12px;
    left: 40%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    left: 50%;
    animation-duration: 16s;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    width: 9px;
    height: 9px;
    left: 60%;
    animation-duration: 13s;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    width: 11px;
    height: 11px;
    left: 70%;
    animation-duration: 17s;
    animation-delay: 1.5s;
}

.particle:nth-child(8) {
    width: 6px;
    height: 6px;
    left: 80%;
    animation-duration: 15s;
    animation-delay: 3.5s;
}

.particle:nth-child(9) {
    width: 10px;
    height: 10px;
    left: 90%;
    animation-duration: 19s;
    animation-delay: 2.5s;
}

.particle:nth-child(10) {
    width: 8px;
    height: 8px;
    left: 15%;
    animation-duration: 14s;
    animation-delay: 4.5s;
}

.particle:nth-child(11) {
    width: 7px;
    height: 7px;
    left: 25%;
    animation-duration: 16s;
    animation-delay: 0.5s;
}

.particle:nth-child(12) {
    width: 12px;
    height: 12px;
    left: 35%;
    animation-duration: 13s;
    animation-delay: 2.8s;
}

.particle:nth-child(13) {
    width: 9px;
    height: 9px;
    left: 45%;
    animation-duration: 17s;
    animation-delay: 1.2s;
}

.particle:nth-child(14) {
    width: 6px;
    height: 6px;
    left: 55%;
    animation-duration: 15s;
    animation-delay: 3.8s;
}

.particle:nth-child(15) {
    width: 10px;
    height: 10px;
    left: 75%;
    animation-duration: 18s;
    animation-delay: 4.2s;
}

@keyframes float-particle {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Enhanced timeline container with z-index to appear above background effects */
.timeline-container {
    position: relative;
    z-index: 10;

    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
}

.timeline-main {
    max-width: 800px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

#timeline-posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-post-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 10;
    padding-left: 80px;
}

/* Gradient border effect */
.timeline-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4, #f472b6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-post-card.highlight {
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.timeline-post-card:hover::before {
    opacity: 1;
}

.timeline-post-card:hover {
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(6, 182, 212, 0.2);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.timeline-post-date {
    position: absolute;
    left: 0;
    top: 20px;
    width: 70px;
    display: flex;
    justify-content: center;
}

.date-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 2px;
}

.timeline-post-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.timeline-post-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
}

.timeline-post-content {
    padding: 2rem;
}

.timeline-post-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    white-space: pre-wrap;
}

/* Timeline Sidebar Navigation */
.timeline-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
}

.timeline-sidebar::-webkit-scrollbar {
    width: 4px;
}

.timeline-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.timeline-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

#timeline-nav {
    position: relative;
    padding-left: 20px;
}

#timeline-nav::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-marker {
    position: relative;
    padding: 0.8rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.marker-dot {
    position: absolute;
    left: -17px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.timeline-marker:hover .marker-dot {
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.2);
}

.timeline-marker.active .marker-dot {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.marker-label {
    padding-left: 0.5rem;
}

.marker-date {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.timeline-marker.active .marker-date {
    color: var(--primary-color);
    font-weight: 600;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.no-posts i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-container {
        grid-template-columns: 1fr;
    }

    .timeline-sidebar {
        position: static;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .timeline-post-card {
        padding-left: 0;
    }

    .timeline-post-date {
        position: static;
        width: 100%;
        padding: 1rem;
        justify-content: flex-start;
    }

    .timeline-post-image {
        height: 250px;
    }

    .timeline-post-content {
        padding: 1.5rem;
    }
}

/* =========================================
   Leadership Section (Integrated from sample1.html)
   ========================================= */

/* Unique Classes for Leadership Section (ls-*) */
.ls-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    /* Background moved from body to section */
    background: linear-gradient(180deg, #a3cbf5 0%, #e8f4fc 50%, #fce8f3 100%);
}

.ls-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Image Side (Left) */
.ls-image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.ls-image {
    position: relative;
    z-index: 10;
    width: 90%;
    margin-top: 4rem;
    /* Push image down */
    /* Gentle Dissolving/Breathing Animation */
    animation: etherealPulse 4s ease-in-out infinite;
    transform-origin: center center;
}

.ls-image img {
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 15px 30px rgba(10, 35, 66, 0.15));
}

@keyframes etherealPulse {

    0%,
    100% {
        opacity: 0.85;
        transform: scale(0.98);
        filter: brightness(100%) drop-shadow(0 15px 30px rgba(10, 35, 66, 0.15));
    }

    50% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(110%) drop-shadow(0 20px 40px rgba(10, 35, 66, 0.2));
    }
}

/* Stars Effect */
.ls-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff, 0 0 30px #ffd700;
    /* Stronger glow */
    opacity: 0;
    z-index: 15;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Cards Side (Right) */
.ls-cards-side {
    flex: 1.2;
    z-index: 20;
}

.ls-header {
    text-align: left;
    margin-bottom: 2rem;
}

.ls-header .subtitle {
    color: #0a2342;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.4);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.ls-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    color: #0a2342;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Leadership Cards Grid - Compact Stack */
.ls-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Tighter gap */
}

.ls-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 1.2rem;
    /* Reduced padding */
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: flex-start;
    /* Align top */
    gap: 1.5rem;
}

.ls-card:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.8);
}

.ls-card-img {
    flex-shrink: 0;
    width: 80px;
    /* Compact image size */
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.ls-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ls-card-content {
    flex: 1;
}

.ls-card h3 {
    color: #0a2342;
    margin: 0 0 0.2rem 0;
    font-size: 1.2rem;
    /* Slightly smaller heading */
}

.ls-card .qualifications {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.ls-card .role {
    display: block;
    font-size: 0.75rem;
    color: #4a90e2;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.ls-card p {
    font-size: 0.9rem;
    color: #444;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* Decorative Clouds */
.ls-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    filter: blur(20px);
    z-index: 1;
    animation: floatCloud 20s linear infinite;
}

@keyframes floatCloud {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100vw);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .ls-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .ls-header {
        text-align: center;
    }

    .ls-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .ls-card:hover {
        transform: translateY(-5px);
    }
}

/* ========================================
   NEW CONTACT SECTION STYLES (cs-*)
   ======================================== */

/* Contact Section Background */
#contact.cs-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.cs-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    background-image: url('assets/images/future_ready.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
}

.cs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 12, 41, 0.85), rgba(36, 36, 62, 0.7));
    z-index: 1;
}

/* Floating Orbs */
.cs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 2;
    opacity: 0.5;
    animation: floatOrb 10s infinite ease-in-out alternate;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(30px, -30px);
    }
}

/* Sparkles */
.cs-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #00f2fe;
    animation: sparkleFloat 4s infinite ease-in-out;
    z-index: 5;
    opacity: 0;
}

@keyframes sparkleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.5);
    }

    100% {
        transform: translateY(-40px) scale(0);
        opacity: 0;
    }
}

/* Hero Text */
.cs-hero-text {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.cs-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #fff 0%, #ffd700 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: shimmer 3s linear infinite;
    letter-spacing: 1px;
}

.cs-hero-text .highlight {
    color: #ffd700;
    -webkit-text-fill-color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.5);
    }

    to {
        text-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 0 60px rgba(255, 215, 0, 0.8);
    }
}

/* Main Container */
.cs-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    height: 75vh;
    margin: 0 auto;
    margin-top: 18vh;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* TOP - Contact Info */
.cs-info-side {
    grid-column: 1 / 3;
    grid-row: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.cs-header {
    flex: 1;
    max-width: 400px;
}

.cs-contact-items {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

/* BOTTOM LEFT - Image */
.cs-image-wrapper {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BOTTOM RIGHT - Form */
.cs-form-side {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    background: linear-gradient(to right, #fff, #a5c9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(165, 201, 255, 0.5);
    line-height: 1.2;
}

.cs-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.4;
}

.cs-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.cs-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #4facfe;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cs-contact-item:hover .cs-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.cs-details h4 {
    margin: 0 0 0.2rem 0;
    font-size: 0.85rem;
    color: #a5c9ff;
    font-weight: 600;
}

.cs-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-size: 0.8rem;
}

/* Image Container */
.cs-glow-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    width: 100%;
    max-height: 100%;
}

.cs-glow-image-container:hover {
    transform: scale(1.02);
}

.cs-glow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: imageGlow 3s infinite alternate;
}

@keyframes imageGlow {
    from {
        box-shadow: 0 0 10px rgba(79, 172, 254, 0.5), 0 0 20px rgba(79, 172, 254, 0.3);
        filter: brightness(100%);
    }

    to {
        box-shadow: 0 0 25px rgba(0, 242, 254, 0.8), 0 0 50px rgba(0, 242, 254, 0.5);
        filter: brightness(110%);
    }
}

/* Glass Form Card */
.cs-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.cs-form-group {
    margin-bottom: 0.8rem;
}

.cs-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cs-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #4facfe;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.3);
}

.cs-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cs-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.4);
}

/* ==========================================
   MILESTONES SECTION STYLES
   ========================================== */

.ms-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Animated Background Pattern */
.ms-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .1) 35px, rgba(255, 255, 255, .1) 70px);
    animation: ms-patternMove 20s linear infinite;
}

@keyframes ms-patternMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

/* Floating Particles */
.ms-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ms-floatParticle 15s infinite ease-in-out;
    z-index: 1;
}

@keyframes ms-floatParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Glowing Orbs */
.ms-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: ms-orbFloat 12s infinite ease-in-out alternate;
}

@keyframes ms-orbFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, -40px) scale(1.1);
    }
}

/* Main Container */
.ms-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Centered Header */
.ms-main-header {
    text-align: center;
    animation: ms-fadeInDown 1s ease-out;
}

@keyframes ms-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ms-main-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: ms-titleGlow 3s ease-in-out infinite alternate;
}

@keyframes ms-titleGlow {
    from {
        filter: brightness(100%);
    }

    to {
        filter: brightness(120%);
    }
}

.ms-main-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Content Grid */
.ms-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Image Wrapper */
.ms-image-wrapper {
    position: relative;
    animation: ms-fadeInLeft 1s ease-out;
}

@keyframes ms-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ms-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-width: 400px;
}

.ms-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.ms-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4, #ffd700);
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: ms-gradientRotate 4s linear infinite;
}

@keyframes ms-gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.ms-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Balloon Effects */
.ms-balloon {
    position: absolute;
    z-index: 20;
    width: 50px;
    height: 70px;
    animation: ms-balloonFly 10s infinite ease-in-out;
}

.ms-balloon::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 65px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: var(--balloon-color);
    box-shadow: inset -8px -8px 15px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.3);
}

.ms-balloon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--balloon-color);
    border-radius: 50%;
    filter: brightness(0.8);
}

.ms-balloon-string {
    position: absolute;
    width: 1.5px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top center;
}

@keyframes ms-balloonFly {
    0% {
        bottom: 50%;
        opacity: 0;
        transform: translateX(0) rotate(0deg) scale(0.8);
    }

    5% {
        opacity: 1;
    }

    95% {
        opacity: 1;
    }

    100% {
        bottom: 120%;
        opacity: 0;
        transform: translateX(var(--drift)) rotate(var(--rotate)) scale(1);
    }
}

.ms-balloon-1 {
    left: 15%;
    --balloon-color: #ff6b6b;
    --drift: 20px;
    --rotate: 10deg;
    animation-delay: 0s;
}

.ms-balloon-2 {
    left: 25%;
    --balloon-color: #4ecdc4;
    --drift: -15px;
    --rotate: -8deg;
    animation: ms-balloonFly 11s infinite ease-in-out;
    animation-delay: 3s;
}

.ms-balloon-3 {
    left: 35%;
    --balloon-color: #ffd700;
    --drift: 25px;
    --rotate: 12deg;
    animation: ms-balloonFly 9.5s infinite ease-in-out;
    animation-delay: 6s;
}

.ms-balloon-4 {
    left: 45%;
    --balloon-color: #95e1d3;
    --drift: -20px;
    --rotate: -10deg;
    animation: ms-balloonFly 10.5s infinite ease-in-out;
    animation-delay: 1.5s;
}

.ms-balloon-5 {
    left: 55%;
    --balloon-color: #ff9ff3;
    --drift: 18px;
    --rotate: 9deg;
    animation: ms-balloonFly 11.5s infinite ease-in-out;
    animation-delay: 4.5s;
}

.ms-badge {
    top: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    transform: none;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 107, 0.9));
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: ms-badgeBounce 2s infinite ease-in-out;
    z-index: 25;
}

@keyframes ms-badgeBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ms-badge i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: #fff;
}

.ms-badge span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Content */
.ms-content {
    animation: ms-fadeInRight 1s ease-out;
}

@keyframes ms-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ms-timeline-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.ms-timeline-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.ms-timeline-intro p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.ms-timeline-scroll {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.ms-timeline-scroll::-webkit-scrollbar {
    width: 8px;
}

.ms-timeline-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.ms-timeline-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ffd700, #ff6b6b);
    border-radius: 10px;
}

/* Timeline */
.ms-timeline {
    position: relative;
    padding-left: 2rem;
}

.ms-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ffd700, #ff6b6b, #4ecdc4);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.ms-milestone {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    animation: ms-fadeInUp 0.8s ease-out backwards;
}

.ms-milestone:nth-child(1) {
    animation-delay: 0.2s;
}

.ms-milestone:nth-child(2) {
    animation-delay: 0.3s;
}

.ms-milestone:nth-child(3) {
    animation-delay: 0.4s;
}

.ms-milestone:nth-child(4) {
    animation-delay: 0.5s;
}

.ms-milestone:nth-child(5) {
    animation-delay: 0.6s;
}

.ms-milestone:nth-child(6) {
    animation-delay: 0.7s;
}

.ms-milestone:nth-child(7) {
    animation-delay: 0.8s;
}

.ms-milestone:nth-child(8) {
    animation-delay: 0.9s;
}

.ms-milestone:nth-child(9) {
    animation-delay: 1.0s;
}

.ms-milestone:nth-child(10) {
    animation-delay: 1.1s;
}

.ms-milestone:nth-child(11) {
    animation-delay: 1.2s;
}

.ms-milestone:nth-child(12) {
    animation-delay: 1.3s;
}

.ms-milestone:nth-child(13) {
    animation-delay: 1.4s;
}

.ms-milestone:nth-child(14) {
    animation-delay: 1.5s;
}

.ms-milestone:nth-child(15) {
    animation-delay: 1.6s;
}

.ms-milestone:nth-child(16) {
    animation-delay: 1.7s;
}

.ms-milestone:nth-child(17) {
    animation-delay: 1.8s;
}

@keyframes ms-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ms-milestone::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: ms-pulse 2s infinite;
}

@keyframes ms-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(255, 215, 0, 1);
    }
}

.ms-year {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ms-milestone h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.ms-milestone p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .ms-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ms-main-header h2 {
        font-size: 2.5rem;
    }

    .ms-image-container {
        max-width: 100%;
    }
}

/* =========================================
   Hall of Fame Section - Compact Version
   ========================================= */

#hall-of-fame {
    min-height: auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #1a0000, #000000);
    padding: 2rem 0;
}

/* Red Carpet Background */
.red-carpet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center top, rgba(139, 0, 0, 0.4), transparent 70%),
        linear-gradient(to bottom,
            rgba(26, 0, 0, 0.9) 0%,
            rgba(80, 0, 0, 0.6) 30%,
            rgba(139, 0, 0, 0.4) 50%,
            rgba(80, 0, 0, 0.6) 70%,
            rgba(26, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Glittering Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle-hof 3s infinite ease-in-out;
}

@keyframes twinkle-hof {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Bokeh Lights */
.bokeh {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent);
    animation: float-hof 8s infinite ease-in-out;
    z-index: 2;
}

@keyframes float-hof {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-10px) translateX(-10px);
    }

    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* Header Section - Compact */
.hof-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
}

.hof-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #ffd700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow-hof 2s infinite alternate;
}

@keyframes glow-hof {
    from {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

.hof-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hof-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: #d4af37;
    font-style: italic;
    letter-spacing: 1px;
}

/* Theater Curtain Container - Compact */
.curtain-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Curtains - Enhanced Cinematic Style */
.curtain {
    position: absolute;
    top: -5%;
    width: 52%;
    height: 110%;
    background:
        repeating-linear-gradient(90deg,
            #6B0000 0px,
            #8B0000 8px,
            #A00000 16px,
            #8B0000 24px,
            #700000 32px,
            #8B0000 40px,
            #6B0000 48px);
    box-shadow:
        inset -10px 0 30px rgba(0, 0, 0, 0.7),
        inset 10px 0 30px rgba(0, 0, 0, 0.7),
        inset 0 0 80px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(0, 0, 0, 0.9);
    z-index: 10;
    transition: transform 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Velvet Texture */
.curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(180deg,
            transparent 0px,
            rgba(0, 0, 0, 0.15) 40px,
            transparent 80px,
            rgba(255, 255, 255, 0.03) 120px,
            transparent 160px),
        repeating-linear-gradient(90deg,
            transparent 0px,
            rgba(0, 0, 0, 0.1) 3px,
            transparent 6px);
    pointer-events: none;
}

/* Golden Tassels and Trim */
.curtain::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    background:
        linear-gradient(to bottom,
            #FFD700 0%,
            #DAA520 10%,
            #B8860B 20%,
            #DAA520 30%,
            #FFD700 40%,
            #DAA520 50%,
            #B8860B 60%,
            #DAA520 70%,
            #FFD700 80%,
            #DAA520 90%,
            #B8860B 100%);
    box-shadow:
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
}

.curtain-left::after {
    right: 0;
    border-left: 3px solid #B8860B;
}

.curtain-right::after {
    left: 0;
    border-right: 3px solid #B8860B;
}

.curtain-left {
    left: 0;
    transform-origin: left center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.curtain-right {
    right: 0;
    transform-origin: right center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.curtain-container.open .curtain-left {
    transform: translateX(-102%) rotateY(5deg);
}

.curtain-container.open .curtain-right {
    transform: translateX(102%) rotateY(-5deg);
}

/* Stage/Slideshow Container - Compact */
.stage-container {
    position: relative;
    width: 100%;
    height: 450px;
    background:
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1), transparent),
        linear-gradient(to bottom, #1a0000, #000000);
    border: 3px solid #ffd700;
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 0 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* Spotlight Effect */
.spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
    animation: pulse-hof 3s infinite ease-in-out;
}

@keyframes pulse-hof {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

/* Slideshow Images */
.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
}

.slide.active {
    opacity: 1;
    z-index: 3;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

/* Focus Ring Effect */
.focus-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    border: 4px solid rgba(255, 215, 0, 0.6);
    border-radius: 15px;
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.8),
        inset 0 0 30px rgba(255, 215, 0, 0.3);
    z-index: 4;
    pointer-events: none;
    animation: focusPulse-hof 2s infinite ease-in-out;
}

@keyframes focusPulse-hof {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 215, 0, 0.6),
            inset 0 0 20px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow:
            0 0 40px rgba(255, 215, 0, 1),
            inset 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

/* Navigation Dots */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.3);
}

.slide-dot:hover {
    background: rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

/* Red Carpet Bottom - Compact */
.red-carpet-bottom {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
    padding: 2rem 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.3));
}

.carpet-path {
    width: 250px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(to bottom,
            #8B0000 0%,
            #A52A2A 50%,
            #8B0000 100%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.8),
        inset 0 -20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.carpet-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 100%;
    background: repeating-linear-gradient(90deg,
            transparent 0px,
            rgba(255, 215, 0, 0.1) 2px,
            transparent 4px);
}

/* Stanchions */
.stanchions {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}

.stanchion {
    width: 30px;
    height: 80px;
    background: linear-gradient(to bottom, #FFD700, #B8860B, #FFD700);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.stanchion::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: radial-gradient(circle, #FFD700, #B8860B);
    border-radius: 50%;
}

.stanchion::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

/* Responsive Design for Hall of Fame */
@media (max-width: 768px) {
    .hof-title {
        font-size: 2rem;
    }

    .hof-subtitle {
        font-size: 1rem;
    }

    .stage-container {
        height: 350px;
    }

    .slide {
        width: 85%;
        height: 85%;
    }

    .focus-ring {
        width: 90%;
        height: 90%;
    }
}

/* =========================================
   Contact Us Responsive Styles
   ========================================= */
@media (max-width: 992px) {
    .cs-container {
        display: flex;
        flex-direction: column;
        height: auto;
        margin-top: 2rem;
        /* Reduced margin */
        padding: 0 1.5rem;
        gap: 3rem;
    }

    /* Fix Overlapping Text */
    #contact.cs-section {
        flex-direction: column;
        padding-top: 120px;
        /* Space for navbar */
        height: auto;
        /* Allow content to dictate height */
        min-height: auto;
    }

    .cs-hero-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
    }

    .cs-hero-text h1 {
        font-size: 2rem;
        /* Smaller title on mobile */
    }

    /* Reset Grid Positioning */
    .cs-info-side,
    .cs-image-wrapper,
    .cs-form-side {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    /* Info Side */
    .cs-info-side {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 0;
    }

    .cs-header {
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cs-contact-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }

    .cs-contact-item {
        flex: 1 1 200px;
        /* Allow wrapping */
        min-width: 200px;
    }

    /* Image Side */
    .cs-image-wrapper {
        order: 2;
        margin-bottom: 2rem;
    }

    .cs-glow-image-container {
        max-width: 500px;
        /* Limit image size on mobile */
        margin: 0 auto;
    }

    /* Form Side */
    .cs-form-side {
        order: 3;
    }
}

/* =========================================
   Post Actions (Like & Share)
   ========================================= */
.post-actions {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
    /* Push to bottom of card */
    position: relative;
    z-index: 20;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.action-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

/* Vibrant Action Buttons - White with Pink Shine */
.post-actions .action-btn {
    background: linear-gradient(135deg, #ff80ab, #e91e63);
    /* Pink Gradient */
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white !important;
    /* White Text */
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    /* Pink Shine/Glow */
    margin-right: 0.5rem;
    font-weight: 600;
}

.post-actions .action-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
    /* Stronger Shine */
    filter: brightness(1.1);
}

.post-actions .action-btn:active {
    transform: translateY(1px);
}

.post-actions .btn-like.liked {
    background: linear-gradient(135deg, #e91e63, #c2185b);
    /* Darker Pink for Liked */
    box-shadow: 0 0 15px #e91e63;
}

.post-actions .btn-like.liked i {
    font-weight: 900;
    animation: heartPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Share button shares the same style as requested */
.post-actions .btn-share {
    /* Same pink style */
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: var(--primary-color);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(139, 92, 246, 0.2);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}