/* ===================================
   Global
=================================== */

body{
    font-family: "Segoe UI", sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.7;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
}

section{
    padding:70px 0;
}

/* ===================================
   Navbar
=================================== */

.navbar{
    transition:.3s;
}

.navbar-brand{
    font-size:22px;
    font-weight:700;
}

.navbar-brand img{
    border-radius:6px;
}

.navbar .nav-link{
    color:#fff !important;
    margin-left:10px;
    font-weight:500;
    transition:.3s;
}

.navbar .nav-link:hover{
    color:#ffc107 !important;
}

.navbar .active{
    color:#ffc107 !important;
}

/* ===================================
   Hero Section
=================================== */

.hero{
    background:#212529;
    color:#fff;
    padding:120px 0;
    text-align:center;
}

.hero h1{
    font-size:52px;
    font-weight:bold;
}

.hero p{
    font-size:20px;
    margin-top:20px;
}

/* ===================================
   Buttons
=================================== */

.btn{
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
}

/* ===================================
   Card
=================================== */

.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.card img{
    height:220px;
    object-fit:cover;
}

.card-body h5{
    font-weight:700;
}

.card-body a{
    color:#222;
}

.card-body a:hover{
    color:#0d6efd;
}

/* ===================================
   Services
=================================== */

#services h2{
    margin-bottom:40px;
    font-weight:bold;
}

/* ===================================
   Portfolio
=================================== */

#portfolio h2{
    margin-bottom:40px;
    font-weight:bold;
}

/* ===================================
   Blog
=================================== */

.badge{
    font-size:13px;
}

.blog-content img{
    max-width:100%;
    border-radius:10px;
    margin:20px 0;
}

/* ===================================
   Testimonials
=================================== */

.testimonial-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* ===================================
   Contact
=================================== */

form input,
form textarea,
form select{

    border-radius:10px !important;

    padding:12px;
}

form input:focus,
form textarea:focus,
form select:focus{

    box-shadow:none;

    border-color:#0d6efd;
}

/* ===================================
   Footer
=================================== */

footer{

    background:#212529;

    color:#fff;
}

footer h4,
footer h5{

    color:#fff;

    margin-bottom:20px;
}

footer a{

    color:#ddd;

    transition:.3s;
}

footer a:hover{

    color:#ffc107;

    padding-left:5px;
}

footer i{

    color:#ffc107;
}

footer hr{

    opacity:.15;
}

/* ===================================
   Social
=================================== */

footer .fs-3{

    transition:.3s;
}

footer .fs-3:hover{

    color:#ffc107 !important;

    transform:scale(1.2);
}

/* ===================================
   WhatsApp
=================================== */

.whatsapp{

    position:fixed;

    right:20px;

    bottom:20px;

    z-index:999;
}

.whatsapp img{

    border-radius:50%;

    transition:.3s;
}

.whatsapp img:hover{

    transform:scale(1.1);
}

/* ===================================
   Tables
=================================== */

.table{

    background:#fff;
}

.table th{

    background:#212529;

    color:#fff;
}

/* ===================================
   Pagination
=================================== */

.pagination{

    justify-content:center;
}

.page-link{

    color:#0d6efd;
}

.page-item.active .page-link{

    background:#0d6efd;

    border-color:#0d6efd;
}

/* ===================================
   Animation
=================================== */

.fade-up{

    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);
    }

    to{

        opacity:1;

        transform:translateY(0);
    }
}

/* ===================================
   Responsive
=================================== */

@media(max-width:991px){

    .navbar .btn{

        margin-top:10px;

        width:100%;
    }

    .navbar-nav{

        margin-top:15px;
    }

}

@media(max-width:768px){

    .hero{

        padding:80px 20px;
    }

    .hero h1{

        font-size:34px;
    }

    .hero p{

        font-size:17px;
    }

    .card img{

        height:200px;
    }

}

@media(max-width:576px){

    h1{

        font-size:30px;
    }

    h2{

        font-size:26px;
    }

    .navbar-brand{

        font-size:18px;
    }

    footer{

        text-align:center;
    }

    footer .col-lg-4{

        margin-bottom:30px;
    }

}

/* Navbar Logo */

.navbar-logo{

    height:50px;

    width:auto;

    max-width:180px;

    object-fit:contain;

}

@media (max-width:768px){

    .navbar-logo{

        height:40px;

        max-width:140px;

    }

}