body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#334155;
}

/* Navbar */

.navbar{
    background:#fff !important;
    border:none !important;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    padding:10px 0;
}

.navbar-nav{
    float:right;
}

.navbar-nav li a{
    font-size:15px;
    font-weight:600;
    color:#334155 !important;
    transition:.3s;
}

.navbar-nav li a:hover{
    color:#16a34a !important;
}

/* Logo */

.navbar-brand img{
    height:65px !important;
}

/* Hero Slider */

#slider .item{
    height:100vh;
    min-height:700px;
    background-size:cover;
    background-position:center;
    position:relative;
}

#slider .item:before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(15,23,42,.70);
}

.carousel-caption{
    text-align:left;
    top:50%;
    transform:translateY(-50%);
    bottom:auto;
}

.carousel-caption h1{
    font-size:65px;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.carousel-caption h2{
    font-size:34px;
    font-weight:600;
    color:#22c55e;
    margin-bottom:20px;
}

.carousel-caption p{
    font-size:18px;
    line-height:30px;
    color:#f1f5f9;
}

/* Sections */

section{
    /*padding:90px 0;*/
}

.heading h2{
    font-size:40px;
    font-weight:700;
    color:#0f172a;
}

.heading span{
    color:#16a34a;
}

.line{
    width:90px;
    height:4px;
    background:#16a34a;
    margin:20px auto;
    border-radius:30px;
}

/* About */

#ab-sec,
.ab-sec{
    display:flex;
    align-items:center;
}

.ab-sec-img img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Services */

.service-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    margin-bottom:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
    min-height:250px;
}

.service-box:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.service-box i{
    font-size:42px;
    color:#16a34a;
}

.service-box h5{
    font-weight:700;
    margin-bottom:15px;
}

/* Branch Table */

.table{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.table thead{
    background:#16a34a;
    color:#fff;
}

.table thead th{
    border:none !important;
    padding:15px !important;
}

.table tbody td{
    padding:15px !important;
}

.table tbody tr:hover{
    background:#f0fdf4;
}

/* Portfolio */

.portfolio-item-inner{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.portfolio-item-inner img{
    transition:.5s;
}

.portfolio-item-inner:hover img{
    transform:scale(1.08);
}

/* Price Calculator */

#pricing{
    background:#f1f5f9;
}

.price-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-control{
    height:48px;
    border-radius:10px;
}

#PriceId span{
    display:inline-block;
    background:#16a34a;
    color:#fff !important;
    padding:15px 40px !important;
    border:none !important;
    border-radius:50px !important;
    font-size:28px !important;
}

/* Contact */

#contact{
    background:#fff;
}

.contact-sec-1{
    background:#f8fafc;
    padding:35px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-form li{
    margin-bottom:20px;
}

.contact-form i{
    font-size:24px;
    color:#16a34a;
}

input.form-control,
textarea.form-control{
    border-radius:10px;
}

.btn-send{
    background:#16a34a;
    color:#fff !important;
    padding:15px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-send:hover{
    background:#15803d;
}

/* Footer */

.footer{
    background:#0f172a;
    color:#fff;
    padding-top:70px;
}

.footer h4{
    color:#22c55e;
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    color:#cbd5e1;
}

.footer a:hover{
    color:#22c55e;
    text-decoration:none;
}

.copyright{
    padding:20px 0;
    color:#94a3b8;
}

/* Tracking Button */

.navbar-nav li:last-child a{
    color:#fff !important;
    border-radius:30px;
    padding:10px 25px !important;
}

/* Responsive */

@media(max-width:768px){

    .carousel-caption h1{
        font-size:40px;
    }

    .carousel-caption h2{
        font-size:22px;
    }

    .heading h2{
        font-size:30px;
    }

    .navbar-nav{
        float:none;
    }
}