/* ===========================================
   GOOGLE FONT
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8fafc;

    color:#1e293b;

    overflow-x:hidden;

}

/* ===========================================
   NAVBAR
=========================================== */

.navbar{

    padding:18px 0;

    transition:.3s;

}

.navbar-brand{

    font-size:1.5rem;

    font-weight:700;

}

.nav-link{

    margin-left:18px;

    color:#334155;

    font-weight:500;

    transition:.3s;

}

.nav-link:hover{

    color:#0d6efd;

}

/* Logo Navbar */
.logo{

    width:50px;

    height:auto;

}

.about-slide{

    height:450px;

    object-fit:cover;

}

.carousel{

    border-radius:20px;

}

.carousel-item{

    overflow:hidden;

}

/* ===========================================
   BUTTON
=========================================== */

.btn-primary{

    background:#2563eb;

    border:none;

    transition:.3s;

}

.btn-primary:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(37,99,235,.3);

}

.btn-outline-primary:hover{

    transform:translateY(-3px);

}

/* ===========================================
   HERO
=========================================== */

.hero{

    padding-top:80px;

    padding-bottom:80px;

}

.hero h1{

    font-size:3.8rem;

    line-height:1.2;

}

.hero p{

    font-size:1.1rem;

}

.hero-image{

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.5s;

}

.hero-image:hover{

    transform:scale(1.02);

}

/* ===========================================
   SECTION
=========================================== */

section{

    padding:90px 0;

}

section h2{

    font-weight:700;

}

/* ===========================================
   SERVICES
=========================================== */

.services{

    background:white;

}

.service-card{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.service-card i{

    font-size:55px;

    color:#2563eb;

    margin-bottom:20px;

}

.service-card h4{

    margin-bottom:15px;

    font-weight:600;

}

/* ===========================================
   WHY US
=========================================== */

.why-box{

    background:white;

    border-radius:20px;

    text-align:center;

    padding:35px;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.why-box:hover{

    transform:translateY(-8px);

}

.why-box i{

    font-size:45px;

    color:#2563eb;

    margin-bottom:20px;

}

.why-box h5{

    margin-bottom:15px;

}

/* ===========================================
   COUNTER
=========================================== */

.counter-section{

    background:#2563eb;

    color:white;

}

.counter-section h2{

    font-size:50px;

    font-weight:700;

}

.counter-section p{

    margin-top:10px;

}

/* ===========================================
   CTA
=========================================== */

.cta{

    background:linear-gradient(135deg,#2563eb,#1e40af);

    color:white;

    border-radius:30px;

    margin:70px auto;

    width:90%;

}

.cta h2{

    font-size:2.4rem;

    margin-bottom:20px;

}

.cta p{

    margin-bottom:35px;

}

.cta .btn{

    color:#2563eb;

    font-weight:600;

}

/* ===========================================
   FOOTER
=========================================== */

.footer{

    background:#0f172a;

    color:white;

    padding:70px 0 25px;

}

.footer h3,
.footer h5{

    margin-bottom:20px;

}

.footer a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:white;

}

.footer li{

    margin-bottom:10px;

}

.footer hr{

    border-color:#334155;

    margin:40px 0;

}

.social-icons a{

    width:45px;

    height:45px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#1e293b;

    border-radius:50%;

    margin-right:10px;

    font-size:20px;

    transition:.3s;

}

.social-icons a:hover{

    background:#2563eb;

    transform:translateY(-5px);

}

/* ===========================================
   ABOUT PAGE
=========================================== */

.page-banner{

    background:linear-gradient(135deg,#2563eb,#1e40af);

    color:white;

    padding:100px 0;

    text-align:center;

}

.value-card{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.value-card:hover{

    transform:translateY(-8px);

}

.value-card i{

    font-size:42px;

    color:#2563eb;

    margin-bottom:20px;

}

/* ===========================================
   CONTACT
=========================================== */

.contact-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

    margin-bottom:30px;

}

.contact-card i{

    font-size:28px;

    color:#2563eb;

    margin-bottom:15px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.form-control{

    border-radius:12px;

    padding:12px 15px;

}

.form-control:focus{

    box-shadow:none;

    border-color:#2563eb;

}

/* ===========================================
   IMAGE
=========================================== */

img{

    max-width:100%;

}

.rounded-4{

    border-radius:20px!important;

}

/* ===========================================
   RESPONSIVE
=========================================== */

@media(max-width:991px){

.hero{

text-align:center;

}

.hero h1{

font-size:2.8rem;

}

.hero-image{

margin-top:40px;

}

.nav-link{

margin-left:0;

padding:12px 0;

}

.cta{

width:100%;

border-radius:0;

}

}

@media(max-width:768px){

.hero h1{

font-size:2.2rem;

}

section{

padding:60px 0;

}

.counter-section h2{

font-size:35px;

}

.page-banner{

padding:70px 0;

}



}