﻿body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #010019;
    color: white;
    overflow-x: hidden;
}

/* Navbar */

.logo-container {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    height: 52px;
    width: auto;
}

.logo-text {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
    font-family: 'Inter',sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #010019;
    backdrop-filter: blur(20px);
    width: 100%;
    box-sizing: border-box;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

    .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: #c84cff;
        }

/* Buttons */

.primary-btn {
    background: linear-gradient(90deg,#6a11cb,#ff4ecd,#ff8a00);
    border: none;
    color: white;
    padding: 16px 28px;
    border-radius: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255,0,128,0.25);
}

.secondary-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    padding: 16px 28px;
    border-radius: 18px;
    cursor: pointer;
}

/* Hero */

.hero {
    padding: 10px 6% 40px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    background-image: url('/images/bg.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 560px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    min-width: 320px;
    max-width: 700px;
}

.hero-right {
    flex: 1;
    text-align: center;
    min-width: 320px;
}

.hero-title {
    font-size: 66px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-image {
    width: 700px;
    max-width: 100%;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.gradient-text {
    background: linear-gradient(90deg,#7b2ff7,#ff4ecd,#ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: #a7a7b3;
    max-width: 620px;
    line-height: 1.7;
}

/* Glow */

.glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,0,128,0.22), transparent 70%);
    bottom: -250px;
    left: 10%;
    z-index: -1;
}

/* Services */

.services {
    padding: 15px 6%;
}

.section-title {
    font-size: 44px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #9fa3b0;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 32px;
    transition: 0.3s;
    backdrop-filter: blur(20px);
}

    .service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255,255,255,0.2);
    }

    .service-card h3 {
        font-size: 24px;
        margin-top: 18px;
    }

/* Why Section */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: rgba(255,255,255,0.03);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* PARTNER SECTION */

.partner-section {
    margin: 80px 6%;
    padding: 60px 40px;
    border-radius: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    overflow: hidden;
}

.partner-title {
    font-size: 52px;
    margin-bottom: 14px;
    font-weight: 700;
}

.partner-subtitle {
    color: #b5b5c3;
    font-size: 18px;
    margin-bottom: 60px;
}

/* IMPORTANT FIX */

.partner-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 55px;
    flex-wrap: nowrap;
}

.partner-card {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.partner-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    min-height: 180px;
}

.partner-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.partner-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: white;
}

.partner-card p {
    color: #b5b5c3;
    line-height: 1.8;
    font-size: 18px;
}

.partner-btn {
    padding: 18px 48px;
    font-size: 18px;
    border-radius: 18px;
}

/* MOBILE */

@media(max-width:900px) {

    .partner-grid {
        flex-direction: column;
        gap: 40px;
    }

    .partner-divider {
        display: none;
    }

    .partner-title {
        font-size: 38px;
    }
}

/* FOOTER */

.footer {
    padding: 70px 6% 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: #02021a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 42px;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
}

.footer-brand p {
    color: #9fa3b0;
    line-height: 1.8;
    max-width: 320px;
}

.footer h4 {
    margin-bottom: 22px;
    font-size: 18px;
}

.footer a {
    display: block;
    color: #9fa3b0;
    text-decoration: none;
    margin-bottom: 14px;
    transition: 0.3s;
}

    .footer a:hover {
        color: white;
    }

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

.newsletter-text {
    color: #9fa3b0;
    margin-bottom: 18px;
    line-height: 1.6;
}

.newsletter-box {
    display: flex;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

    .newsletter-box input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 16px;
        color: white;
        outline: none;
    }

    .newsletter-box button {
        width: 60px;
        border: none;
        background: linear-gradient(90deg,#7b2ff7,#ff4ecd,#ff8a00);
        color: white;
        cursor: pointer;
    }

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: #8b8b95;
}

/* RESPONSIVE */

@media(max-width:900px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-bottom: 30px;
    }

        .partner-card:last-child {
            border-bottom: none;
        }
}

/* Responsive */

@media(max-width:900px) {

    .hero-title {
        font-size: 52px;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
