/* assets/css/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:#fff;
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:100px 0;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(7,12,25,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    height:50px;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#3b82f6;
}

.btn,
.primary-btn{
    display:inline-block;
    padding:14px 34px;
    background:#2563eb;
    color:#fff;
    border-radius:12px;
    transition:.35s;
}

.btn:hover,
.primary-btn:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

.secondary-btn{
    display:inline-block;
    padding:14px 34px;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    border-radius:12px;
    margin-left:15px;
}

.hero{
    padding-top:170px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(37,99,235,.15);
    border:1px solid rgba(37,99,235,.35);
    border-radius:50px;
    color:#60a5fa;
    margin-bottom:25px;
}

.hero h1{
    font-size:58px;
    line-height:1.15;
    margin-bottom:25px;
}

.hero p{
    color:#b8bfd3;
    font-size:18px;
    margin-bottom:35px;
}

.stats{
    display:flex;
    gap:45px;
    margin-top:50px;
}

.stats h2{
    color:#3b82f6;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#60a5fa;
    letter-spacing:2px;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
}

.about-grid,
.brand-grid,
.service-grid,
.stats-grid,
.why-grid,
.testimonial-grid,
.footer-grid{
    display:grid;
    gap:30px;
}

.about-grid{
    grid-template-columns:repeat(3,1fr);
}

.brand-grid{
    grid-template-columns:repeat(2,1fr);
}

.service-grid{
    grid-template-columns:repeat(3,1fr);
}

.stats-grid{
    grid-template-columns:repeat(4,1fr);
}

.why-grid{
    grid-template-columns:repeat(3,1fr);
}

.testimonial-grid{
    grid-template-columns:repeat(3,1fr);
}

.footer-grid{
    grid-template-columns:2fr 1fr 1fr;
}

.card,
.brand-card,
.service-card,
.stat-card,
.why-card,
.testimonial-card,
.faq-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px;
    backdrop-filter:blur(18px);
    transition:.35s;
}

.card:hover,
.brand-card:hover,
.service-card:hover,
.stat-card:hover,
.why-card:hover,
.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#2563eb;
}

.cta{
    text-align:center;
    background:linear-gradient(135deg,#1d4ed8,#2563eb);
}

.footer{
    padding:70px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:12px;
}

.footer a{
    color:#d4d7e5;
}

.copyright{
    margin-top:50px;
    text-align:center;
    color:#9ca3af;
}

#loader{
    position:fixed;
    inset:0;
    background:#050816;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.spinner{
    width:70px;
    height:70px;
    border:6px solid rgba(255,255,255,.1);
    border-top:6px solid #3b82f6;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}