@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

:root {
    --primary: #003e73;
    /* Modern Dark Blue from Logo */
    --secondary: #82c3e2;
    /* Modern Teal/Turquoise from Logo */
    --accent: #22d3ee;
    --white: #ffffff;
    --black: #081d31;
    /* Deepest Blue for premium text */
    --grad-blue: linear-gradient(135deg, #001a33 0%, #003e73 50%, #82c3e2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* --- THE KNALL FACTOR: HERO --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    filter: brightness(0.8) contrast(1.2);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, var(--white) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
}

.hero-content .floating-logo {
    width: 350px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 40px rgba(0, 210, 255, 0.6)) brightness(1.1);
    animation: float 4s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
}

.btn-main {
    padding: 0.9rem 2.2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-main:hover {
    background: #002a4d;
    /* Even darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-main.outline {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--primary);
    /* Blue text */
}

.btn-main.outline:hover {
    background: transparent;
    color: var(--white);
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-main:hover::before {
    left: 100%;
}

/* --- INTUITIVE GRID --- */
section {
    padding: 100px 5%;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    grid-column: span 12;
    background: var(--white);
    border-radius: 40px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.info-card:nth-child(even) {
    flex-direction: row-reverse;
}

.info-card .img-box {
    flex: 1;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.info-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.info-card:hover img {
    transform: scale(1.05);
}

.info-card .text-box {
    flex: 1;
}

.info-card h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.info-card p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}

/* --- BOLD COUNTERS / STATS --- */
.stats-bar {
    background: var(--grad-blue);
    padding: 6rem 5%;
    display: flex;
    justify-content: space-around;
    color: white;
    border-radius: 50px;
    margin: 50px 5%;
}

.stat-item h3 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* --- FOOTER --- */
footer {
    background: var(--black);
    color: white;
    padding: 6rem 5%;
    text-align: center;
}

.footer-logo {
    width: 150px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

/* --- MOBILE NAVIGATION --- */
.nav-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    padding: 1rem 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:not(.btn-main) {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--secondary) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-content .floating-logo {
        width: 250px;
    }

    .info-card {
        flex-direction: column !important;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .info-card .img-box {
        height: 350px;
        width: 100%;
    }

    .info-card h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 10%;
    }

    .btn-main {
        width: 100%;
        padding: 1rem 2rem;
        text-align: center;
    }

    .stats-bar {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 5%;
        margin: 20px 5%;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .info-card {
        border-radius: 30px;
    }

    .info-card h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .floating-logo {
        width: 180px;
    }

    section {
        padding: 60px 5%;
    }
}

/* --- SLIDER STYLES --- */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
    min-width: 100%;
    height: 600px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 30px;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    pointer-events: auto;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slide {
        height: 400px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }
}