@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.about-img {
    width: 100%;
}

/* Experience Box */
.exp-box {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #0F2C49;
    ;
    padding: 18px 28px;
    text-align: center;
    color: #fff;
}

.exp-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #ff5722;
}

.exp-box span {
    font-size: 14px;
}

/* Right side */
.about-label {
    color: #ff5722;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: #0F2C49;
}

.orange {
    color: #ff5722;
}

.blue {
    color: #0F2C49;
}

.about-text {
    font-size: 15px;
    color: #555;
    margin-top: 15px;
}

/* Bullet list */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.service-list li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
}

.service-list li::before {
    content: "✔";
    color: #ff5722;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Button */
.about-btn {
    background-color: #ff5722;
    color: #fff;
    padding: 10px 28px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: 600;
    display: inline-block;
}

.about-btn:hover {
    background-color: #e64a19;
}

.about-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.about-heading .line {
    width: 35px;
    height: 3px;
    background: #ff5722;
    display: inline-block;
    border-radius: 10px;
    margin-bottom: 10px;
}


/* service section */

.services-section {
    background: #f7f2eb;
}

/* Heading */
.services-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-heading .line {
    width: 35px;
    height: 3px;
    background: #ff5722;
    border-radius: 10px;
}

.services-label {
    font-weight: 600;
    margin: 0;
    color: #0F2C49;

}

/* Main Title */
.services-title {
    font-size: 32px;
    margin-top: 10px;
    font-weight: 800;
    color: #0F2C49;
}

.highlight-orange {
    color: #ff5722;
}

/* Card Styles */
.service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-body {
    padding: 15px;
    text-align: left;
}

.service-title {
    font-weight: 700;
    color: #0F2C49;
}

.service-text {
    color: #444;
    font-size: 14px;
    margin: 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* LIMIT TO 2 LINES */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-link {
    color: #ff5722;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: block;
    text-align: center;
    /* CENTER ALIGN */
    margin-top: 10px;
}

.service-link:hover {
    text-decoration: underline;
}


/* gallery section */

.gallery-section {
    width: 90%;
    margin: auto;
    padding: 40px 0;
}

.gallery-label {
    font-size: 16px;
    color: #1a2a44;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 75%;
    margin: auto;
}

.gallery-label .line {
    display: inline-block;
    width: 35px;
    height: 3px;
    background: #ff5722;
    border-radius: 10px;
}

.gallery-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a2a44;
    width: 75%;
    margin: auto;
}

.cc_a {
    margin-bottom: 30px;
}

.gallery-title span {
    color: #ff5c24;
}

.gallery-carousel {
    width: 100%;
}

.g-item {
    overflow: hidden;
    border-radius: 10px;
}

.g-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.view-more-btn {
    margin-top: 35px;
    text-align: center;

}

.view-more-btn a {
    background: #09203f;
    padding: 14px 36px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
}

.view-more-btn a:hover {
    background: #ff5c24;
}

/* testi */
.tersrt {
    background-color: #f7f2eb;

}

/* Section */
.testimonialSection {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0 60px;
}

/* Heading */
.testiHeader {
    text-align: center;
    margin-bottom: 20px;
}

.testiSmall {
    font-size: 14px;
    color: #0C2340;
    font-weight: 600;
}

.testiSmall::before {
    content: "";
    width: 40px;
    height: 3px;
    background: #FF7A4D;
    display: inline-block;
    margin-right: 8px;
}

.testiTitle {
    font-size: 36px;
    color: #0C2340;
    font-weight: 700;
    margin-top: 10px;
}

.testiTitle span {
    color: #FF7A4D;
}

/* Carousel Center Fix */
.testiCarousel .owl-stage {
    display: flex;
    align-items: center;
}

/* CARD STYLING */
.testiCard {
    background: #ffffff;
    width: 800px;
    height: 260px;
    padding: 35px 50px;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    overflow: hidden;
    margin: auto;
}

/* RESPONSIVE FIXED WIDTH */
@media(max-width: 1200px) {
    .testiCard {
        width: 700px;
        height: auto;
        padding: 30px;
    }
}

@media(max-width: 992px) {
    .testiCard {
        width: 600px;
    }
}

@media(max-width: 768px) {
    .testiCard {
        width: 100%;
        height: auto;
        padding: 25px;
    }
}

@media(max-width: 480px) {
    .testiCard {
        padding: 20px;
    }
}

/* Text */
.testiText {
    font-size: 16px;
    line-height: 26px;
    color: #333;
    height: auto;
}

/* Name */
.testiName {
    font-size: 18px;
    font-weight: 700;
    color: #0C2340;
    margin-top: 15px;
}

/* Dots */
.testiCarousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.testiCarousel .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #ddd !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
}

.testiCarousel .owl-dot.active span {
    width: 28px !important;
    border-radius: 20px !important;
    background: #0C2340 !important;
}

.testiViewMoreWrapper {
    text-align: center;
    margin-top: 25px;
}

.testiViewMoreBtn {
    background: #09203f;
    padding: 14px 36px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
}

.testiViewMoreBtn:hover {
    background: #ff5c24;

}


/* enqire section */

/* UNIQUE CLASS NAMES */
.bw-section-wrapper {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
}

.bw-container {
    width: 90%;
    margin: auto;
    position: relative;
}

.bw-card-wrapper {
    background: #0D2746;
    padding: 50px 40px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.bw-orange-box {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 50%;
    background: #E85A1C;
    z-index: 1;
}

.bw-text-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.bw-text-desc {
    font-size: 16px;
    color: #D7E2EE;
    margin-top: 10px;
    margin-bottom: 20px;
}

.bw-btn-primary {
    background: #E85A1C;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 5px;
    /* margin-right: 20px; */
}

.bw-btn-secondary {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    padding: 10px;
}

.bw-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .bw-card-wrapper {
        position: relative;
        width: 100%;
        margin-top: 20px;
        transform: none;
        top: 0;
        right: 0;
    }

    .bw-orange-box {
        display: none;
    }
}
.both_ddb{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}


/* footer section */

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

/* LEFT SECTION */
.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;
}

/* SOCIAL ICONS */
.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;
}

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

/* LIST ITEMS */
.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 li i {
    margin-right: 8px;
    color: #F26722;
}

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

/* CONTACT */
.kb-footer-contact {
    font-size: 15px;
    margin-bottom: 12px;
}

.kb-footer-contact i {
    margin-right: 10px;
    color: #F26722;
}

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




/* Full screen loader */
#borewellWaterLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F2C49;  /* underground color */
    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 rising */
.water-level {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #54D1FF, #0096D6);
    animation: riseWater 3s ease-in-out forwards;
}

/* Rising animation */
@keyframes riseWater {
    0% { height: 0%; }
    100% { height: 100%; }
}

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