body{
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar Styling */
.navbar{
    /* background: linear-gradient(90deg,#0f2027,#203a43,#2c5364); */
    background: #fff;
    padding: 12px 0;
}

 .navbar .nav-link.active{
  color: #0d6efd;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
}

.navbar-nav .nav-link{
    color:#333;
    font-size:16px;
    margin-left:12px;
    transition:0.3s;
}

.navbar-nav .nav-link:hover{
    color:#ffc107 !important;
}

/* Dropdown hover */
.nav-item.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
}

/* dropdown design */
.dropdown-menu{
    border-radius:10px;
    border:none;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.dropdown-item:hover{
    background:#ffc107;
    color:#000;
}

/* Button */
.login-btn{
    background:#ffc107;
    border:none;
    padding:8px 18px;
    border-radius:25px;
    font-weight:600;
    margin-right: 0;
}

.login-btn:hover{
    background:#ff9800;
}

/* Mobile spacing */
@media(max-width:991px){
    .navbar-nav{
        margin-top:15px;
    }
}

.logo-img{
    height:70px;
}

@media(max-width:768px){
    .logo-img{
        height:50px;
    }
}
/* footer */
.footer{
    background: linear-gradient(90deg,#0f2027,#203a43,#2c5364);
    color:#fff;
    padding-top:20px;
}

/* Quick Links Base */
.quick_links{
    list-style:none;
    padding:0;
    text-align:left;
}

.quick_links li{
    position:relative;
    margin-bottom:5px;
}

.quick_links a{
    text-decoration:none;
    color:#ddd;
    transition:0.3s;
}

.quick_links a:hover{
    color:#ffc107;
    padding-left:5px;
}

/* Submenu */
.footer-submenu{
    list-style:none;
    padding-left:15px;
    margin-top:5px;

    position:absolute;
    left:0;
    top:100%;
    background:#203a43;
    display:none;
    border-radius:5px;
    min-width:180px;
    z-index:100;
}

.footer-submenu li{
    margin:0;
}

/* Submenu link style */
.footer-submenu a{
    display:block;
    padding:8px 12px;
    color:#ddd;
}

.footer-submenu a:hover{
    background:#ffc107;
    color:#000;
}

/* Show submenu on hover */
.footer-dropdown:hover .footer-submenu{
    display:block;
}
    /* quick links */

.footer-title{
    font-weight:600;
    margin-bottom:15px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    text-decoration:none;
    color:#ddd;
    transition:0.3s;
}

.footer-links a:hover{
    color:#ffc107;
}

/* WhatsApp Button */
.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    text-decoration:none;
    font-size:14px;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
}

.footer-section a{
    color:#ffc107;
}

hr{
    border-color:#444;
}
/* footer social */
.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    text-decoration:none;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#203a43;
    color:#fff;
    font-size:18px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ffc107;
    color:#000;
    transform:scale(1.1);
}
/* quick links */
.quick_links{
    list-style-type: none;
   
}
/* sticky call & whatsapp */
.sticky-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.sticky-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #6c72e2;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.call-btn { background-color: #eef4f3; }
.whatsapp-btn { background-color: #25D366; }

.sticky-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* hero & home page */

/* HERO SECTION */
.hero-wiper-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    /* background-position: center; */
    background-position: center bottom;
    background-repeat: no-repeat;
    /* Use a high-quality Solar Panel or Tank image here */
    background-image: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=2070');
}


:root {
    --dirty-filter: blur(5px) brightness(0.7) contrast(0.9);
}

.dirty-version {
    filter: var(--dirty-filter);
    z-index: 1;
}

.clean-version {
    z-index: 2;
    clip-path: inset(0 100% 0 0); /* Starts hidden on the right */
}

/* The Squeegee/Hand Tool */
.squeegee-tool {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 5px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px var(--primary-blue);
    z-index: 10;
    transform: translateX(-100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hand-icon {
    font-size: 2.5rem;
    color: white;
    background: var(--primary-blue);
    padding: 15px;
    border-radius: 50%;
    position: absolute;
    left: -25px; /* Centers the hand on the wiper line */
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-3 { 
        font-size: 2.5rem; 
    }
    .hero-text-box { 
        text-align: center; 
    }
    .d-flex.gap-3 { 
        justify-content: center; 
    }
}

.hero-text-box {
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* SERVICES */

.services{
padding:90px 0;
background:#ffffff;
}

.services h2{
font-weight:700;
margin-bottom:10px;
}

.services p{
color:#6c757d;
}

.service-card{
border:none;
border-radius:14px;
transition:all 0.35s ease;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
background:#fff;
position:relative;
overflow:hidden;
}

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.service-icon{
margin-bottom:18px;
transition:0.3s;
}

.service-card:hover .service-icon{
transform:scale(1.1);
}

.service-card h5{
font-weight:600;
margin-bottom:10px;
}

.service-card p{
font-size:15px;
color:#666;
}

/* ABOUT SECTION */


.about{
background:#f8f9fa;
padding:50px 0;
}

.about h2{
font-weight:700;
padding: 20px 0;
}

.about p{
color:#555;
}

.about ul{

padding-left:18px;
margin-top:20px;
}

.about ul li{
margin-bottom:10px;

}

.about img{
border-radius:12px;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about img:hover{
transform:scale(1.05);
}

/* ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE */

@media(max-width:768px){

.hero{
padding:100px 20px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:17px;
}

.services{
padding:60px 0;
}

.about{
padding:60px 0;
}

}
/* why choose in about */
.why-choose .about_list{
    list-style-type: none;
    line-height: 1.8;

}
.about_list li{
display:flex;
align-items:flex-start;
margin-bottom:5px;
}
.why-choose .about_list li::before{
content:"✔";
color:green;
font-weight:bold;
}

/* blog section  */
.blog-hero{
background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url('https://images.unsplash.com/photo-1711224116673-fd729b3db180?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
background-size:cover;
background-position:center;
background-repeat: no-repeat;
color:white;
padding:140px 0;
text-align:center;
height: 80vh;
width: 100%;
}
.blog-card{
border-radius:12px;
overflow:hidden;
transition:all 0.3s ease;
background:#fff;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

/* Image */

.blog-img{
overflow:hidden;
}

.blog-img img{
width:100%;
height:auto;
transition:transform 0.4s ease;
}

.blog-card:hover img{
transform:scale(1.05);
}

/* Content */

.blog-title{
    text-align: center;
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
    color:#222;
}

.blog-text{
font-size:15px;
color:#666;
line-height:1.6;
}

/* Read More */

.read-more{
color:#0d6efd;
font-weight:500;
text-decoration:none;
}

.read-more:hover{
text-decoration:underline;
}

/* testimonials */
/* Hero */
.testimonial-hero{
background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url('https://images.unsplash.com/photo-1521791136064-7986c2920216');
background-size:cover;
background-position:center;
padding:120px 0;
color:white;
text-align:center;
}

.testimonial-hero h1{
font-size:45px;
font-weight:700;
}

/* Testimonial cards */

.testimonial-section{
padding:80px 0;
}

.testimonial-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
transition:0.3s;
height:100%;
}

.testimonial-card:hover{
transform:translateY(-8px);
}

.client-img{
width:70px;
height:70px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

.stars{
color:#ffc107;
margin-bottom:10px;
}

.client-name{
font-weight:600;
margin-top:10px;
}

/* Quote icon */

.quote-icon{
font-size:30px;
color:#28a745;
margin-bottom:10px;
}

/* gallery */
.gallery-hero{
background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
url('assets/img/gallery.webp');
background-size:cover;
background-position:center ;
background-repeat: no-repeat;
padding:140px 0;
color:white;
text-align:center;
height: 80vh;
}

.gallery-hero h1{
font-size:45px;
font-weight:700;
}

/* Gallery Section */

.gallery-section{
padding:80px 0;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:12px;
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.4s;
}

/* Hover Zoom */

.gallery-item:hover img{
transform:scale(1.1);
}

/* Overlay */

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.3s;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}

.gallery-overlay i{
color:white;
font-size:28px;
}

/* Title */

.gallery-title{
text-align:center;
margin-bottom:50px;
}

/* about us */
.about-hero{
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),
    url('https://images.unsplash.com/photo-1706808849780-7a04fbac83ef?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size:cover;
    /* background-position:center; */
    background-position: center top;
    background-repeat: no-repeat;
    padding:150px 0;
    color:white;
    text-align:center;
    height: 87vh;
}
.acout img{
    width: 100%;
    width: 60vh;
}

/* contact */
.cta{
background:#28a745;
color:white;
padding:60px 0;
text-align:center;
}
.contact-section{
background:#f8f9fa;
}

.contact-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
}

.contact-item{
display:flex;
align-items:flex-start;
gap:12px;
margin-bottom:15px;
font-size:15px;
}

.contact-item i{
color:#0d6efd;
font-size:18px;
margin-top:3px;
}

.contact-item a{
text-decoration:none;
color:#333;
}

.contact-item a:hover{
color:#0d6efd;
}

.whatsapp-btn{
background:#25D366;
color:#fff !important;
padding:6px 14px;
border-radius:20px;
font-size:14px;
}

.whatsapp-btn:hover{
background:#1ebe5d;
}

/* SERVICES */
/* solar-cleaning hero section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 85vh;
    overflow: hidden;
}

.hero-text h1 {
    color: #212529;
    line-height: 1.2;
}

.hero-img-container {
    position: relative;
    z-index: 1;
}

.hero-img-container img {
    transition: transform 0.5s ease;
}

.hero-img-container:hover img {
    transform: scale(1.02);
}

/* Floating Stat Card Effect */
.stat-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    width: 220px;
    border-left: 5px solid #198754;
    animation: float 3s ease-in-out infinite;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    .stat-card {
        display: none; /* Hide on small screens for cleaner look */
    }
}
/* 2,3,4 */
/* Smooth hover effect for cards */
.transition-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1) !important;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto;
}

/* Add Bootstrap Icons if you haven't already */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css");

/*water tank cleaning  */

/* Water Tank Specific Styles */
.text-info {
    color: #0dcaf0 !important;
}

.btn-info {
    background-color: #0dcaf0;
    border: none;
    transition: transform 0.2s ease;
}

.btn-info:hover {
    background-color: #0baccc;
    transform: translateY(-3px);
}

.process-step {
    padding: 15px;
}

.step-num {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: #0dcaf0;
    border: 2px solid #0dcaf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
}

/* Connect the steps with a line on large screens */
@media (min-width: 992px) {
    .process-step {
        position: relative;
    }
    .process-step:not(:last-child):after {
        content: '';
        position: absolute;
        top: 38px;
        left: 65%;
        width: 70%;
        height: 2px;
        background: #e9ecef;
        z-index: 0;
    }
}

/* cleaning process */
.cleaning-process{
background:#f8f9fa;
}

.process-title{
font-size:34px;
font-weight:700;
}

.process-subtitle{
color:#666;
font-size:16px;
max-width:700px;
margin:auto;
}

.process-card{
background:#fff;
padding:30px 20px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.process-icon{
font-size:40px;
color:#28a745;
margin-bottom:15px;
}

.process-card h5{
font-weight:600;
margin-bottom:10px;
}

.process-card p{
font-size:14px;
color:#555;
}

/* Mobile */

@media(max-width:768px){

.process-title{
font-size:26px;
}

.process-card{
padding:25px 15px;
}

}
/* service intro */
.service-intro{
background:#ffffff;
}

.intro-title{
font-size:34px;
font-weight:700;
margin-bottom:15px;
}

.intro-text{
color:#555;
font-size:16px;
margin-bottom:15px;
}

.intro-img img{
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
transition:0.4s;
}

.intro-img img:hover{
transform:scale(1.05);
}

.intro-features{
margin-top:20px;
}

.feature-item{
display:flex;
align-items:center;
gap:10px;
margin-bottom:10px;
font-weight:500;
}

.feature-item i{
color:#28a745;
font-size:18px;
}

.intro-btn{
padding:12px 28px;
border-radius:30px;
font-weight:600;
}

.intro-btn:hover{
transform:translateY(-2px);
}

/* Responsive */

@media(max-width:768px){

.intro-title{
font-size:26px;
}

.intro-text{
font-size:15px;
}

}

/* pest control services */
/* Hero Container */
.home-commercial p{
    color:#555;

}
.pest-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), 
                url('assets/img/pest-remove.webp');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

/* Insect Styling */
.insect-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* User can click through the insects */
}

.insect {
    position: absolute;
    color: rgba(231, 71, 71, 0.975); /* Subtle look */
    font-size: 2rem;
    top: var(--top);
    left: var(--left);
    animation: randomMove var(--speed) linear infinite;
    animation-delay: var(--delay);
}

/* Random Crawling Animation */
@keyframes randomMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 150px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, 80px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}


/* Responsive tweaks */
@media (max-width: 768px) {
    .pest-hero {
        text-align: center;
        min-height: 100vh;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .insect {
        font-size: 1.2rem; /* Smaller bugs on mobile */
    }
}
/* 2nd pest control */
.pest-services{
  background:#f8f9fa;
}

.section-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.section-subtitle{
  font-size:16px;
  color:#555;
  max-width:700px;
  margin:auto;
}

.service-card{
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:transform 0.3s, box-shadow 0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.service-icon{
  /* font-size:40px;
  color:#28a745; */
  margin-bottom:15px;
}

.service-card h5{
  font-weight:600;
  margin-bottom:10px;
}

.service-card p{
  font-size:14px;
  color:#555;
  padding: 0 8px;
}

/* Responsive */
@media(max-width:768px){
  .section-title{
    font-size:26px;
  }
  .section-subtitle{
    font-size:15px;
  }
  .service-card p{
    font-size:13px;
  }
}


/* solar maintenance */
.maintain-hero{
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('assets/img/solar-maintenance.webp');
    background-size:cover;
    background-position:center;
    color:white;
    padding:140px 0;
    height: 75vh;
    text-align:center;
}
.about-maintain  img{
    border-radius: 13px;
    transition: 0.3s ease;
}
.about-maintain img:hover{
     transform:scale(1.05);
}
/* maintenance process */
.miantenance-process h3{
    padding: 20px 0;
}
.miantenance-process .card p{
    padding: 0 15px;
}
.miantenance-process i{
    font-size: 50px;
    color: #1ebe5d;
    padding: 10px;
}
.miantenance-process .card{
    border: 4px;
    transition: 0.3s;
}
.miantenance-process .card:hover{
    transform: scale(1.05);
}
.miantenance-process h5{
    text-align: center;
}