/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    color:#333;
    line-height:1.7;
}

/* Navbar */
.navbar{
    transition:0.4s;
}

.navbar-brand{
    font-size:32px;
    font-weight:700;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    font-weight:500;
}

.nav-link:hover{
    color:#ffc107 !important;
}

/* Hero Section */
.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
}

.hero .btn{
    padding:15px 40px;
    border-radius:10px;
    font-size:20px;
    font-weight:600;
}

/* Section Title */
h2{
    font-weight:700;
    color:#0d6efd;
}

/* Cards */
.card{
    border:none;
    border-radius:15px;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* Buttons */
.btn-primary{
    background:#0d6efd;
    border:none;
}

.btn-primary:hover{
    background:#084298;
}

.btn-warning{
    color:#fff;
    font-weight:600;
}

/* About Section */
.about-section{
    padding:80px 0;
}

/* Services */
.service-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
}

.service-box:hover{
    background:#0d6efd;
    color:#fff;
}

/* Project Images */
.card img{
    height:250px;
    object-fit:cover;
}

/* Blog Cards */
.blog-card{
    background:white;
    padding:25px;
    border-radius:15px;
}

/* Contact Form */
form{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.form-control{
    padding:12px;
    border-radius:10px;
}

/* Footer */
footer{
    background:#111827;
}

footer h3,
footer h4{
    color:#ffc107;
}

footer a{
    color:white;
    transition:.3s;
}

footer a:hover{
    color:#ffc107;
}

/* Responsive */
@media(max-width:991px){

.hero h1{
    font-size:50px;
}

.hero p{
    font-size:18px;
}

}

@media(max-width:768px){

.hero{
    height:80vh;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:16px;
}

.navbar-brand{
    font-size:24px;
}

.card{
    margin-bottom:20px;
}

}

@media(max-width:576px){

.hero h1{
    font-size:30px;
}

.hero .btn{
    padding:12px 25px;
    font-size:16px;
}

}
/* ===========================
   Hero Slider
=========================== */

.slider-img{
    width:100%;
    height:550px;
    object-fit:cover;
    object-position:center;
}

.carousel-item{
    position:relative;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    z-index:1;
}

.carousel-caption{
    z-index:2;
    bottom:18%;
}

.carousel-caption h1{
    font-size:58px;
    font-weight:700;
}

.carousel-caption p{
    font-size:20px;
    margin:20px 0;
}

.carousel-caption .btn{
    padding:12px 35px;
    border-radius:8px;
}

/* Mobile */

@media(max-width:768px){

.slider-img{
    height:320px;
}

.carousel-caption{
    bottom:12%;
}

.carousel-caption h1{
    font-size:30px;
}

.carousel-caption p{
    font-size:15px;
}
.project-card{
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18)!important;
}

.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    height:260px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#0d6efd;
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.project-card h4{
    color:#0d6efd;
}

.project-card .btn{
    transition:.3s;
}

.project-card .btn:hover{
    transform:translateX(5px);
}
.carousel-caption .btn{
    padding:10px 20px;
    font-size:14px;
}

}

.carousel-caption{
    bottom:25%;
}

.carousel-caption h1{
    font-size:60px;
    font-weight:700;
}

.carousel-caption p{
    font-size:22px;
    margin:20px 0;
}

@media(max-width:768px){

.slider-image{
    height:500px;
}

.carousel-caption{
    bottom:15%;
}

.carousel-caption h1{
    font-size:34px;
}

.carousel-caption p{
    font-size:16px;
}

}
.about-hero{
    background:url('assets/images/about/banner.jpg') center center/cover;
    height:450px;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.about-hero .container{
    z-index:2;
}

.about-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
}

.value-box{
    background:#fff;
    padding:40px 20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.4s;
}

.value-box:hover{
    transform:translateY(-10px);
}

.value-box i{
    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;
}

.card{
    border-radius:20px;
}

@media(max-width:768px){

.about-hero{
    height:320px;
}

.about-hero h1{
    font-size:38px;
}

}
.service-card{
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15)!important;
}

.service-img{
    height:220px;
    width:100%;
    object-fit:cover;
}

.service-card:hover .service-img{
    transform:scale(1.08);
    transition:.5s;
}

.service-icon{
    width:80px;
    height:80px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:-40px auto 20px;
    position:relative;
    font-size:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.service-card .btn{
    border-radius:50px;
    padding:10px 25px;
}