
/* footer section */

.kb-footer-section {
    background-color: #284e73;
    color: #fff;
    /* padding-bottom: 20px; */
    font-family: 'Poppins', sans-serif;
}

.kb-footer-left {
    /* background-color: #F26722; */
    padding: 50px 30px;
}

.kb-footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.kb-footer-address {
    font-size: 15px;
    line-height: 22px;
    /* max-width: 280px; */
    /* margin: 0 auto; */
}

.kb-footer-address i {
    font-size: 18px;
    margin-right: 8px;
}

.kb-footer-social {
    margin-top: 25px;
}

.kb-footer-social a {
    color: #fff;
    font-size: 20px;
    margin: 0 12px;
    transition: .3s;
}

.kb-footer-social a:hover {
    opacity: .7;
}

.kb-footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 20px;
}

.kb-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kb-footer-list li {
    font-size: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: .3s;
}

.kb-footer-list a{
    margin-right: 8px;
    color: #ffffff;
}

.kb-footer-list a:hover {
    padding-left: 5px;
    color: #F26722;
}

.kb-footer-contact {
    font-size: 14px;
    margin-bottom: 12px;
}

.kb-footer-contact a {
    margin-right: 10px;
    color: #ffffff;
}

.kb-footer-contact a:hover {
    padding-left: 5px;
    color: #F26722;
}

.kb-footer-bottom-line {
    border-top: 1px solid rgba(255,255,255,0.3);
    /* margin-top: 25px; */
}




/* Full screen loader */
#borewellWaterLoader {
    position: fixed;
    inset: 0;
    background: #0F2C49;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease;
}

/* Borewell Pipe */
.borewell-body {
    width: 120px;
    height: 350px;
    background: #1A3A59;
    border: 6px solid #6A8EB3;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px #000;
}

/* Water surface at bottom */
.water-surface {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, #54D1FF, #0096D6);
}

/* Water drops */
.drop {
    position: absolute;
    top: -20px;
    left: 50%;
    width: 8px;
    height: 16px;
    background: #54D1FF;
    border-radius: 50%;
    animation: dropFall 1.5s infinite ease-in;
    transform: translateX(-50%);
}

/* Different delays for natural dripping */
.drop:nth-child(2) {
    left: 40%;
    animation-delay: 0.5s;
}

.drop:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
}

/* Drop falling animation */
@keyframes dropFall {
    0% {
        top: -20px;
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 260px;
        opacity: 0;
    }
}

/* Splash ripple */
.splash {
    position: absolute;
    bottom: 45px;
    left: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #AEE9FF;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: splashRipple 1.5s infinite ease-out;
}

/* Splash animation */
@keyframes splashRipple {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

/* Fade out */
.fadeOutLoader {
    opacity: 0;
}
