/* ===== SreeTech Solutions ===== */

:root{
    --primary:#0F4C81;
    --secondary:#00A8E8;
    --dark:#111827;
    --light:#F8FAFC;
    --text:#4B5563;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

h1,h2,h3,h4,h5,h6{
    color:var(--dark);
    font-weight:700;
}

section{
    padding:80px 0;
}

/* Navbar */

.nav-link{
    font-weight:500;
    color:#333 !important;
    margin:0 10px;
}

.nav-link.active{
    color:#0B5ED7 !important;
    font-weight:700;
}

.btn-primary{
    background:#0B5ED7;
    border:none;
    padding:10px 22px;
}

.btn-primary:hover{
    background:#084298;
}
.navbar-brand h4{
    font-size: 2rem;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.navbar{
    padding: 18px 0;
}
/* Hero */
/* ===== HERO SECTION ===== */

/* =========================
   HERO SECTION
========================= */

.hero-section{
    position: relative;
    min-height: 100vh;
    background: url('../images/hero.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11,61,145,.92) 0%,
        rgba(11,61,145,.82) 40%,
        rgba(11,61,145,.25) 70%,
        rgba(11,61,145,0) 100%
    );
}

.hero-content{
    position: relative;
    z-index: 2;
}

.hero-content h1,
.hero-content p{
    color: #fff;
}

.hero-img{
    display: none;
}
/* Mobile */

@media(max-width:991px){

.hero-section{
    min-height:auto;
    padding:70px 0;
}

.hero-content{
    text-align:center;
    margin-bottom:30px;
}

.hero-content h1{
    font-size:40px;
}

}
/* Cards */
.card{
    border:none;
    border-radius:16px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 35px rgba(0,0,0,.12)!important;
}

/* Buttons */
.btn-primary{
    background:#0F4C81;
    border:none;
    border-radius:10px;
    padding:12px 24px;
}

.btn-primary:hover{
    background:#0B3B64;
}

/* Client Grid */
.client-box{
    background:#fff;
    border-radius:12px;
    padding:20px;
    text-align:center;
    font-weight:600;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

/* Technology */
.tech-box{
    border:1px solid #E5E7EB;
    border-radius:12px;
    padding:18px;
    text-align:center;
    font-weight:600;
}

/* Forms */
.form-control,
.form-select{
    border-radius:10px;
    padding:12px;
}

/* Footer */
footer{
    background:#111827;
    color:#D1D5DB;
    padding:50px 0 20px;
}

footer h5{
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:20px;
    padding-top:15px;
    text-align:center;
}

/* Responsive */
@media(max-width:768px){

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:34px;
    }

    section{
        padding:60px 0;
    }

    .navbar-brand{
        font-size:22px;
    }

}

.about-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:24px;
}
.stats-box h3{
    margin-bottom:10px;
}

.cta-section .btn{
    border-radius:50px;
    padding:16px 40px;
    font-weight:600;
}

/* ===== SERVICES PAGE ===== */

.service-hero{
    background:#1546A0;   /* About page same color */
    color:#fff;
    padding:65px 0;       /* before 90px */
}

.hero-tag{
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    letter-spacing:1px;
}

.service-hero h1{
    font-size:54px;
    font-weight:700;
    margin:20px 0 15px;
}

.service-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    opacity:.9;
}

.services-grid{
    background:#F8FAFC;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(11,94,215,.18);
}

.service-card i{
    font-size:42px;
    color:#0B5ED7;
}

.service-card h4{
    margin:18px 0 12px;
    font-weight:700;
}

.service-card p{
    color:#64748B;
    line-height:1.7;
}

.service-card a{
    color:#0B5ED7;
    text-decoration:none;
    font-weight:600;
}