/* =========================================
   Variables & Theme Defaults
   ========================================= */
:root {
    --primary: #1a75bb;
    /* Blue */
    --primary-dark: #12588c;
    --secondary: #ffffff;
    --accent: #8063a1;
    /* Purple */
    --accent-light: #9a7bc1;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f4f7f6;
    --dark-bg: #0f172a;

    /* Glassmorphism setup */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

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

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

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Typography Extensions */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(26, 117, 187, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

/* =========================================
   Top Announcement Bar
   ========================================= */
.top-bar {
    background-color: #0b1120;
    color: #cbd5e1;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1050;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.top-bar-left a {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar-left a:hover {
    color: #ffffff;
}

.top-bar-left a i {
    color: var(--primary);
}

.divider {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.pulse-icon i {
    color: #ef4444;
    font-size: 0.6rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }

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

.highlight-badge {
    background-color: #dc2626;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.legacy-text {
    color: #facc15;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    font-size: 0.8rem;
    background: rgba(250, 204, 21, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 10px 30px;
    z-index: 1000;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    display: none;
    /* Or adjust this depending on your sticky nav logic */
    background: #1a75bbd9;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.logo img {
    height: 55px;
    transition: var(--transition-smooth);
    image-rendering: auto;
    filter: contrast(1.1) brightness(1.05);
}

.navbar.scrolled .logo img {
    height: 45px;
}

.logo-text {
    color: white;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: white;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-link {
    color: var(--bg-light);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .hamburger {
    color: var(--text-main);
}

/* =========================================
   Components (Buttons, Cards)
   ========================================= */
.btn-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    transition: var(--transition-smooth);
}

.nav-links .nav-btn {
    padding: 8px 28px;
    font-size: 14px;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-glow {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(128, 99, 161, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 117, 187, 0.8), rgba(128, 99, 161, 0.8));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(128, 99, 161, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: white;
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.02);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(128, 99, 161, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(128, 99, 161, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(128, 99, 161, 0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    filter: contrast(1.1) brightness(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 25%),
        linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 25%),
        rgba(26, 117, 187, 0.15);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    margin-top: 50px;
}

.sub-headline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.main-headline {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.main-headline .text-gradient {
    background: linear-gradient(to right, #ffffff, #e0f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    color: #f8fafc;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    display: inline-block;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =========================================
   Vertical Hero Marquees
   ========================================= */
.hero-marquee-left,
.hero-marquee-right {
    position: absolute;
    top: -50px;
    bottom: -50px;
    width: 280px;
    overflow: hidden;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.hero-marquee-left {
    left: 2%;
}

.hero-marquee-right {
    right: 2%;
}

.marquee-track-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    will-change: transform;
}

.marquee-track-vertical img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-marquee-left:hover img,
.hero-marquee-right:hover img {
    opacity: 0.7;
}

.track-down {
    animation: scrollVerticalDown 40s linear infinite;
}

.track-up {
    animation: scrollVerticalUp 40s linear infinite;
}

@keyframes scrollVerticalDown {
    0% {
        transform: translateY(-50%);
    }

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

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

    100% {
        transform: translateY(-50%);
    }
}

/* =========================================
   About Section
   ========================================= */
.about {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1250px;
}

.about-badges-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.about-badges-wrapper .section-badge {
    margin-bottom: 0;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 14px !important;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
}

.about-features li {
    font-size: 1.15rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.about-features li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.about-features i {
    color: var(--accent);
    font-size: 1.6rem;
}

.about-image {
    position: relative;
}

.about-image .glass-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

.campus-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    image-rendering: auto;
    filter: contrast(1.1) brightness(1.05);
}

.about-image:hover .campus-img {
    transform: scale(1.05);
}

/* =========================================
   Courses Section (Bento Grid)
   ========================================= */
.courses-wrapper-container {
    max-width: 1650px !important;
    width: 95% !important;
}

.premium-course-container {
    position: relative;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.border-beam {
    display: none;
}

.bento-grid {
    position: relative;
    z-index: 1;
    background: var(--secondary);
    border-radius: 18px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.bento-card {
    position: relative;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    padding: 2px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 70%, var(--primary) 80%, var(--accent) 90%, transparent 100%);
    animation: rotateBeam 2.5s linear infinite;
    z-index: 0;
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

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

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

.bento-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(128, 99, 161, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 117, 187, 0.1), rgba(128, 99, 161, 0.1));
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9);
}

.bento-card:hover .card-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.card-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tag-ug {
    color: var(--primary);
}

.tag-pg {
    color: var(--accent);
}

.tag-research {
    color: #d97706;
}

.tag-duration {
    font-size: 0.75rem;
    font-weight: 500;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.card-icon {
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(26, 117, 187, 0.5);
    transition: var(--transition-smooth);
}

.bento-card:hover .card-icon {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(128, 99, 161, 0.6);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin: 0;
}

.course-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.course-details {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(26, 117, 187, 0.1);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-decoration: none;
    align-self: flex-start;
}

.bento-card:hover .btn-know-more {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.bento-card:hover .btn-know-more i {
    transform: translateX(4px);
}

/* =========================================
   Why Choose Us (Parallax) & Border Beams
   ========================================= */
.parallax-section {
    position: relative;
    padding: 100px 0;
    min-height: 400px;
    background-color: var(--primary-dark);
    background-image: url('../src/img/campus.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a75bb;
}

.parallax-content {
    position: relative;
    z-index: 10;
}

.parallax-content h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin-border {
    to {
        --border-angle: 360deg;
    }
}

.benefit-item {
    width: fit-content;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    color: var(--dark-bg);
    border: 2px solid transparent;
    background:
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) padding-box,
        conic-gradient(from var(--border-angle), transparent 70%, var(--primary) 90%, var(--accent) 100%) border-box;
    animation: spin-border 4s linear infinite;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.benefit-item i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.4s ease, color 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(128, 99, 161, 0.25);
}

.benefit-item:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

/* =========================================
   Bento Grid Gallery Section
   ========================================= */
.bento-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-standard {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 117, 187, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* =========================================
   Highlights Section
   ========================================= */
.highlights {
    position: relative;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.relative-section {
    position: relative;
}

#highlights-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.highlights-wrapper-container {
    max-width: 1600px;
    width: 95%;
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.highlights-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 25px;
    margin-top: 40px;
}

.highlight-bento-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.highlight-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.highlight-bento-card>* {
    z-index: 1;
    position: relative;
}

.highlight-bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 117, 187, 0.15);
}

.highlight-bento-card:hover::before {
    opacity: 1;
}

.card-primary {
    background: var(--primary);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-primary h3,
.card-primary p {
    color: white;
}

.card-secondary {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-main);
    border: 1px solid rgba(26, 117, 187, 0.1);
}

.card-secondary h3 {
    color: var(--dark-bg);
}

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

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    justify-content: flex-end;
}

.card-wide {
    grid-column: span 2;
    grid-row: span 1;
    justify-content: center;
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bento-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
}

.card-primary .bento-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-secondary .bento-icon-wrapper {
    background: rgba(26, 117, 187, 0.1);
    color: var(--primary);
}

.card-small .bento-icon-wrapper {
    margin: 0 auto 25px;
}

.card-large .bento-icon-wrapper {
    width: 90px;
    height: 90px;
    font-size: 3.2rem;
    margin-bottom: auto;
}

.highlight-bento-card:hover .bento-icon-wrapper {
    transform: scale(1.1);
}

.card-primary:hover .bento-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.card-secondary:hover .bento-icon-wrapper {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(26, 117, 187, 0.4);
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.highlight-bento-card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 0;
}

.card-large h3 {
    font-size: 2.4rem;
    margin-bottom: 5px;
}

.card-wide h3 {
    font-size: 1.6rem;
}

.highlight-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.card-large .highlight-subtitle {
    font-size: 1.3rem;
}

.highlight-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.card-large .highlight-desc {
    font-size: 1.1rem;
    margin-top: 10px;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 117, 187, 0.8);
    }

    70% {
        box-shadow: 0 0 0 25px rgba(26, 117, 187, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 117, 187, 0);
    }
}

.card-pulse {
    animation: borderPulse 2.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* =========================================
   Marquee Sections (Clubs & IV)
   ========================================= */
.marquee-section {
    width: 100%;
    background-color: transparent;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-wrapper {
    padding: 5px 2px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.marquee-left .marquee-track {
    animation: scrollLeft 45s linear infinite;
}

.marquee-right .marquee-track {
    animation: scrollRight 45s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-2160px);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-2160px);
    }

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

.marquee-item {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 3px solid rgba(26, 117, 187, 0.4);
    box-shadow: 0 0 15px rgba(26, 117, 187, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.marquee-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(128, 99, 161, 0.6);
    z-index: 10;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    background: radial-gradient(circle at 50% 10%, rgba(240, 247, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(128, 99, 161, 0.08) 100%);
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1));
    border: 1px solid rgba(26, 117, 187, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.cta-box:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 3.5rem;
    color: var(--dark-bg);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badges span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges span i {
    color: var(--primary);
    font-size: 1.1rem;
}

.cta-btn-wrapper {
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-cta-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(26, 117, 187, 0.3);
}

.cta-box:hover .btn-cta-submit {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta-submit i {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.btn-cta-submit:hover {
    background-color: #155a8a;
    box-shadow: 0 12px 25px rgba(26, 117, 187, 0.5);
    color: white;
}

.btn-cta-submit:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #cbd5e1;
    font-size: 15px;
    text-align: justify;
    line-height: 33px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #cbd5e1;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--bg-light);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    text-align: justify;
}

.footer-contact i {
    color: var(--bg-light);
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

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

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer .social-icons a i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: white;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* =========================================
   Responsive Design & Media Queries
   ========================================= */
@media (max-width: 1200px) {
    .hidden-mobile {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .top-bar-container {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        gap: 10px;
    }

    .highlights-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .card-wide {
        grid-column: span 2;
    }

    .bento-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-standard {
        grid-column: span 1;
        grid-row: span 1;
    }

    .main-headline {
        font-size: 3.5rem;
    }

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

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .hero-logo-wrapper {
        padding: 10px;
        margin-bottom: 20px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .highlights-bento-grid {
        grid-template-columns: 1fr;
    }

    .card-large,
    .card-wide,
    .card-small {
        grid-column: span 1;
        grid-row: span 1;
        text-align: center;
        align-items: center;
    }

    .card-large .bento-icon-wrapper {
        margin: 0 auto 20px;
    }

    .bento-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .item-large,
    .item-wide,
    .item-tall,
    .item-standard {
        grid-column: span 1;
        grid-row: span 1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease-in-out;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-link {
        color: var(--dark-bg);
        font-size: 1.2rem;
    }

    .navbar.scrolled .nav-links .nav-link {
        color: var(--dark-bg);
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .main-headline {
        font-size: 2.8rem;
    }

    .sub-headline {
        font-size: 1.2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns a {
        width: 100%;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .marquee-item {
        width: 180px;
        height: 180px;
    }

    .marquee-track {
        gap: 15px;
    }

    .marquee-left .marquee-track {
        animation: scrollLeftMobile 40s linear infinite;
    }

    .marquee-right .marquee-track {
        animation: scrollRightMobile 40s linear infinite;
    }

    .cta-box h2 {
        font-size: 2.2rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .btn-cta-submit {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLeftMobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1560px);
    }
}

@keyframes scrollRightMobile {
    0% {
        transform: translateX(-1560px);
    }

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

/* =========================================
   Interactive Hero Section Structure
   ========================================= */
.hero-interactive-section {
    position: relative;
    height: 100vh;
    /* Fills the full height of the screen */
    min-height: 750px;
    /* Prevents squishing on very small laptops */
    width: 100%;
    display: flex;
    align-items: center;
    /* Centers the content vertically */
    justify-content: center;
    /* Centers the content horizontally */
    overflow: hidden;
    /* CRITICAL: Hides the marquees from scrolling off the edges */
    background-color: var(--dark-bg);
    /* Lets any background images/colors behind it show through */
}

/* =========================================
   Floating WhatsApp Community Button
   ========================================= */
.floating-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    background-color: #002147;
    /* Navy Blue Theme */
    color: #ffffff;
    border-radius: 50px;
    padding: 6px 20px 6px 6px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 33, 71, 0.35);
    z-index: 9999;
    /* Ensures it stays on top of everything */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    animation: wa-pulse 2.5s infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-icon-bg {
    background-color: #ffffff;
    color: #002147;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wa-text {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.floating-wa-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.5);
    color: #ffffff;
    animation: none;
    /* Stops pulsing when hovered */
}

.floating-wa-btn:hover .wa-icon-bg {
    transform: scale(1.1) rotate(10deg);
}

/* Pulse Animation */
@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 33, 71, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 33, 71, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 33, 71, 0);
    }
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .floating-wa-btn {
        bottom: 20px;
        right: 20px;
        padding: 0;
        background-color: transparent;
        /* Remove pill shape */
        border: none;
        animation: wa-pulse-mobile 2.5s infinite;
    }

    .wa-icon-bg {
        margin-right: 0;
        width: 55px;
        height: 55px;
        font-size: 32px;
        background-color: #002147;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .wa-text {
        display: none;
        /* Hide text on mobile for cleaner UI */
    }
}

@keyframes wa-pulse-mobile {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 33, 71, 0.6);
        border-radius: 50%;
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 33, 71, 0);
        border-radius: 50%;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 33, 71, 0);
        border-radius: 50%;
    }
}