/* =========================
        style.css
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f7ff;
    color:#1e293b;
    overflow-x:hidden;
    line-height:1.7;
}

/* =========================
        NAVBAR
========================= */

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 7%;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(10px);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.logo h2{
    color:#6c63ff;
    font-size:28px;
    font-weight:700;
}

.nav-links{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.nav-links a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
    transition:0.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#6c63ff;
    transition:0.3s;
}

.nav-links a:hover{
    color:#6c63ff;
}

.nav-links a:hover::after{
    width:100%;
}

/* =========================
        HERO SECTION
========================= */

.hero{
    min-height:100vh;
    background:
        linear-gradient(rgba(15,23,42,0.65),
        rgba(15,23,42,0.65)),
        url('https://images.unsplash.com/photo-1520869562399-e772f042f422?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px;
    color:white;
}

.hero-content{
    max-width:900px;
}

.tag{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.2);
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:65px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:800;
}

.hero p{
    font-size:18px;
    max-width:760px;
    margin:auto;
    opacity:0.95;
}

/* =========================
        BUTTONS
========================= */

.hero-buttons{
    margin-top:35px;
}

.primary-btn,
.secondary-btn,
.pricing-card button,
.cta button{
    padding:15px 32px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.primary-btn{
    background:white;
    color:#6c63ff;
    margin-right:12px;
}

.secondary-btn{
    background:transparent;
    color:white;
    border:1px solid rgba(255,255,255,0.3);
}

.primary-btn:hover,
.secondary-btn:hover,
.pricing-card button:hover,
.cta button:hover{
    transform:translateY(-5px);
}

/* =========================
        HERO STATS
========================= */

.hero-stats{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.stat-box{
    background:rgba(255,255,255,0.1);
    padding:25px;
    border-radius:18px;
    backdrop-filter:blur(10px);
}

.stat-box h3{
    font-size:32px;
    margin-bottom:5px;
}

/* =========================
        GENERAL SECTION
========================= */

section{
    padding:90px 7%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
    color:#0f172a;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
}

/* =========================
        GRID
========================= */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* =========================
        CARDS
========================= */

.card{
    background:white;
    border-radius:22px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:0.35s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:20px;
}

.card h3{
    color:#6c63ff;
    margin-bottom:15px;
    font-size:22px;
}

.card p{
    color:#64748b;
    font-size:15px;
}

.icon{
    font-size:40px;
    margin-bottom:15px;
}

/* =========================
        NETWORK SECTION
========================= */

.network-section{
    background:white;
    border-radius:30px;
    margin:0 7%;
}

.network-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.network-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

.network-text h2{
    font-size:42px;
    margin-bottom:20px;
}

.network-text p{
    color:#64748b;
    margin-bottom:20px;
}

.network-text ul{
    list-style:none;
}

.network-text ul li{
    margin-bottom:12px;
    color:#334155;
}

/* =========================
        PRICING
========================= */

.pricing-card{
    background:white;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
}

.pricing-card:hover{
    transform:translateY(-10px);
}

.featured{
    background:linear-gradient(135deg,#6c63ff,#00c2cb);
    color:white;
}

.featured h3,
.featured ul li,
.featured .price{
    color:white;
}

.popular-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#0f172a;
    color:white;
    padding:8px 20px;
    border-radius:50px;
    font-size:13px;
}

.price{
    font-size:52px;
    color:#6c63ff;
    font-weight:700;
    margin:20px 0;
}

.price span{
    font-size:18px;
}

.pricing-card ul{
    list-style:none;
    margin-bottom:25px;
}

.pricing-card ul li{
    margin:12px 0;
    color:#475569;
}

.pricing-card button{
    background:#6c63ff;
    color:white;
}

.featured button{
    background:white;
    color:#6c63ff;
}

/* =========================
        TESTIMONIAL
========================= */

.testimonial{
    background:white;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.testimonial p{
    font-style:italic;
    color:#475569;
    margin-bottom:20px;
}

.testimonial strong{
    color:#6c63ff;
}

/* ================= CTA CALL BUTTON ================= */
.cta-call-btn{
    display: inline-block;
    background: #ff4d4d;
    color: #fff;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.3);
}

.cta-call-btn:hover{
    transform: scale(1.05);
    background: #e60000;
}/* =========================
        FOOTER
========================= */

footer{
    background:#0f172a;
    color:white;
    padding:80px 7% 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer-grid h3{
    margin-bottom:20px;
    color:#6c63ff;
}

.footer-grid p,
.footer-grid a{
    color:#cbd5e1;
    text-decoration:none;
    display:block;
    margin-bottom:12px;
    transition:0.3s;
}

.footer-grid a:hover{
    color:white;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:25px;
    text-align:center;
    color:#94a3b8;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:991px){

    .hero h1{
        font-size:48px;
    }

    .network-content{
        grid-template-columns:1fr;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
        padding:20px;
    }

    .nav-links{
        justify-content:center;
        gap:18px;
    }

    .hero{
        min-height:auto;
        padding:120px 20px 80px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .section-title h2{
        font-size:32px;
    }

    .network-text h2{
        font-size:32px;
    }

    .cta h2{
        font-size:34px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .primary-btn{
        margin-right:0;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:30px;
    }

    .section-title h2{
        font-size:28px;
    }

    .price{
        font-size:40px;
    }

}

/* ================= LOGO STYLING ================= */
.logo img{
    height: 70px;
    width: auto;
}

footer img{
    display: block;
}