:root{
    --primary:#0078D7;
    --secondary:#5DC64D;
    --dark:#0F172A;
    --light:#F8FAFC;
    --text:#334155;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

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

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(15,23,42,.95);
    backdrop-filter:blur(10px);
}

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

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    text-decoration:none;
    font-weight:700;
}

.logo img{
    height:45px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
    url('assets/hero-bg.png');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero .tagline{
    color:var(--secondary);
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 28px;
    border-radius:50px;
    background:var(--secondary);
    color:white;
    text-decoration:none;
    font-weight:600;
}

section{
    padding:100px 0;
}

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

.section-title h2{
    color:var(--dark);
    font-size:42px;
}


.card{
    padding:35px;
    border-radius:20px;
    background:white;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h3{
    color:var(--dark);
    margin-bottom:15px;
}

.about{
    background:var(--light);
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.stat{
    text-align:center;
}

.stat h3{
    color:var(--primary);
    font-size:40px;
}

.cta{
    background:var(--dark);
    color:white;
    text-align:center;
}

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

footer{
    background:#020617;
    color:#cbd5e1;
    text-align:center;
    padding:40px;
}

.page-header{
    padding:180px 0 100px;
    background:var(--dark);
    color:white;
    text-align:center;
}

.content{
    padding:80px 0;
}

.content h2{
    margin:30px 0 15px;
    color:var(--dark);
}

.contact-box{
    max-width:700px;
    margin:auto;
    text-align:center;
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@media(max-width:768px){

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

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

.nav-links{
    display:none;
}

.stats{
    grid-template-columns:repeat(2,1fr);
}

}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    height:52px;
    width:auto;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.brand-name{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.brand-tagline{
    color:#67d35f;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}
.nav-links a.active {
    color: #6bd14f;
}
/* ==========================
   SITE LAYOUT
========================== */

body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

.content{
    flex:1;
    padding:120px 0 80px;
}

footer{
    margin-top:auto;
    background:#020617;
    color:#cbd5e1;
    text-align:center;
    padding:40px;
}

/* ==========================
   BRANDING
========================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    height:52px;
    width:auto;
    display:block;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.brand-name{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.brand-tagline{
    color:#67d35f;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* ==========================
   PRODUCT CARDS
========================== */

.content .grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    min-height:260px;

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.icon-circle{
    width:90px;
    height:90px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.icon-circle i{
    font-size:40px;
}

/* Icon Colors */

.blue{
    background:#e8f1ff;
    color:#2563eb;
}

.green{
    background:#eaf8ea;
    color:#22c55e;
}

.purple{
    background:#f2ecff;
    color:#8b5cf6;
}

.orange{
    background:#fff3e8;
    color:#f59e0b;
}

.beige{
    background:#fff6e8;
    color:#d97706;
}

.cyan{
    background:#e8f8f8;
    color:#0891b2;
}

.content .card h3{
    font-size:1.45rem;
    line-height:1.3;
    margin-bottom:15px;
    color:var(--dark);
}

.content .card p{
    font-size:1rem;
    line-height:1.7;
}

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

@media(max-width:768px){

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

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

    .nav-links{
        display:none;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .content .grid{
        grid-template-columns:1fr;
    }

    .icon-circle{
        width:70px;
        height:70px;
    }

    .icon-circle i{
        font-size:30px;
    }

    .content .card h3{
        font-size:1.2rem;
    }
}
.contact-box h2{
    color:var(--dark);
    margin-bottom:20px;
}

.contact-box p{
    margin-bottom:12px;
    font-size:18px;
}

.contact-box a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

.contact-box a:hover{
    text-decoration:underline;
}