*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
overflow-x:hidden;
}

.navbar{

background:#071d3d;

padding:15px 0;

}

.navbar-brand{

font-size:28px;

}

.nav-link{

color:#fff!important;

margin-left:20px;

font-weight:500;

}

.nav-link:hover{

color:#ffc107!important;

}

.hero{

background:linear-gradient(rgba(5,20,50,.85),rgba(5,20,50,.85)),url(../images/bg.jpg);

background-size:cover;

background-position:center;

min-height:100vh;

display:flex;

align-items:center;

color:#fff;

padding-top:90px;

}

.hero h1{

font-size:65px;

font-weight:800;

margin:20px 0;

}

.hero p{

font-size:20px;

margin-bottom:30px;

}

.btn-warning{

padding:14px 35px;

font-weight:600;

}

@media(max-width:992px){

.hero{

text-align:center;

padding:120px 0 70px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

.navbar-brand{

font-size:22px;

}

}




.footer{
    background:#071d3d;
}

.footer-title{
    color:#FFC107;
    margin-bottom:20px;
    font-weight:700;
}

.footer ul{
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
    color:#ddd;
}

.footer ul li a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:#FFC107;
    padding-left:8px;
}

.footer p{
    color:#ddd;
    line-height:1.8;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#FFC107;
    color:#071d3d;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    margin-right:10px;
    font-size:18px;
    transition:.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#fff;
    transform:translateY(-5px);
}

.footer hr{
    opacity:.2;
}

@media(max-width:768px){

.footer{
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}





.services{
    background:#f8f9fa;
}

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.service-content{
    padding:30px;
    text-align:center;
}

.service-content i{
    font-size:45px;
    color:#FFC107;
    margin-bottom:20px;
}

.service-content h4{
    font-weight:700;
    margin-bottom:15px;
}

.service-content p{
    color:#666;
    margin-bottom:20px;
}

.service-content .btn{
    border-radius:50px;
    padding:10px 25px;
}

@media(max-width:768px){

.service-card img{
    height:220px;
}

.service-content{
    padding:25px;
}

}



/* Floating Buttons */

.floating-btns{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.call-btn,
.whatsapp-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:26px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    animation:pulse 2s infinite;
}

.call-btn{
    background:#0d6efd;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn:hover,
.whatsapp-btn:hover{
    color:#fff;
    transform:scale(1.1);
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media(max-width:768px){

.floating-btns{
    right:15px;
    bottom:15px;
}

.call-btn,
.whatsapp-btn{
    width:55px;
    height:55px;
    font-size:22px;
}

}

/* Small Mobile */
@media(max-width:480px){

.call-btn,
.whatsapp-btn{
    width:50px;
    height:50px;
    font-size:20px;
}

}




.hero-img{
    max-width:100%;
    height:auto;
    border-radius:20px;
    object-fit:cover;
    transition:0.4s ease;
}

.hero-img:hover{
    transform:scale(1.03);
}

/* Tablet */
@media (max-width:991px){
    .hero-img{
        max-width:85%;
        margin-top:30px;
    }
}

/* Mobile */
@media (max-width:576px){
    .hero-img{
        max-width:100%;
        margin-top:25px;
    }
}



.about-img{
    width:100%;
    max-width:600px;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    transition:0.4s ease;
}

.about-img:hover{
    transform:scale(1.03);
}

/* Tablet */
@media (max-width:991px){
    .about-img{
        max-width:100%;
        height:380px;
    }
}

/* Mobile */
@media (max-width:576px){
    .about-img{
        height:260px;
        border-radius:15px;
    }
}






/* ================= Breadcrumb ================= */

.breadcrumb-section{
    background:linear-gradient(rgba(5,27,53,.85),rgba(5,27,53,.85)),
    url("../images/solar.jpg");
    background-size:cover;
    background-position:center;
    padding:120px 0 80px;
    margin-top:80px;
}

.breadcrumb-title{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb{
    margin-bottom:0;
}

.breadcrumb-item a{
    color:#FFC107;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb-item.active{
    color:#fff;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#fff;
}

@media(max-width:768px){

.breadcrumb-section{
    padding:90px 0 60px;
}

.breadcrumb-title{
    font-size:34px;
}

}



/*================ Gallery =================*/

.gallery{
    background:#f8f9fa;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::before{
    opacity:1;
}

@media(max-width:768px){

.gallery-item img{
    height:220px;
}

}