/* ==========================
   GOOGLE FONT
========================== */

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

:root{
    --primary:#4f46e5;
    --secondary:#7c3aed;
    --accent:#06b6d4;
    --dark:#0f172a;
    --text:#475569;
    --light:#f8fafc;
    --white:#ffffff;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

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

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.left-top{
    display:flex;
    align-items:center;
    gap:8px;
}

.right-top{
    display:flex;
    gap:20px;
}

.right-top a{
    color:#fff;
    transition:.3s;
}

.right-top a:hover{
    opacity:.8;
}

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

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

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

.logo{
    font-size:32px;
    font-weight:800;
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

nav ul{
    display:flex;
    gap:30px;
}

nav ul li a{
    color:var(--dark);
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:var(--primary);
}

.order-btn{
    padding:13px 28px;
    border-radius:12px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
    transition:.3s;
}

.order-btn:hover{
    transform:translateY(-3px);
}

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

.hero{
    padding:100px 0;
    background:
    linear-gradient(
    135deg,
    rgba(79,70,229,.05),
    rgba(124,58,237,.08)
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.rating{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#eef2ff;
    color:var(--primary);
    font-weight:600;
    margin-bottom:25px;
}

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

.hero-content p{
    color:var(--text);
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:40px;
}

.primary-btn{
    padding:15px 30px;
    border-radius:12px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
}

.secondary-btn{
    padding:15px 30px;
    border-radius:12px;
    border:2px solid var(--primary);
    color:var(--primary);
    font-weight:600;
}

.primary-btn:hover,
.secondary-btn:hover{
    transform:translateY(-3px);
}

.hero-stats{
    display:flex;
    gap:40px;
}

.hero-stats h3{
    font-size:28px;
    color:var(--primary);
}

.hero-stats span{
    color:var(--text);
}

.hero-image img{
    border-radius:30px;
    box-shadow:var(--shadow);
}

/* ==========================
   DOMAIN SEARCH
========================== */

.domain-search{
    padding:90px 0;
    text-align:center;
}

.domain-search h2{
    font-size:42px;
    margin-bottom:40px;
}

.search-box{
    display:flex;
    justify-content:center;
    max-width:800px;
    margin:auto;
}

.search-box input{
    flex:1;
    padding:18px;
    border:1px solid #ddd;
    border-radius:12px 0 0 12px;
    font-size:16px;
    outline:none;
}

.search-box button{
    border:none;
    padding:18px 35px;
    cursor:pointer;
    color:#fff;
    font-weight:600;
    border-radius:0 12px 12px 0;
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
}

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

.domain-prices div{
    background:#fff;
    padding:15px 25px;
    border-radius:15px;
    box-shadow:var(--shadow);
    font-weight:600;
}

.domain-prices span{
    color:var(--primary);
    margin-left:8px;
}

/* ==========================
   SECTION TITLE
========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:10px;
}

.section-title p{
    color:var(--text);
}

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

.services{
    padding:100px 0;
    background:#f8fafc;
}

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

.service-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

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

.service-card i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:var(--text);
    margin-bottom:25px;
}

.service-card a{
    color:var(--primary);
    font-weight:600;
}
/* ==========================
   FEATURES SECTION
========================== */

.features{
    padding:100px 0;
    background:#fff;
}

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

.feature-box{
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

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

.feature-box i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:18px;
}

.feature-box h3{
    font-size:20px;
}

/* ==========================
   PRICING SECTION
========================== */

.pricing{
    padding:100px 0;
    background:#f8fafc;
}

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

.plan{
    position:relative;
    background:#fff;
    border-radius:25px;
    padding:45px 35px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.4s;
}

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

.plan h3{
    font-size:28px;
    margin-bottom:15px;
}

.price{
    font-size:60px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:25px;
}

.plan ul{
    margin-bottom:30px;
}

.plan ul li{
    padding:10px 0;
    color:var(--text);
    border-bottom:1px solid #eee;
}

.plan a{
    display:inline-block;
    padding:14px 28px;
    border-radius:12px;
    color:#fff;
    font-weight:600;
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
}

.popular{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
    color:#fff;
    transform:scale(1.05);
}

.popular .price,
.popular ul li{
    color:#fff;
    border-color:rgba(255,255,255,.2);
}

.popular a{
    background:#fff;
    color:var(--primary);
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#06b6d4;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

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

.stats{
    padding:100px 0;
    background:#fff;
}

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

.stat-card{
    background:#fff;
    text-align:center;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.4s;
}

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

.stat-card h2{
    font-size:50px;
    color:var(--primary);
    margin-bottom:10px;
}

.stat-card p{
    color:var(--text);
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials{
    padding:100px 0;
    background:#f8fafc;
}

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

.testimonial{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.stars{
    color:#fbbf24;
    font-size:20px;
    margin-bottom:15px;
}

.testimonial p{
    color:var(--text);
    margin-bottom:20px;
    line-height:1.8;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    font-size:18px;
}

.client span{
    color:var(--text);
    font-size:14px;
}

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

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

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:16px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.faq-question{
    padding:22px 25px;
    cursor:pointer;
    font-weight:600;
}

.faq-answer{
    padding:0 25px 25px;
    color:var(--text);
}

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

.cta{
    padding:100px 0;
}

.cta-box{
    background:linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );
    padding:70px 40px;
    border-radius:30px;
    text-align:center;
    color:#fff;
}

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

.cta-box p{
    margin-bottom:30px;
    opacity:.9;
}

.cta-box a{
    display:inline-block;
    padding:15px 35px;
    background:#fff;
    color:var(--primary);
    border-radius:12px;
    font-weight:700;
}

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

footer{
    background:#0f172a;
    color:#fff;
    padding-top:80px;
}

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

.footer-col h3{
    margin-bottom:20px;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#fff;
}

.payment-icons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:15px;
}

.payment-icons span{
    background:#1e293b;
    padding:8px 14px;
    border-radius:8px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#1e293b;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
    color:#94a3b8;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-stats{
        justify-content:center;
    }

    nav ul{
        gap:15px;
    }

    .hero-content h1{
        font-size:45px;
    }
}

@media(max-width:768px){

    .top-bar .container{
        flex-direction:column;
        gap:10px;
    }

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

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

    .hero-content h1{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .search-box{
        flex-direction:column;
    }

    .search-box input{
        border-radius:12px;
        margin-bottom:10px;
    }

    .search-box button{
        border-radius:12px;
    }

    .section-title h2{
        font-size:32px;
    }

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

    .price{
        font-size:45px;
    }

    .popular{
        transform:none;
    }
}