.banner-section {
    padding: 20px 0 !important;
}

.banner-img {

    border-radius: 8%;
}

header.style-4 .content .info .title_small {

    color: #00ae4d !important;
}

header.style-4 {
    position: relative;
    padding: 20px 0 !important;
}

.img-sec {

    padding-left: 30px !important;
}

.btn-outline-black {
    background: transparent !important;
    border: 1px solid #000 !important;
    color: #000;
}

.service-item-style7 img {
    width: 300px;
    /* adjust as needed */
    height: 300px;
    /* same as width */
    object-fit: contain;
    /* keeps image ratio */
    display: block;
    margin: 0 auto 15px;
    /* center + spacing */
}

.icon-sec {
    margin-top: -90px;
}



.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.experience-badge {
    position: absolute;
    top: -47px;
    left: -35px;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    animation: floatUpDown 3s ease-in-out infinite;
}

/* Up–Down animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
        /* move up */
    }

    100% {
        transform: translateY(0);
        /* back down */
    }
}



/* Number */
.experience-badge h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #ff6b00;
}

/* Text */
.experience-badge span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}

.bg-orange {
    background-color: #ff6b00 !important;
}

.butn:hover,
.btn:hover {
    background: #00ae4d !important;
    border-color: transparent !important;
}

/* section stays normal / transparent */
.stats-section {
    background: transparent;
}

/* green box */
.stat-box {
    background: #04813c;
    /* green */
    padding: 17px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* hover effect */
.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(26, 163, 95, 0.35);
}

/* white text */
.stat-box h2,
.stat-box h2 span,
.stat-box p {
    color: #ffffff;
}

.stat-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box h2 span {
    font-size: 28px;
}

.stat-box p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.stat-icon {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.counter-section {

    margin-top: -97px !important;
}



.style-9 ul {
    list-style: none;
    padding-left: 0;
}

.style-9 ul li {
    position: relative;
    /* padding-left: 26px; */
    margin-bottom: 10px;
    color: #131111;
}

/* .style-9 ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff9f1c; 
    font-weight: bold;
} */


.section-head.style-4 h2 {
    font-size: 40px;
    line-height: 1.3;
    color: #291554 !important;
}



.mnre-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.mnre-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.2),
            transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

/* content box */
.mnre-overlay-content {
    width: 100%;
}

/* heading */
.mnre-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* points */
.mnre-points {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.mnre-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.mnre-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1aa35f;
    font-weight: bold;
}









.residential-projects .swiper-slide {
    height: 340px;
}

.residential-projects .portfolio-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.residential-projects .fixed-img-box {
    height: 230px;
    overflow: hidden;
}

.residential-projects .fixed-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.residential-projects .portfolio-card .info {
    padding: 12px 15px;
}

.residential-projects .portfolio-card .info h5 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}






/* SECTION HEAD LAYOUT (ALL SCREENS) */
.projects-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* LEFT SIDE CONTENT */
.projects-head-left {
    max-width: calc(100% - 60px);
}

/* RIGHT ARROW */
.projects-head-right {
    flex-shrink: 0;
}

/* ARROW BUTTON */
.arrow-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.arrow-btn i {
    transition: transform 0.3s ease;
}

.arrow-btn:hover i {
    transform: translateX(4px);
}












/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .projects-head h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.arrow-circle {
    width: 46px;
    height: 46px;
    border: 2px solid #ff7a00;
    border-radius: 50%;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow-circle:hover {
    background: #ff7a00;
    color: #fff;
}

.Residential {

    padding: 66px 0 !important;
}



/* LIMIT PAGINATION TO 3 BULLETS */
.residential-projects .swiper-pagination-bullet,
.Residential .swiper-pagination-bullet {
    display: none;
}

/* SHOW ONLY FIRST 3 BULLETS */
.residential-projects .swiper-pagination-bullet:nth-child(-n+3),
.Residential .swiper-pagination-bullet:nth-child(-n+3) {
    display: inline-block;
}

/* Services slider icon size fix */
/* FIXED icon area */
.services.style-8 .service-card.style-8 .icon {
    height: 100px;
    /* fixed icon area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-section {

    padding: 0px 0 !important;
    margin-top: -68px !important;

}

.rotate-icon {
    transform: rotate(90deg);
    display: inline-block;
}




.banner-img {


    margin-left: -132px;
}

.about-img {
    border-radius: 8%;
}

.mnre {

    color: #666 !important;
}


 




.service-card.style-8 {
    height: 420px;
    /* increase height */
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: #fff;
}

.service-card.style-8 .info {
    flex-grow: 1;
}

/* REMOVE CLAMP COMPLETELY */
.service-card.style-8 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.service-page {

    margin-top: -30px;
}








.servicedescription h2 {
    color: #000 !important;
    line-height: 1.6;

    font-weight: 700 !important;

    font-family: "Inter", sans-serif;
}

.servicedescription h3 {
     font-size: 20px;
}








.servicedescription p,
.servicedescription ul li {
    color: #666 !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    line-height: 2 !important;
    font-family: "Inter", sans-serif;
}



.servicedescription ul {
    list-style: none !important;
    padding-left: 0;
}

.servicedescription ul li {
    position: relative;
    padding-left: 42px;
}

/* green round arrow */
.servicedescription ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 6px;
    width: 26px;
    height: 26px;
    background: #1aa35f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}









.branches {
    background: radial-gradient(circle at top, #eef9f2, #f7f7f7);
}

/* Premium card */
.branch-card {
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(26, 163, 95, 0.12);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* soft glow border */
.branch-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(26, 163, 95, 0.25),
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;        /* ✅ VERY IMPORTANT */
}

/* Hover effect */
.branch-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(26, 163, 95, 0.25),
        0 0 25px rgba(26, 163, 95, 0.15);
}

/* Icon glow */
.branch-card .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1aa35f, #28c76f);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow:
        0 0 0 6px rgba(26, 163, 95, 0.15),
        0 10px 25px rgba(26, 163, 95, 0.45);
    position: relative;
    z-index: 2;                 /* ✅ Keeps icon clickable */
}

/* Branch name */
.branch-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    position: relative;
    z-index: 2;                 /* ✅ */
}

/* Phone text */
.branch-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #666;
    position: relative;
    z-index: 2;                 /* ✅ */
}

/* Links */
.branch-card a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 3;                 /* ✅ MOST IMPORTANT */
}

.branch-card a:hover {
    color: #1aa35f;
}




.contact-form-premium {
    background: radial-gradient(circle at top, #eef9f2, #f7f7f7);
}

.premium-form {
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.85)
    );
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid rgba(26, 163, 95, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Inputs */
.premium-form .form-control {
    border-radius: 14px;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 14px;
    transition: all 0.3s ease;
}

.premium-form .form-control:focus {
    border-color: #1aa35f;
    box-shadow: 0 0 0 4px rgba(26,163,95,0.15);
}

/* Button */
.btn-premium-glow {
    background: linear-gradient(135deg, #1aa35f, #28c76f);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow:
        0 10px 30px rgba(26,163,95,0.45),
        0 0 20px rgba(26,163,95,0.25);
    transition: all 0.35s ease;
}

.btn-premium-glow:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(26,163,95,0.55),
        0 0 30px rgba(26,163,95,0.35);
    color: #fff;
}













.servicedescription ol {
    list-style: none;
    counter-reset: step;
    padding-left: 0;
}

.servicedescription ol li {
    counter-increment: step;
    position: relative;
    padding-left: 46px;
    margin-bottom: 12px;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 2 !important;
    font-family: "Inter", sans-serif;
}

/* Green number circle */
.servicedescription ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1aa35f, #28c76f);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Green icon */
.service-icon-list li i {
    color: #1aa35f;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}
 




.faq-content h4 {
    cursor: pointer;
    padding: 16px 52px 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.faq-content h4::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #1aa35f;
    transition: 0.3s;
}

.faq-content h4.active::after {
    content: "–";
}

/* answers */
.faq-content .faq-answer {
    display: none;
    padding: 15px 20px 20px;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
}

.faq-content .faq-answer p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}


.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}



.blog-details-slider .content-card .img {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.blog-details-slider .content-card .img img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: unset !important;
    display: block;
}





/* .tc-about-st17 {
    background-color: #f0eff5;
} */
/* Tablet */
@media (max-width: 991px) {
    .stat-box {
        padding: 30px 15px;
    }

    .stat-box h2 {
        font-size: 40px;
    }

    .stat-box h2 span {
        font-size: 22px;
    }

    .stat-icon {
        font-size: 32px;
    }

    .counter-section {
        margin-top: -40px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .stat-box {
        padding: 25px 15px;
        border-radius: 14px;
    }

    .stat-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .stat-box h2 {
        font-size: 34px;
        margin-bottom: 6px;
    }

    .stat-box h2 span {
        font-size: 20px;
    }

    .stat-box p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* remove negative margin on mobile */
    .counter-section {
        margin-top: 0 !important;
    }
}





@media (max-width: 768px) {

    header.style-4 {
        position: relative;
        padding: 30px 0 !important;
    }

    .img-sec {

        padding-left: 0px !important;
    }


    .service-item-style7 img {
        width: 200px;
        /* adjust as needed */
        height: 200px;
        /* same as width */
        object-fit: contain;
        /* keeps image ratio */
        display: block;
        margin: 0 auto 0px;
        /* center + spacing */
    }

    .icon-mt {

        margin-top: -55px !important;
    }


    .about-img-wrapper {
        padding-top: 65px !important;
    }


    .experience-badge {
        position: absolute;
        top: 32px;
        left: -10px;
        width: 95px;
        height: 95px;

    }

    .experience-badge h3 {
        font-size: 24px;

    }

    .experience-badge span {
        font-size: 10px;
    }


    .counter-section {
        padding: 0px 0 !important;
    }


    .mnre-points li {

        font-size: 12px !important;

    }

    .choose-us.style-9 .nav {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid #f0eff5 !important;
    }


    .about-description {

        padding-top: 20px;
    }



    .banner-img {


        margin-left: 0px !important;
    }

 
    .loan-section {
        margin-top: -122px !important;

    }
 

    .about-page.style-2 .timeline .timeline-content .timeline-card::after {
        position: absolute;
        content: "";
        left: calc(50% - 14px);
        top: calc(50% - 1px);
        width: 28px;
        height: 2px;
        background-color:  white !important;
        z-index: 2;
      }



      .service-page-title{


        font-size: 18px !important;
    }


    .about-us-section{

        margin-top: -58px !important;
    }


    .home-style-11 .section-head h2 {
        font-size: 18px !important;
      }



}