/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');



/* =========================================================
   CUSTOM CURSOR
========================================================= */

.cursor {
    position: fixed;
    top: 0;
    left: 0;

    width: 14px;
    height: 14px;

    border-radius: 50%;
    background: #3b82f6;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 999999;

    transition:
        width .25s ease,
        height .25s ease,
        transform .08s linear,
        background .25s ease;

    box-shadow:
        0 0 12px rgba(59, 130, 246, 0.8),
        0 0 35px rgba(59, 130, 246, 0.45);
}

/* CURSOR BLUR */

.cursor-blur {
    position: fixed;
    top: 0;
    left: 0;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 999998;

    background:
        radial-gradient(circle,
            rgba(59, 130, 246, 0.22),
            rgba(59, 130, 246, 0.08),
            transparent);

    filter: blur(22px);

    transition:
        width .4s ease,
        height .4s ease,
        transform .15s linear;
}

/* CURSOR RING */

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.15);

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 999997;

    backdrop-filter: blur(4px);

    transition:
        width .35s ease,
        height .35s ease,
        transform .12s linear;
}

/* HOVER EFFECT */

.cursor.hover {
    width: 28px;
    height: 28px;
    background: #fff;
}

.cursor-blur.hover {
    width: 140px;
    height: 140px;
}

.cursor-ring.hover {
    width: 70px;
    height: 70px;
    border-color: #3b82f6;
}

/* CLICK EFFECT */

.cursor.click {
    transform: translate(-50%, -50%) scale(.7);
}

.cursor-ring.click {
    transform: translate(-50%, -50%) scale(.7);
}

/* CURSOR PULSE */

.cursor::after {
    content: '';

    position: absolute;

    inset: -8px;

    border-radius: 50%;

    border: 1px solid rgba(59, 130, 246, 0.22);

    animation: cursorPulse 2s infinite;
}

@keyframes cursorPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000;

    background: rgba(2, 6, 23, 0.2);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


/* =========================================================
   LIQUID MENU
========================================================= */

.liquid-menu {
    position: fixed;

    left: 45px;
    top: 50%;

    transform: translateY(-50%);

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 26px;

    animation: liquidFloat 6s ease-in-out infinite;
}

/* TRACK */

.menu-track {
    position: absolute;

    left: 20px;
    top: -140px;

    width: 1px;
    height: 650px;

    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.1),
            rgba(59, 130, 246, 0.25),
            rgba(255, 255, 255, 0.1),
            transparent);
}

/* LINK */

.liquid-link {
    position: relative;

    display: flex;
    align-items: center;

    gap: 24px;

    text-decoration: none;

    transition: .6s cubic-bezier(.77, 0, .18, 1);
}

/* CIRCLE */

.liquid-circle {
    position: relative;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);

    overflow: hidden;

    transition: .5s cubic-bezier(.77, 0, .18, 1);
}

/* INNER GLOW */

.inner-glow {
    position: absolute;

    width: 10px;
    height: 10px;

    background: #3b82f6;

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 12px #3b82f6,
        0 0 25px #3b82f6;

    transition: .5s;
}

/* TEXT */

.liquid-text h6 {
    color: #4b5563;

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 4px;

    transition: .4s;
}

.liquid-text span {
    color: #7c879b;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 4px;

    transition: .4s;
}

/* HOVER */

.liquid-link:hover,
.liquid-link.active {
    transform: translateX(14px);
}

.liquid-link:hover .liquid-circle,
.liquid-link.active .liquid-circle {

    width: 72px;

    border-radius: 40px;

    border-color: rgba(59, 130, 246, 0.5);

    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.18),
            rgba(255, 255, 255, 0.03));

    box-shadow:
        0 0 30px rgba(37, 99, 235, 0.18);
}

.liquid-link:hover .inner-glow,
.liquid-link.active .inner-glow {
    left: 78%;
}

.liquid-link:hover .liquid-text h6,
.liquid-link.active .liquid-text h6 {
    color: #3b82f6;
}

.liquid-link:hover .liquid-text span,
.liquid-link.active .liquid-text span {
    color: #fff;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    background: url('../img/scpr.png') center center/cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

/* OVERLAY */

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to right,
            rgba(2, 6, 23, 0.94),
            rgba(2, 6, 23, 0.5),
            rgba(2, 6, 23, 0.94));
}

/* GRID */

/* .grid-lines {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 80px 80px;
} */

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 10;

    width: 90%;
    max-width: 1000px;

    text-align: center;
}

.small-text {
    color: #7ea6ff;

    font-size: 11px;

    letter-spacing: 8px;

    margin-bottom: 20px;
}

.hero-content h1 {
    color: #fff;

    font-size: 92px;

    line-height: 1;

    font-family: 'Cormorant Garamond', serif;

    font-weight: 600;

    margin-bottom: 25px;
}

.hero-content p {
    color: #d1d5db;

    letter-spacing: 5px;

    margin-bottom: 45px;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;

    flex-wrap: wrap;
}

.btn-fill,
.btn-border {
    width: 230px;
    height: 62px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    letter-spacing: 3px;

    font-size: 13px;

    transition: .4s;
}

.btn-fill {
    background: #2563eb;
    color: #fff;
}

.btn-fill:hover {
    transform: translateY(-5px);
}

.btn-border {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-border:hover {
    background: #fff;
    color: #000;
}

/* =========================================================
   FLOATING CARD
========================================================= */

.floating-card {
    position: absolute;

    right: 90px;
    bottom: 90px;

    width: 260px;

    padding: 35px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(14px);

    z-index: 10;
}

.card-line {
    width: 60px;
    height: 2px;

    background: #2563eb;

    margin-bottom: 20px;
}

.floating-card h3 {
    color: #fff;

    font-size: 38px;

    margin-bottom: 10px;

    font-family: 'Cormorant Garamond', serif;
}

.floating-card p {
    color: #cbd5e1;

    line-height: 1.7;

    font-size: 14px;
}

/* =========================================================
   SCROLL TEXT
========================================================= */

.scroll-down {
    position: absolute;

    bottom: 35px;

    color: #94a3b8;

    letter-spacing: 4px;

    animation: float 2s infinite;
}

/* =========================================================
   SECTION
========================================================= */

.section {
    height: 100vh;

    /* display: block; */
    justify-content: center;
    align-items: center;
}

.dark-section {
    background: #020617;
}

.blue-section {
    background: #061a3d;
}

.section h2 {
    color: rgba(255, 255, 255, 0.05);

    font-size: 120px;

    /* letter-spacing: 14px; */

    font-family: 'Cormorant Garamond', serif;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes liquidFloat {

    0% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-52%);
    }

    100% {
        transform: translateY(-50%);
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {



    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .floating-card {
        display: none;
    }

}

@media(max-width:768px) {

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-blur,
    .cursor-ring {
        display: none;
    }

    .liquid-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .section h2 {
        font-size: 42px;
    }



    .hero-content p {
        font-size: 12px;
        letter-spacing: 2px;
    }

}


.scpr-journey-section {

    height: 100vh;
    width: 100%;
    position: relative;

    display: flex;
    align-items: center;

    background: url("../img/scpr-bg-journey.jpg") right/cover no-repeat;

    overflow: hidden;

}

.scpr-journey-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to right,
            rgba(0, 0, 0, .90) 8%,
            rgba(0, 0, 0, .55) 45%,
            rgba(0, 0, 0, .20) 100%);

}

.scpr-journey-content {

    position: relative;
    z-index: 2;

    width: 900px;
    margin-left: 8%;

    color: #fff;

    animation: scprJourneyFadeUp 1.3s ease;

}

.scpr-journey-subtitle {

    display: flex;
    align-items: center;
    gap: 15px;

    text-transform: uppercase;
    letter-spacing: 4px;

    color: #d8b08c;

    font-size: 14px;

    margin-bottom: 25px;

}

.scpr-journey-subtitle span {

    width: 70px;
    height: 2px;

    background: #c89b77;

}

.scpr-journey-title {

    font-family: 'Cormorant Garamond', serif;

    font-size: 65px;

    line-height: 1.1;

    font-weight: 700;

    margin-bottom: 25px;

}

.scpr-journey-title span {

    color: #d8b08c;

}

.scpr-journey-description {

    font-size: 18px;

    line-height: 34px;

    color: #d8d8d8;

    max-width: 620px;

    margin-bottom: 45px;

}

.scpr-journey-buttons {

    display: flex;

    gap: 20px;

}

.scpr-journey-btn-primary {

    padding: 16px 40px;

    border-radius: 50px;

    text-decoration: none;

    background: #c89b77;

    color: #fff;

    transition: .4s;

    font-weight: 500;

}

.scpr-journey-btn-primary:hover {

    transform: translateY(-5px);

    background: #b98963;

}

.scpr-journey-btn-outline {

    padding: 16px 40px;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    border: 1px solid rgba(255, 255, 255, .3);

    backdrop-filter: blur(10px);

    background: rgba(255, 255, 255, .08);

    transition: .4s;

}

.scpr-journey-btn-outline:hover {

    background: #fff;

    color: #000;

    transform: translateY(-5px);

}

.scpr-journey-scroll {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%) rotate(90deg);

    color: #ffffff80;

    letter-spacing: 5px;

    font-size: 12px;

}

.scpr-journey-scroll::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 82px;

    width: 70px;

    height: 1px;

    background: #ffffff60;

}

@keyframes scprJourneyFadeUp {

    from {

        opacity: 0;
        transform: translateY(60px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

@media(max-width:992px) {

    .scpr-journey-content {

        width: 90%;
        margin: auto;
        text-align: center;

    }

    .scpr-journey-subtitle {

        justify-content: center;

    }

    .scpr-journey-title {

        font-size: 48px;

    }

    .scpr-journey-buttons {

        justify-content: center;
        flex-wrap: wrap;

    }

    .scpr-journey-scroll {

        display: none;

    }

}

@media(max-width:576px) {

    .scpr-journey-title {

        font-size: 36px;

    }

    .scpr-journey-description {

        font-size: 15px;

        line-height: 28px;

    }

    .scpr-journey-btn-primary,
    .scpr-journey-btn-outline {

        width: 100%;
        text-align: center;

    }

}


/*==============================
Hall Of Fame
==============================*/

.scpr-hall-section {

    padding: 40px 0px 80px;

    background:
        radial-gradient(circle at top, #0b2d73 0%, #06152f 35%, #020617 100%);

    position: relative;

    overflow: hidden;

}

.scpr-hall-section::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: -220px;
    top: -220px;

    border-radius: 50%;

    background: rgba(37, 99, 235, .12);

    filter: blur(120px);

}

.scpr-hall-section::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -200px;
    bottom: -200px;

    border-radius: 50%;

    background: rgba(59, 130, 246, .10);

    filter: blur(140px);

}

.scpr-hall-heading {

    text-align: center;

    margin-bottom: 70px;

    position: relative;

    z-index: 2;

}

.scpr-hall-heading span {

    color: #7ea6ff;

    letter-spacing: 5px;

    text-transform: uppercase;

    font-size: 12px;

}

.scpr-hall-heading h2 {

    font-family: 'Cormorant Garamond', serif;

    font-size: 65px;

    color: #fff;

    /* margin-top: 10px;

    margin-bottom: 15px; */

}

.scpr-hall-row {

    display: flex;

    gap: 30px;

    position: relative;

    z-index: 2;

}

.scpr-hall-card {

    flex: 1;

    height: 650px;
    /* Fixed height */

    overflow: hidden;

    position: relative;

    border-radius: 18px;

    background: #07152c;

    border: 1px solid rgba(255, 255, 255, .08);

    transition: .45s;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .35);

}

.scpr-hall-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 1.2s;

}

/* Glass Overlay */

.scpr-hall-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(to top,

            rgba(2, 6, 23, .85),

            rgba(2, 6, 23, .15),

            transparent);

    opacity: 0;

    transition: .45s;

}

/* Blue Glow Border */

.scpr-hall-card::after {

    content: "";

    position: absolute;

    inset: 12px;

    border: 1px solid rgba(59, 130, 246, .35);

    border-radius: 12px;

    opacity: 0;

    transition: .45s;

}

.scpr-hall-card:hover {

    transform: translateY(-12px);

    box-shadow:

        0 30px 60px rgba(0, 0, 0, .5),

        0 0 40px rgba(37, 99, 235, .25);

}

.scpr-hall-card:hover img {

    transform: scale(1.08);

}

.scpr-hall-card:hover::before {

    opacity: 1;

}

.scpr-hall-card:hover::after {

    opacity: 1;

    inset: 20px;

}

/* Responsive */

@media(max-width:991px) {

    .scpr-hall-row {

        flex-direction: column;

    }

    .scpr-hall-card {

        height: 500px;

    }

}


.scpr-hall-description {

    /* max-width: 850px; */

    /* margin: 30px auto 70px; */

    text-align: center;

    color: #b8c5d8;

    font-size: 18px;

    line-height: 34px;

    font-weight: 300;

}

/* Button */

.scpr-hall-btn-wrap {

    text-align: center;

    margin-top: 60px;

}

.scpr-hall-btn {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 18px 42px;

    text-decoration: none;

    color: #fff;

    font-size: 14px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border: 1px solid rgba(59, 130, 246, .35);

    border-radius: 50px;

    background: rgba(255, 255, 255, .04);

    backdrop-filter: blur(12px);

    transition: .45s ease;

    box-shadow: 0 0 0 rgba(37, 99, 235, 0);

}

.scpr-hall-btn span {

    transition: .4s;

    font-size: 18px;

}

.scpr-hall-btn:hover {

    background: #2563eb;

    border-color: #2563eb;

    color: #fff;

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(37, 99, 235, .35);

}

.scpr-hall-btn:hover span {

    transform: translateX(8px);

}

@media(max-width:768px) {

    .scpr-hall-description {

        font-size: 16px;

        line-height: 30px;

        padding: 0 15px;

    }

    .scpr-hall-btn {

        padding: 16px 30px;

        font-size: 13px;

    }

}


/*====================================
Achievements
====================================*/

.scpr-achievement-section {

    padding: 50px 0 80px;

    background:
        radial-gradient(circle at top, #0b2d73 0%, #06152f 40%, #020617 100%);

    overflow: hidden;

}

.scpr-achievement-heading {

    text-align: center;

    margin-bottom: 70px;

}

.scpr-achievement-heading span {

    color: #7ea6ff;

    letter-spacing: 5px;

    text-transform: uppercase;

    font-size: 12px;

}

.scpr-achievement-heading h2 {

    color: #fff;

    font-size: 64px;

    margin: 12px 0;

    font-family: 'Cormorant Garamond', serif;

}

.scpr-achievement-heading p {

    color: #b8c5d8;

    max-width: 700px;

    margin: auto;

    line-height: 32px;

    font-size: 20px;

}

/*========================*/

.scpr-logo-slider {

    overflow: hidden;

    position: relative;

}

.scpr-logo-track {

    display: flex;

    width: max-content;

    animation: scprLogoScroll 35s linear infinite;

}

.scpr-logo-slider:hover .scpr-logo-track {

    animation-play-state: paused;

}

.scpr-logo-track{
    background-color: aliceblue;
}

.scpr-logo-card {

    /* width: 300px; */

    height: 140px;

    margin: 0 18px;

    /* border-radius: 18px; */

    /* background: rgb(227, 227, 227); */

    /* border: 1px solid rgba(255, 255, 255, .08); */

    backdrop-filter: blur(14px);

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .45s;

    flex-shrink: 0;

}

.scpr-logo-card img {

    width: 200px;

    height: 110px;

    object-fit: contain;

    /* filter: grayscale(100%) brightness(.9); */

    transition: .45s;

}
/* 
.scpr-logo-card:hover {

    transform: translateY(0px);

    border-color: #2563eb;

    box-shadow:

        0 20px 50px rgba(0, 0, 0, .45),

        0 0 40px rgba(37, 99, 235, .25);

}

.scpr-logo-card:hover img {

    filter: none;

    transform: scale(1.08);

} */

/* Fade */

.scpr-logo-slider::before,
.scpr-logo-slider::after {

    content: "";

    position: absolute;

    top: 0;

    width: 180px;

    height: 100%;

    z-index: 5;

}

/* .scpr-logo-slider::before {

    left: 0;

    background: linear-gradient(to right, #020617, transparent);

} */

/* .scpr-logo-slider::after {

    right: 0;

    background: linear-gradient(to left, #020617, transparent);

} */

@keyframes scprLogoScroll {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

@media(max-width:768px) {

    .scpr-logo-card {

        width: 220px;

        height: 140px;

    }

    .scpr-logo-card img {

        /* width: 130px; */

    }

    .scpr-achievement-heading h2 {

        font-size: 42px;

    }

}