:root {
    --orange: #ff7a00;
    --blue: #0b5ed7;
    --dark: #0a0a0a;
    --light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    color: var(--light);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== Custom Scrollbar ===== */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff7a00 #0a0a0a;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #000, #0d0d0d);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            #ff7a00,
            #0b5ed7);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            #ffa94d,
            #3d8bfd);
    box-shadow: 0 0 16px rgba(255, 122, 0, 0.7);
}

::-webkit-scrollbar-corner {
    background: #000;
}


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

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8%;
    gap: 3rem;
    position: relative;
}

.hero video {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.hero-text {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 600px;
    padding-top: 20rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: #0C0E10;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.hero-text span {
    color: #d2d2d2;
}

.hero-text p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #ccc;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    color: #b6b6b6;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    box-shadow: 0 0 30px rgba(11, 94, 215, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(255, 122, 0, 0.8);
}

.hero-text,
.hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero-image {
    animation-delay: 0.3s;
}

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


.stats {
    background: linear-gradient(180deg, #000, #111);
    padding: 4rem 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 2rem;
    cursor: pointer;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    animation: comeUp both;
    animation-timeline: view();
    animation-range: entry 10% cover 70vh;
}

@keyframes comeUp {
    from {
        opacity: 0;
        transform: translateY(100%) scale(.5);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.stat h2 {
    font-size: 2.5rem;
    color: var(--orange);
}

.stat p {
    color: #aaa;
    margin-top: 0.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

.section {
    padding: 5rem 8%;
    background: linear-gradient(180deg, #000, #0d0d0d);
}

.section h2 {
    font-size: 3rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
    animation: comeUp both;
    animation-timeline: view();
    animation-range: entry 10% cover 70vh;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    cursor: pointer;
    animation: growCenter both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
}

@keyframes growCenter {
    from {
        opacity: 0;
        scale: 0;
    }

    to {
        opacity: 1;
        scale: 1;
    }
}

.card img {
    height: 60vh;
    border-radius: 5%;
    object-fit: cover;
}

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

.card h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.card p {
    color: #bbb;
    font-size: 0.95rem;
}

.quote {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
}

.quote span {
    display: block;
    margin-top: 1rem;
    color: var(--orange);
    font-weight: bold;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 8%;
}

.split-section:nth-child(even) {
    flex-direction: row-reverse;
}

.split-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 0 40px #cae6f7a3;
    animation: growCenter both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
}

.split-text h2 {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 1rem;
    animation: comeUp both;
    animation-timeline: view();
    animation-range: entry 10% cover 70vh;
}

.split-text p {
    color: #bbb;
    line-height: 1.7;
    animation: comeUp both;
    animation-timeline: view();
    animation-range: entry 10% cover 70vh;
}

.image-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    animation: growCenter both;
    animation-timeline: view();
    animation-range: entry 10% cover 100vh;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    cursor: pointer;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-card span {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-weight: bold;
}


.image-card {
    width: 100%;
    max-width: 350px;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}