 /* ==========================
   MARK PROTECTORS
   Premium Theme - Part 1
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f6f9fc;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   Header
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0b5ed7;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#0b5ed7;
}

/* ==========================
Hero
========================== */

.hero{

    min-height:100vh;

    background:linear-gradient(135deg,#0b5ed7,#4f8cff);

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

    padding:120px 20px 80px;

}

.overlay{

    max-width:850px;

}

.hero h4{

    font-size:18px;

    font-weight:500;

    margin-bottom:15px;

    opacity:.9;

}

.hero h1{

    font-size:60px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:20px;

    margin-bottom:40px;

}

/* Search */

.search-box{

    display:flex;

    background:#fff;

    border-radius:60px;

    overflow:hidden;

    max-width:650px;

    margin:auto;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.search-box input{

    flex:1;

    border:none;

    padding:18px 25px;

    font-size:17px;

    outline:none;

}

.search-box button{

    border:none;

    background:#22c55e;

    color:#fff;

    padding:0 35px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;

}

/* Buttons */

.hero-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#22c55e;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:40px;

    font-weight:600;

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:40px;

    font-weight:600;

}

/* Services */

.services{

    padding:90px 0;

}

.services h2{

    text-align:center;

    font-size:40px;

    margin-bottom:50px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:15px;

    color:#0b5ed7;

}

/* Responsive */

@media(max-width:768px){

.hero h1{

font-size:40px;

}

.hero p{

font-size:17px;

}

nav{

display:none;

}

.search-box{

flex-direction:column;

border-radius:20px;

}

.search-box button{

padding:16px;

}

}