:root{
    --primary:#0D47C7;
    --dark:#04132E;
    --dark-alt:#061B45;
    --gold:#D4A017;
    --light:#F5F7FA;
}

/* ======================================
   GLOBAL
====================================== */

body{
    font-family:"Segoe UI", sans-serif;
    background:#ffffff;
    color:#222;
}

.section-title{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:1rem;
}

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

.hero-section{
    padding:60px 0;
    background:linear-gradient(
        135deg,
        var(--dark),
        var(--dark-alt)
    );
    color:#fff;
}

.hero-title{
    font-size:3.5rem;
    font-weight:800;
    line-height:1.1;
}

.hero-title span{
    color:var(--primary);
}

.hero-subtitle{
    font-size:1.2rem;
    opacity:.9;
}

.hero-image{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* ======================================
   GRADIENT SECTIONS
====================================== */

.bg-primary-gradient{
    background:linear-gradient(
        135deg,
        var(--primary),
        #2563eb
    );
    color:#fff;
}

.cta-section{
    background:var(--dark);
    color:#fff;
}

/* ======================================
   SOLUTION CARDS
====================================== */

.solution-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

.solution-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.solution-card i{
    transition:.3s;
}

.solution-card:hover i{
    transform:scale(1.1);
}

.solution-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

/* ======================================
   PRODUCTS PAGE
====================================== */

.products-title{
    color:#ffffff;
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
}

.product-header{
    padding:80px 0;
}

.product-header p{
    font-size:1.2rem;
    opacity:.9;
}

.card-img-top{
    height:250px;
    object-fit:cover;
}

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

.stats-section{
    background:var(--dark);
    color:white;
}

.stats-box{
    padding:20px;
}

.stats-box h2{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:5px;
}

/* ======================================
   BRANDS SECTION
====================================== */

.brand-item{
    font-size:1.3rem;
    font-weight:600;
    color:#444;
    transition:.3s;
}

.brand-item:hover{
    color:var(--primary);
}

/* ======================================
   BUTTONS
====================================== */

.btn-primary{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-primary:hover{
    background:#0838a5;
    border-color:#0838a5;
}

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

@media (max-width:768px){

    .hero-section{
        padding:40px 0;
    }

    .hero-title{
        font-size:2.3rem;
        text-align:center;
    }

    .hero-subtitle{
        text-align:center;
    }

    .section-title{
        font-size:2rem;
    }

    .products-title{
        font-size:2rem;
    }

    .card-img-top{
        height:200px;
    }

    .stats-box h2{
        font-size:2rem;
    }
}