* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #0A0F1E;
    overflow-x: hidden;
}

/* Premium Color Scheme: Royal Blue + Electric Gold */
:root {
    --royal-blue: #0A2472;
    --electric-blue: #1E3A8A;
    --vibrant-gold: #FFC107;
    --deep-gold: #E6A800;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glow-gold: rgba(255, 193, 7, 0.3);
    --dark-bg: #050914;
}

html {
    scroll-behavior: smooth;
}

/* Background premium */
.bg-premium {
    background: radial-gradient(circle at 10% 20%, rgba(10, 36, 114, 0.9), rgba(5, 9, 20, 0.95));
}

/* Navbar Glassmorphism */
.navbar-custom {
    background: rgba(5, 9, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    padding: 0.8rem 1rem;
    transition: all 0.4s ease;
    z-index: 1030;
}

.navbar-custom.scrolled {
    background: rgba(5, 9, 20, 0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--vibrant-gold);
}

/* ----- LOGO SECTION - ENLARGED & TEXT PROPERLY ALIGNED NEXT TO IT (NOT BELOW) ----- */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.logo-symbol {
    background: linear-gradient(135deg, var(--vibrant-gold), #FFD966);
    border-radius: 50%;
    width: 90px;              /* Increased from 85px */
    height: 90px;             /* Increased from 85px */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--glow-gold);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
    padding: 6px;             /* Reduced padding so logo fills circle better */
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-symbol:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 193, 7, 0.6);
}

.logo-img {
    width: 115%;              /* Slightly zoom logo */
    height: 115%;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
    display: block;
}

@keyframes float {

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

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

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.brand-text {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FFFFFF, #FFE69C);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255, 193, 7, 0.8);
    font-weight: 500;
    margin-top: 2px;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 0.5rem;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--vibrant-gold);
    border-radius: 4px;
    transition: 0.3s;
}

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

.nav-link:hover {
    color: var(--vibrant-gold) !important;
}

/* CINEMATIC HERO SLIDER */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide:nth-child(1) {
    background-position: center 25%;
}

.swiper-slide:nth-child(2) {
    background-position: center 30%;
}

.swiper-slide:nth-child(3) {
    background-position: center 28%;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(125deg, rgba(5, 9, 20, 0.75) 0%, rgba(10, 36, 114, 0.65) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    animation: slideUp 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.gold-badge {
    background: var(--vibrant-gold);
    color: #0A2472;
    padding: 8px 24px;
    border-radius: 60px;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.glow-text {
    color: var(--vibrant-gold);
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}

.btn-premium {
    background: linear-gradient(45deg, var(--vibrant-gold), #FFD966);
    border: none;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 800;
    color: #0A2472;
    transition: 0.3s;
    margin: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(255, 193, 7, 0.3);
    background: linear-gradient(45deg, #FFD966, var(--vibrant-gold));
}

.btn-outline-gold {
    border: 2px solid var(--vibrant-gold);
    background: transparent;
    padding: 12px 38px;
    border-radius: 50px;
    font-weight: 700;
    color: white;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--vibrant-gold);
    color: #0A2472;
    transform: translateY(-3px);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--vibrant-gold);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.swiper-pagination-bullet {
    background: var(--vibrant-gold);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 12px;
    background: var(--vibrant-gold);
}

/* Premium Cards with Glassmorphism */
.premium-card {
    background: rgba(15, 25, 50, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--vibrant-gold);
    box-shadow: 0 25px 45px rgba(255, 193, 7, 0.2);
    background: rgba(20, 35, 70, 0.8);
}

.glass-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: 0.3s;
}

.glass-stats:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: scale(1.02);
}

.section-title-gold {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--vibrant-gold));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 2rem;
}

.live-badge {
    animation: pulseGlow 1.5s infinite;
    background: #FF3B3B;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--vibrant-gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    background-color: #1a1f2e;
    color: white;
}

.form-control,
.form-select {
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background-color: var(--vibrant-gold);
    border-color: var(--vibrant-gold);
}

.form-check-input:focus {
    border-color: var(--vibrant-gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(255, 59, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0);
    }
}

footer {
    background: #020617;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
}

.social-icon-glow {
    background: rgba(255, 193, 7, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: var(--vibrant-gold);
}

.social-icon-glow:hover {
    background: var(--vibrant-gold);
    color: #0A2472;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .section-title-gold {
        font-size: 1.8rem;
    }

    .logo-symbol {
        width: 55px;
        height: 55px;
    }

    .brand-text {
        font-size: 1rem;
        white-space: normal;
    }

    .brand-sub {
        font-size: 0.55rem;
    }

    .navbar-brand {
        gap: 8px;
    }

    .swiper-slide {
        background-position: center 20% !important;
    }
}

.team-icon i {
    font-size: 3rem;
    color: var(--vibrant-gold);
    filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.text-gold {
    color: var(--vibrant-gold);
}

.apply-btn {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000 !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.apply-btn:hover {
    background: linear-gradient(135deg, #FFC107, #FFD700);
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.step-item {
    transition: all 0.3s ease;
}

.step-item:hover .premium-card {
    transform: translateX(5px);
    border-color: var(--vibrant-gold);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.15);
}

@media (max-width: 768px) {
    .step-item .premium-card {
        margin: 0 10px;
    }

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


.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slider-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 115%;
    background: rgba(0, 0, 0, 0.55);
    top: 0;
    left: 0;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    padding-top: 220px;
    padding-left: 8%;
    max-width: 700px;
}



.hero-single-section {
    height: 100vh;
    padding-top: 110px;
}


.single-hero {
    min-height: calc(100vh - 110px);
    background-image: url('static/images/testingss/banner_2.JPEG');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    background-color: #050914;
    width: 100%;
}


.hero-single-section {
    padding-top: 110px;
    height: auto;
}