/* ===========================
   GOOGLE FONT
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#fff;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    padding:8px 0;
}
.navbar-brand{
    display:flex;
    align-items:center;
}

.logo{
    height: 110px;
    width:auto;
    display:block;

}

.nav-link{
    color:#222 !important;
    font-weight:500;
    margin-left:22px;
    transition:.3s;
}

.nav-link:hover{
    color:#E63946 !important;
}

.btn-danger{
    background:#E63946;
    border:none;
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;
}

.btn-danger:hover{
    background:#0B3C5D;
}section{
    scroll-margin-top:100px;
}

/*===========================
HERO
===========================*/

.hero{

    background:#081428;

    color:#fff;

    padding: 120px 0 80px;

    overflow:hidden;

}

.hero h5{

    color:#c79a2b;

    letter-spacing:3px;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:62px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.hero h1 span{

    color:#c79a2b;

}

.hero p{

    font-size:20px;

    color:#d9d9d9;

    line-height:1.8;

    margin-bottom:35px;

}

.hero .btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

}

.hero-image{

    border-radius:20px;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

    transition:.5s;

}


.hero-image:hover{

    transform:translateY(-10px);

}
/* ===========================
   ABOUT
=========================== */

.about{
    padding:100px 0;
}

.about h2{
    font-size:52px;
    line-height:1.25;
    font-weight:700;
    color:#081428;
    margin-bottom:25px;
}

.about p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;
}
.about p{
    max-width:560px;
}
/*===========================
SERVICE CARD UPGRADE
===========================*/

.service-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:all .35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
    border:1px solid #f1f1f1;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#c79a2b;
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card i{
    width:90px;
    height:90px;
    background:#c79a2b;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin:0 auto 25px;
    transition:.35s;
}

.service-card:hover i{
    transform:rotateY(180deg);
}

.service-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}/*===========================
ABOUT IMAGE
===========================*/

.about-image{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:.4s;
}

.about-image:hover{
    transform:scale(1.02);
}
.about .col-lg-6:first-child{
    padding-right:40px;
}

.about .col-lg-6:last-child{
    padding-left:40px;
}
section{
    padding:100px 0;
}
.servix-subtitle{
    color:#E63946;
    font-size:18px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.servix-title{
    font-size:48px;
    font-weight:700;
    color:#081428;
    margin-bottom:20px;
}

.servix-text{
    max-width:700px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}
.btn-primary-custom{
    background:#E63946;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
}
.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.about-features div{
    font-weight:600;
    color:#081428;
}
/*===========================
WHY CHOOSE SERVIX
===========================*/

.why-servix{
    background:#f8f9fa;
    padding:80px 0 40px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    border:1px solid #eee;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.why-card i{
    width:85px;
    height:85px;
    background:#081428;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin:0 auto 25px;
    transition:.3s;
}

.why-card:hover i{
    background:#C79A2B;
}

.why-card h4{
    font-size:22px;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    color:#666;
    line-height:1.8;
}/* EXPERIENCE */

.experience{
    background:#f8fafc;
}

.experience-card{
    background:#fff;
    border-radius:16px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.experience-card i{
    font-size:42px;
    color:#dc3545;
    margin-bottom:20px;
}

.experience-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.experience-card p{
    color:#666;
    line-height:1.7;
}

.experience-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}/* ===========================
   CLIENTS
=========================== */

.clients{
    background:#ffffff;
}

.client-logo{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:25px;
    height:130px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;
}

.client-logo img{
    max-width:140px;
    max-height:70px;
    width:auto;
    height:auto;
    object-fit:contain;

    filter:grayscale(100%);
    opacity:.75;

    transition:.35s;
}

.client-logo:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.client-logo:hover img{
    filter:none;
    opacity:1;
}/* ======================================
   RESPONSIVE DESIGN
====================================== */

/* Tablets */
@media (max-width: 991px) {

    .navbar-nav{
        text-align:center;
        padding-top:15px;
    }

    .hero{
        text-align:center;
        padding:100px 0 70px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:17px;
    }

    .hero img{
        margin-top:40px;
        max-width:80%;
    }

    .about img{
        margin-bottom:30px;
    }

    .section-title{
        font-size:34px;
    }

    .experience-card,
    .service-card,
    .client-logo{
        margin-bottom:20px;
    }

    .contact-info{
        margin-bottom:40px;
    }

}

/* Mobile Phones */

@media (max-width:768px){

    section{
        padding:70px 0;
    }

    .hero{
    padding: 90px 0 60px;
}

    .hero h1{
    font-size:30px;
    line-height:1.25;
}
    .hero p{
    max-width:100%;
    padding:0 10px;
}

    .section-title{
        font-size:28px;
    }

    .section-subtitle{
        font-size:15px;
    }

    .btn{
        width:100%;
        margin-bottom:15px;
    }

    .hero img{
        max-width:100%;
    }

    .contact-form{
        padding:25px;
    }

}

/* Small Phones */

@media (max-width:576px){

    .navbar-brand img{
    height:50px;
    width:auto;
}

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title{
        font-size:25px;
    }

    .info-box{
        flex-direction:column;
        text-align:center;
    }

    .info-box i{
        margin:auto;
    }

    .client-logo{
        height:110px;
    }

}