/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo h2{
    color:#2563eb;
    font-size:30px;
    font-weight:800;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#2563eb;
}

.btn{
    background:#2563eb;
    color:#fff;
    padding:12px 24px;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* =========================
   HERO
========================= */

.hero{
    padding:100px 0;
    text-align:center;
    background:linear-gradient(to bottom,#ffffff,#f8fbff);
}

.hero h1{
    font-size:58px;
    font-weight:800;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#666;
    max-width:700px;
    margin:auto;
}

.domain-search{
    margin-top:40px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

.domain-search input{
    width:500px;
    max-width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px 0 0 10px;
    outline:none;
}

.domain-search button{
    padding:18px 30px;
    border:none;
    background:#2563eb;
    color:white;
    font-weight:600;
    cursor:pointer;
    border-radius:0 10px 10px 0;
}

.domain-price{
    margin-top:30px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.domain-price span{
    background:#fff;
    padding:10px 20px;
    border-radius:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-weight:600;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:90px 0;
}

.services h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

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

.card i{
    font-size:50px;
    color:#2563eb;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:10px;
}

.card p{
    color:#666;
}

.card a{
    display:inline-block;
    margin-top:20px;
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

/* =========================
   WHY US
========================= */

.why-us{
    padding:90px 0;
    background:#f8fbff;
}

.why-us h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
}

.features div{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:15px;
}

.features i{
    font-size:40px;
    color:#2563eb;
    margin-bottom:15px;
}

/* =========================
   PLANS
========================= */

.plans{
    padding:100px 0;
}

.plans h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.plan{
    border:1px solid #eee;
    border-radius:20px;
    text-align:center;
    padding:40px;
    transition:.3s;
}

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

.featured{
    background:#2563eb;
    color:#fff;
}

.plan h1{
    margin:20px 0;
    font-size:50px;
}

.plan ul{
    list-style:none;
    margin:25px 0;
}

.plan ul li{
    margin:12px 0;
}

.plan a{
    display:inline-block;
    padding:12px 25px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

.featured a{
    background:#fff;
    color:#2563eb;
}

/* =========================
   STATS
========================= */

.stats{
    padding:90px 0;
    background:#f8fbff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    text-align:center;
    gap:30px;
}

.stats-grid h2{
    font-size:50px;
    color:#2563eb;
}

/* =========================
   REVIEWS
========================= */

.reviews{
    padding:100px 0;
}

.reviews h2{
    text-align:center;
    margin-bottom:50px;
    font-size:40px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.review{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review p{
    margin:15px 0;
}

/* =========================
   FAQ
========================= */

.faq{
    background:#f8fbff;
    padding:100px 0;
}

.faq h2{
    text-align:center;
    margin-bottom:40px;
}

.faq-item{
    background:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* =========================
   CTA
========================= */

.cta{
    padding:100px 0;
    text-align:center;
}

.cta h2{
    font-size:45px;
    margin-bottom:15px;
}

.cta p{
    margin-bottom:30px;
    color:#666;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111827;
    color:#fff;
    padding-top:70px;
}

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

.footer-grid h4{
    margin-bottom:15px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid ul li{
    margin-bottom:10px;
    color:#ccc;
}

.footer-grid i{
    font-size:22px;
    margin-right:12px;
    cursor:pointer;
}

.copyright{
    text-align:center;
    padding:25px;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#aaa;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .header .container{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero h1{
        font-size:40px;
    }
}

@media(max-width:768px){

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .domain-search{
        flex-direction:column;
        align-items:center;
    }

    .domain-search input{
        border-radius:10px;
        width:100%;
    }

    .domain-search button{
        border-radius:10px;
        margin-top:10px;
        width:100%;
        max-width:500px;
    }

    .services h2,
    .plans h2,
    .reviews h2,
    .why-us h2{
        font-size:30px;
    }

    .cta h2{
        font-size:30px;
    }
}