/*==============================================================
KUMAR ELITE SECURITY
Author : Chandan Syal
==============================================================*/

:root{

    --primary:#0B2C5F;
    --secondary:#D4A017;
    --white:#ffffff;
    --dark:#0f172a;
    --text:#4b5563;
    --light:#f8fafc;
    --border:#e5e7eb;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:.3s;

}

ul{

    list-style:none;

}

.container{

    width:1200px;

    max-width:95%;

    margin:auto;

}

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-size:15px;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:10px;

}

.section-title h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

/*==================================================
TOP HEADER
==================================================*/

.top-header{

    background:var(--primary);

    color:#fff;

    font-size:14px;

    padding:10px 0;

}

.top-header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left span,
.top-right span{

    margin-right:25px;

}

.top-header i{

    color:var(--secondary);

    margin-right:8px;

}

/*==================================================
HEADER
==================================================*/

.main-header{

    position:sticky;

    top:0;

    z-index:999;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.main-header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

}

.logo img{

    height:65px;

}

.main-menu ul{

    display:flex;

    gap:35px;

}

.main-menu a{

    color:var(--dark);

    font-weight:600;

    font-size:16px;

    position:relative;

}

.main-menu a:after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.main-menu a:hover:after{

    width:100%;

}

.header-btn{

    background:var(--secondary);

    color:#fff;

    padding:14px 28px;

    border-radius:8px;

    font-weight:600;

}

.header-btn:hover{

    background:var(--primary);

}

/*==================================================
HERO
==================================================*/

.hero-section{

    position:relative;

    min-height:90vh;

    display:flex;

    align-items:center;

    background:url('../images/about.png') center center;

    background-size:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(11,44,95,.82);

}

.hero-content{

    position:relative;

    z-index:10;

    max-width:650px;

    color:#fff;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

    letter-spacing:1px;

    font-size:14px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:700;

}

.hero-content p{

    font-size:18px;

    margin-bottom:40px;

    color:#e5e7eb;

}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:var(--secondary);

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    display:inline-block;

}

.btn-primary:hover{

    background:#c18e00;

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:15px 34px;

    border-radius:8px;

    font-weight:600;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.main-header .container{

    flex-direction:column;

    height:auto;

    padding:20px 0;

}

.main-menu{

    margin:20px 0;

}

.hero-content h1{

    font-size:48px;

}

}

@media(max-width:768px){

.top-header{

    display:none;

}

.main-menu ul{

    flex-direction:column;

    gap:15px;

    text-align:center;

}

.hero-section{

    min-height:75vh;

}

.hero-content{

    text-align:center;

    margin:auto;

}

.hero-content h1{

    font-size:38px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-outline{

    width:100%;

    text-align:center;

}

.section-title h2{

    font-size:32px;

}

}

/*==================================================
ABOUT SECTION
==================================================*/

.about-section{

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:18px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.section-subtitle{

    display:inline-block;

    color:var(--secondary);

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.about-content h2{

    font-size:42px;

    color:var(--primary);

    line-height:1.25;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.about-list .item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:var(--dark);

}

.about-list i{

    color:#22c55e;

    font-size:18px;

}

/*==================================================
SERVICES
==================================================*/

.services-section{

    background:#edd0b678;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.service-box{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:16px;

    transition:.35s;

    border:1px solid #eef2f7;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.service-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.service-box i{

    width:80px;

    height:80px;

    line-height:80px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:34px;

    margin-bottom:25px;

}

.service-box:hover i{

    background:var(--secondary);

}

.service-box h3{

    color:var(--primary);

    font-size:24px;

    margin-bottom:15px;

}

.service-box p{

    color:#64748b;

}

/*==================================================
COUNTERS
==================================================*/

.counter-section{

    background:linear-gradient(rgba(11,44,95,.90),rgba(11,44,95,.90)),
    url('../images/counter-bg.jpg');

    background-size:cover;

    background-position:center;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.counter-box{

    color:#fff;

}

.counter-box h2{

    font-size:56px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:10px;

}

.counter-box span{

    font-size:18px;

    color:#fff;

    font-weight:500;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.about-grid{    grid-template-columns: 1fr;}

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

.counter-grid{

    grid-template-columns:repeat(2,1fr);

    row-gap:40px;

}

}

@media(max-width:767px){

.about-content h2{

    font-size:32px;

}

.about-list{

    grid-template-columns:1fr;

}

.services-grid{

    grid-template-columns:1fr;

}

.counter-grid{grid-template-columns:1fr;}

.service-box{

    padding:35px 25px;

}

.counter-box h2{

    font-size:42px;

}

}

.why-section{

background:#cccccc96;

padding:110px 0;

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.why-card{

background:#fff;

padding:40px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

text-align:center;

transition:.35s;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card i{

width:90px;

height:90px;

line-height:90px;

background:#0B2C5F;

color:#fff;

border-radius:50%;

font-size:34px;

margin-bottom:25px;

}

.why-card:hover i{

background:#D4A017;

}

.why-card h3{

margin-bottom:15px;

font-size:24px;

color:#0B2C5F;

}


#industries{
    background-color: #edd0b678;}
.industries-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:50px;

}

.industry-box{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

text-align:center;

transition:.3s;

}

.industry-box:hover{

background:#0B2C5F;

color:#fff;

transform:translateY(-8px);

}

.industry-box i{

font-size:42px;

color:#D4A017;

margin-bottom:20px;

}