﻿html {
    scroll-behavior: smooth;
}

/* GLOBAL */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background: url('/assets/images/bg_home.jpg') no-repeat center center fixed;
    background-size: cover;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(10, 20, 35, 0.50);
        z-index: -1;
    }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 20px 8%;
    background: #020617;
    position: sticky;
    top: 0;
    z-index: 100;
}


/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #38bdf8;
}

    .logo img {
        height: 32px;
    }

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: flex-end;
}

    .nav-links a {
        margin-left: 25px;
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: 0.3s;
        border-bottom: 2px solid transparent;
        padding-bottom: 4px;
    }

        .nav-links a:hover {
            color: #38bdf8;
        }

        .nav-links a.active {
            color: #38bdf8;
            border-bottom: 2px solid #0ea5e9;
            font-weight: 600;
        }


/* LOGIN BUTTON */
.btn-primary {
    display: inline-block;
    background: #38bdf8;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    margin-left: 25px;
    text-decoration: none;
}

    .btn-primary:hover {
        background: #0ea5e9;
        color: black;
    }

/* MOBILE TOGGLE BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Hamburger Button */
.menu-toggle {
    display: none; /* hidden on desktop */
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 200;
    padding: 6px 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* show toggle */
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #020617;
        width: 220px;
        display: none; /* hidden until toggle */
        flex-direction: column;
        padding: 20px;
        border-radius: 8px;
        z-index: 150;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

        .nav-links.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .nav-links a {
            margin: 12px 0;
            display: block;
        }
}





.btn-primary {
    background: #38bdf8;
    color: black;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
}

/* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 120px 20px;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.0);
    }

    .hero * {
        position: relative;
    }

    .hero h1 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .hero p {
        max-width: 700px;
        margin: auto;
        color: #cbd5f5;
        font-size: 18px;
    }

.hero-btn {
    margin-top: 30px;
    display: inline-block;
    padding: 14px 30px;
    background: #38bdf8;
    color: black;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}
    .hero-btn:hover {
          background: #0ea5e9;
          color: black;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 40px; 
}

.feature-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
}

    .feature-card h3 {
        margin-bottom: 15px;
        color: #38bdf8;
        text-align: center;
    }
.feature-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 10px;
    text-align: center; 
}

.feature-icon {
    width: 60px; 
    height: 60px;
    margin: 0 auto 15px; 
    display: block;
}

/* ABOUT */
.about {
    padding: 80px 8%;
    text-align: center;
}

    .about p {
        max-width: 700px;
        margin: auto;
        color: #cbd5f5;
        font-size: 18px;
    }

/* BENEFITS */
.benefits {
    padding: 80px 8%;
}

    .benefits ul {
        list-style: none;
        padding: 0;
        max-width: 600px;
        margin: auto;
    }

    .benefits li {
        margin-bottom: 15px;
        font-size: 18px;
    }

/* CONTACT */
.contact {
    padding: 80px 8%;
    text-align: center;
    background: #020617;
}

    .contact p {
        color: #cbd5f5;
    }

/* PRICING */
.pricing {
    padding: 100px 8%;
    text-align: center;
}

.pricing-sub {
    color: #cbd5f5;
    margin-top: -40px;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: #1e293b;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}

    .price-card:hover {
        transform: translateY(-10px);
    }

    .price-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #38bdf8;
    }

    .price-card h4 {
        font-size: 40px;
        margin-bottom: 20px;
    }

        .price-card h4 span {
            font-size: 16px;
            color: #94a3b8;
        }

    .price-card ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
        text-align: left;
    }

        .price-card ul li {
            margin-bottom: 12px;
            font-size: 15px;
        }

.price-btn {
    display: inline-block;
    background: #38bdf8;
    color: black;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

    .price-btn:hover {
        background: #0ea5e9;
    }

.popular {
    border: 2px solid #38bdf8;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #38bdf8;
    color: black;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}
/* FAQS */
.faqs {
    padding: 80px 8%;
    background: #0f172a; /* darker background for contrast */
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; /* spacing between FAQ cards */
    margin-top: 50px;
}

.faq-item {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    margin: 0 15px; /* margin on sides for breathing room */
}

    .faq-item h3 {
        color: #38bdf8;
        margin-bottom: 15px;
        font-size: 20px;
        text-align: left;
    }

    .faq-item p {
        color: #cbd5f5;
        font-size: 16px;
        line-height: 1.6;
    }


/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #020617;
    color: #94a3b8;
}

/* PARTICLES EFFECT */
.particles {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(56,189,248,0.15) 2px, transparent 2px), radial-gradient(circle at 80% 70%, rgba(56,189,248,0.12) 2px, transparent 2px), radial-gradient(circle at 40% 80%, rgba(56,189,248,0.10) 2px, transparent 2px);
    background-size: 200px 200px;
    animation: particlesMove 60s linear infinite;
    z-index: -1;
}

@keyframes particlesMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-1000px);
    }

}
