   :root {
       --primary-color: #1fa84f;
       --primary-dark: #00AE56;
       --secondary-color: #f8f9fa;
       --text-dark: #1E1E1E;
       --text-light: #777;
       --white: #ffffff;
       --overlay-color: rgba(0, 0, 0, 0.5);
   }

   body {
       font-family: 'Poppins', sans-serif;
       padding: 0px;
       margin: 0px;
       overflow-x: hidden;
   }
.container-fluid{
    padding: 0 70px;
}

@media (max-width: 768px) {
  
    .container-fluid{
    padding: 0 40px;
}

}
@media (max-width: 425px) {
    .container-fluid{
        padding: 0 15px;
    }
}

@media (max-width: 375px) {
    .container-fluid{
        padding: 0 10px;
    }
}

   /* Top Green Border */
   /* .top-bar {
       height: 6px;
       background: var(--primary-dark);
       
   } */

   /* Navbar */
.custom-navbar {
border-top: 6px solid var(--primary-dark);
    z-index: 999;
    background: #fff;
    padding: 18px 0;
    position: fixed;
    width: 100%;
}

   /* Logo */
   .logo img {
       width: 100%;
       height: 100%;
       max-height: 94px;
   }

   /* Center Menu */
   .nav-center a {
       margin: 0 18px;
       text-decoration: none;
       color: var(--text-dark);
       font-weight: 400;
       font-size: 1.2rem;
   }

   .nav-center a:hover {
       color: #22c55e;
   }

   /* Navbar Phone (always visible) */
   .navbar-phone {
       text-align: right;
   }

   /* Right Section */
   .call-text {
       font-size: 1rem;
       color: var(--text-dark);
   }

   .call-number {
       font-weight: 600;
       font-size: 1.6rem;
       color: #000000;
   }

   .call-number a,
   .call-text a,
   .info-text a,
   .info-text span a,
   .service-phone a,
   .tj-about-phone-box a,
   .footer-phone a {
       color: inherit !important;
       text-decoration: none;
   }

   .quote-btn {
       background: var(--primary-dark);
       color: #fff;
       padding: 10px 18px;
       border-radius: 6px;
       font-size: 14px;
       font-weight: 500;
       text-decoration: none;
   }

   .quote-btn:hover {
       background: #16a34a;
       color: #fff;
   }

   /* Mobile Sidebar */
   .mobile-nav {
       position: fixed;
       top: 0;
       left: -280px;
       width: 280px;
       height: 100vh;
       background: #fff;
       box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
       transition: 0.4s ease;
       z-index: 1050;
       padding: 20px 20px;
   }

   .mobile-nav.active {
       left: 0;
   }

   .overlay {
       position: fixed;
       inset: 0;
       background: rgba(0, 0, 0, 0.4);
       opacity: 0;
       visibility: hidden;
       transition: 0.3s;
       z-index: 1040;
   }

   .overlay.active {
       opacity: 1;
       visibility: visible;
   }

   .mobile-nav ul {
       list-style: none;
       padding: 0;
   }

   .mobile-nav ul li {
       margin-bottom: 18px;
   }

   .mobile-nav ul li a {
       text-decoration: none;
       font-weight: 500;
       color: var(--text-dark);
       font-size: 16px;
   }
.mobile-nav ul li a .btn{
    text-decoration: none;
    font-weight: 500;
    color: var(--white) !important;
    font-size: 16px;
}
   .mobile-nav ul li a btn {
       text-decoration: none;

       color: var(--white);
       font-size: 16px;
   }



   /* Responsive */
   @media(max-width:991px) {
       .desktop-menu {
           display: none !important;
       }
   }

   @media(min-width:992px) {
       .mobile-toggle {
           display: none;
       }
   }

  .hero-section {
       /* background: url('../frontend_image/herobanner1.png') no-repeat center center/cover;
        */
        background: url('../frontend_image/herobanner1.png') no-repeat center center/cover;
      position: relative;
       display: flex;
       align-items: center;
       color: #fff;
       padding: 188px 13px 60px;
   }

   .hero-overlay {
       position: absolute;
       inset: 0;
       background: rgba(0, 0, 0, 0.55);
   }

   .hero-content {
       position: relative;
       z-index: 2;
       max-width: 600px;
   }

   .sub-heading {
       font-size: 1.5rem;
       font-weight: 600;
       opacity: 0.9;
       margin-bottom: 20px;
       color: var(--white);
   }

   .main-heading {
       font-size: 3.5rem;
       font-weight: 700;
       line-height: 1.2;
       margin-bottom: 20px;
   }

   .description {
       font-size: 1rem;
       opacity: 0.85;
       margin-bottom: 30px;
   }

   .call-wrapper {
       display: inline-flex;
       align-items: center;
       backdrop-filter: blur(8px);
       background: rgba(255, 255, 255, 0.08);
       border: 1px solid rgba(255, 255, 255, 0.3);
       border-radius: 12px;
       padding: 6px 18px 6px 6px;
       color: #fff !important;
       text-decoration: none;
       transition: 0.3s ease;
   }

   .call-wrapper:hover {
       background: rgba(255, 255, 255, 0.15);
       border-color: rgba(255, 255, 255, 0.6);
   }

   .call-icon-box {
       background: var(--primary-dark);
       width: 48px;
       height: 48px;
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-right: 14px;
       box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
   }

   .call-icon-box i {
       font-size: 20px;
       color: #fff;
   }

   .call-texts {
       font-size: 1.5rem;
       font-weight: 600;
       letter-spacing: 1px;
       color: var(--white);
   }

   .btn-success {
       color: var(--white) !important;
       background-color: var(--primary-dark);
   }

   /* Responsive - Navbar for tablets */
   @media (max-width: 991px) {
       .custom-navbar {
           padding: 12px 0;
       }

       .custom-navbar .container-fluid {
           padding: 0 15px;
       }

       .logo {
           max-width: 180px;
       }

       .logo img {
           max-height: 60px;
       }
   }

   /* Responsive - Small devices */
   @media (max-width: 576px) {
       .navbar-phone .call-text {
           font-size: 11px;
       }

       .navbar-phone .call-number {
           font-weight: 600;
           font-size: 0.95rem;
           color: #000000;
       }

       .logo {
           max-width: 120px;
       }

       .logo img {
           width: 100%;
           height: 100%;
           max-height: 45px;
       }

       .custom-navbar {
           padding: 10px 0;
       }

       .call-icon-box {
           width: 40px;
           height: 40px;
       }
       .call-texts {
           font-size: 1rem;
       }
   }

   /* Responsive - Hero section tablet */
   @media (max-width: 768px) {
       .main-heading {
           font-size: 32px;
       }

       .hero-section {
           text-align: center;
           justify-content: center;
           padding: 150px 20px 50px;
       }

       .hero-content {
           margin: auto;
       }
   }

   /* Responsive - Hero section small phones */
   @media (max-width: 400px) {
       .hero-section {
           padding: 120px 15px 30px;
       }

       .main-heading {
           font-size: 24px;
       }

       .sub-heading {
           font-size: 1rem;
       }

       .description {
           font-size: 0.9rem;
       }
   }

.about-section{
    padding: 50px 0 0;
}

.about-img-wrapper{
    position: relative;
    display: inline-block;
}

.about-img{
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.experience-badge{
    position: absolute;
    bottom: 30px;
    right: -40px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.experience-badge h2{
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.experience-badge p{
    margin: 0;
    font-size: 16px;
}

.about-subtitle{
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-title{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.about-text{
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-btn{
    background: var(--primary-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    margin-top: 15px;
    transition: 0.3s;
}

.read-btn:hover{
    background:#13a563;
}

/* Responsive */
@media (max-width: 992px){
    .experience-badge{
        right: 20px;
        bottom: 20px;
        padding: 20px 25px;
    }

    .experience-badge h2{
        font-size: 28px;
    }
}

@media (max-width: 768px){
    .about-title{
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-section{
        padding: 20px 0;
    }

    .experience-badge{
        position: absolute;
        margin-top: 20px;
        display: inline-block;
       
        right: -50px;
    }
}
.counter-section{
    position: relative;
    background: url('../frontend_image/Rectangle.png') no-repeat center center/cover;
    padding: 50px 0;
    color: var(--white);
    margin: 50px 0 0;
}

.counter-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 56, 27, 0.93); /* #00381B with opacity */
} 
.counter-content{
    position: relative;
    z-index: 2;
}

.counter-subtitle{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 0.9;
    font-weight: 600;
}

.counter-title{
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.counter-box{
    text-align: center;
    padding: 20px;
    position: relative;
}

.counter-number{
    font-size: 40px;
    font-weight: 700;
}

.counter-text{
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.9;
    font-weight: 600;
}

/* Vertical Divider for Desktop */
.counter-box:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 992px){
    .counter-title{
        font-size: 32px;
    }

    .counter-number{
        font-size: 32px;
    }

    .counter-box::after{
        display: none;
    }
}

@media (max-width: 576px){
    .counter-section{
        padding: 30px 0;
        margin: 0;
    }

    .counter-title{
        font-size: 26px;
    }

    .experience-badge{
    
       
        right: -30px;
    }
}
   .section-subtitle {
            color: var(--primary-dark) !important;
            font-weight: 600;
            letter-spacing: 1px;
            
            font-size: 1.2rem;
        }

        .section-title {
            font-weight: 700;
            font-size: 2.8rem;
            margin-bottom: 23px;
            color: var(--text-dark);
        }

        .service-card {
            border: 1px solid #808386;
            border-radius: 20px;
            padding: 25px;
            background: var(--white);
            transition: 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .service-img {
            border-radius: 15px;
            width: 100%;
            height: 100%;
            max-height: 300px;
            object-fit: cover;
        }

        .service-icon img {
            width: 50px;
            height: 50px;
           
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 22px;
            margin-bottom: 15px;
        }

        .service-title {
            font-weight: 600;
            font-size: 1.4rem;
            color: var(--text-dark);
        }

        .service-text {
            font-size: 1.2rem;
            color: #6b7280;
            margin: 15px 0;
        }

        .read-more {
            color: #16a34a;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
        }

        .read-more:hover {
            text-decoration: underline;
        }

        /* Responsive adjustments */
    
        .why-section {
   background: linear-gradient(180deg, #00AE56 0%, #004824 100%);
    border-radius: 30px;
    padding: 80px 60px;
    color: var(--white) !important;
}

.section-subtitles {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
    opacity: 0.9;
    font-weight: 600;
    margin-bottom: 15px;
    color:var(--white) !important;
}

.section-titles {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--white) !important;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    
}

.check-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    color: var(--white);
}

.feature-title {    
    font-size:1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .why-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 28px;
    }

}

@media (max-width: 576px) {
    .why-section {
        padding: 30px 20px;
    }
    .about-section {
    padding: 15px 0;
}

    .section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-item {
        margin-bottom: 15px;
    }
    .section-titles {
    font-size: 24px;
   
}


}
.testimonial-section {
    padding: 50px 0 80px 0;
}

.section-subtitle {
    color: var(--primary-dark) !important;

}

.section-title {
color: var(--text-dark) !important;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #808386;
    border-radius: 15px;
    padding: 35px;
    min-height: 262px;
}

.quote-icon i{
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.testimonial-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.author {
    margin-top: 20px;
    font-weight: 600;
}

.author::before {
    content: "•";
    color: var(--primary-dark);
    margin-right: 8px;
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
}

.carousel-indicators .active {
    background-color: var(--primary-dark);
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: -2rem;
    margin-left: 15%;
}

/* Responsive */


@media (max-width: 768px) {
 
    .about-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    max-height: 600px;
}
.section-titles {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white) !important;
}
}
/* Main Footer */
.main-footer {
    background-color: #00381B;
    padding: 40px 0;
    color: var(--white);
}

.footer-logo img {
    max-width: 180px;
}

/* Links */
.footer-links a {
    color: #d1fae5;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
}

/* Phone */
.footer-phone {
    font-size: 14px;
    color: #d1fae5;
}

.footer-phone i {
    margin-right: 6px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #d1fae5;
    border-radius: 50%;
    color: var(--white);
    margin-left: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #16a34a;
    border-color: #16a34a;
}


/* Footer Service Areas */
.footer-service-areas {
    /* margin-top: 30px; */
    padding-top: 15px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
    text-align: start;
        margin: 0 10px;
}

.footer-areas-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
}

.footer-area-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #d1fae5;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.footer-area-tag:hover {
    background: #16a34a;
    color: #fff;
    border-color: #16a34a;
}

/* Bottom Bar */
.footer-bottom {
    background-color: var(--primary-dark);
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links,
    .footer-phone,
    .social-icons {
        text-align: center;
        margin-bottom: 15px;
    }

    .social-icons a {
        margin: 0 6px;
    }
    .footer-service-areas{
            display: flex;
    flex-direction: column;
    align-items: center;
    }
}
.tj-about-hero-wrapper {
    position: relative;
    /* background: url('image/herobanner1.png') center center/cover no-repeat; */
    background: url('../frontend_image/herobanner1.png') no-repeat center center/cover;
    /* height: 340px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    padding: 230px 13px 110px;
}

.tj-about-hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(18, 26, 22, 0.842)
    );
}

.tj-about-hero-content {
    position: relative;
    z-index: 2;
}

.tj-about-hero-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tj-about-hero-breadcrumb {
    font-size: 18px;
    font-weight: 500;
}

.tj-about-hero-breadcrumb span {
    margin: 0 12px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .tj-about-hero-wrapper {
     padding: 230px 13px 110px;
    }

    .tj-about-hero-title {
        font-size: 34px;
    }

    .tj-about-hero-breadcrumb {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .tj-about-hero-wrapper {
        /* height: 220px; */
     padding: 150px 13px 54px;
    }

    .tj-about-hero-title {
        font-size: 26px;
    }

    .tj-about-hero-breadcrumb {
        font-size: 14px;
    }
}

        .tj-about-section {
            padding: 50px 0 0;
        }

        .tj-about-section .col-lg-5 {
            position: sticky;
            top: 120px;
            align-self: flex-start;
        }

        .tj-about-description {
            max-height: 320px;
            overflow: hidden;
            position: relative;
            transition: max-height 0.5s ease;
        }

        .tj-about-description.expanded {
            max-height: none;
        }

        .tj-about-description:not(.expanded)::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(transparent, #fff);
        }

        .tj-read-more-btn {
            background: var(--primary-dark);
            color: #fff;
            border: none;
            padding: 8px 24px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            margin-top: 10px;
            transition: 0.3s;
        }

        .tj-read-more-btn:hover {
            background: #16a34a;
        }

        .tj-about-card {
            background: #16a34a;
            color: #fff;
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            height: 100%;
                display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .tj-about-card h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .tj-about-image-box img {
            width: 100%;
            height: 100%;
            min-height: 200px;
            object-fit: cover;
            border-radius: 20px;
        }

        .tj-about-label {
            color: #16a34a;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .tj-about-title {
            font-size: 36px;
            font-weight: 700;
        }

        .tj-about-phone-box {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 10px 10px;
            border-radius: 12px;
            border: 1px solid #808386;
            background: #fff;
            font-weight: 600;
        
        }

        .tj-about-phone-icon {
            background: #16a34a;
            color: #fff;
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 18px;
        }

        /* ===== RESPONSIVE ===== */

        @media (max-width: 991px) {
            .tj-about-title {
                font-size: 28px;
            }

            .tj-about-section .col-lg-5 {
                position: static;
            }
        }

    

.tj-process-section{
    padding: 50px 0 0;
    
}

.tj-process-label{
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.tj-process-title{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ===== LEFT IMAGE ===== */

.tj-process-img img{
    width: 100%;
    max-width: 520px;
}

/* ===== STEP ITEM ===== */

.tj-process-step{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.tj-process-number{
    min-width: 40px;
    height: 40px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.tj-process-step h6{
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.tj-process-step p{
    margin: 0;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){
    .tj-process-title{
        font-size: 26px;
    }
    .tj-process-img{
        text-align: center;
        margin-bottom: 40px;
    }
}
.tj-choose-section{
    padding: 50px 0 0;
   
}

.tj-choose-wrapper{
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding: 70px 50px;
    color: #fff;
    background: url('../frontend_image/why.png') center/cover no-repeat;
}

.tj-choose-overlay{
    position: absolute;
    inset: 0;
  background: rgba(0, 72, 36, 0.85);
    z-index: 1;
}

.tj-choose-content{
    position: relative;
    z-index: 2;
}

.tj-choose-label{
    text-align: center;
    
}

.tj-choose-title{
    text-align: center;
    
}

/* ===== FEATURE ITEM ===== */

.tj-choose-item{
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.tj-choose-icon{
    font-size: 24px;
    color: #ffffff;
}

.tj-choose-item h6{
    font-weight: 600;
    margin-bottom: 5px;
}

.tj-choose-item p{
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){
    .tj-choose-wrapper{
        padding: 50px 25px;
    }

    .tj-choose-title{
        font-size: 24px;
    }
}

@media(max-width:576px){
    .tj-choose-item{
        flex-direction: column;
    }
}

.service-section{
    padding:50px 0;
}

.service-toggle button{
    border:1px solid #16a34a;
    padding:8px 18px;
    border-radius:8px;
    background:var(--white);
    margin-right:10px;
    font-weight:500;
    transition:.3s;
}

.service-toggle .active-btn{
    background:#16a34a;
    color:#fff;
}

.service-card-wrapper{
    cursor:pointer;
}

.service-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
   
    transition:.3s;
    border:1px solid #e5e7eb;
    height:100%;
    box-shadow: 0px 0px 20px 0px #0000003B;

}
.service-card-wrapper .service-card {
    text-align: center;
}

.service-card i{
    font-size:32px;
    color:#16a34a;
    margin-bottom:10px;
}

.service-card-wrapper.active .service-card{
    background:#e7f6ee;
    border:1px solid #16a34a;
    transform:translateY(-4px);
}

.service-content{
    margin-top:15px;
}
.service-content p{
    margin-bottom: 10px;
}
.service-list li{
    list-style:none;
    margin-bottom:10px;
    font-size:14px;
}

.service-list i{
    color:#16a34a;
    margin-right:8px;
}

.service-phone{
    display:inline-flex;
    align-items:center;
    gap:12px;
    border:1px solid #ddd;
    border-radius:10px;
    padding:12px 22px;
    margin-top:10px;
    font-weight:600;
    background:#fff;
}

.service-phone i{
    background:#16a34a;
    color:#fff;
    padding:8px;
    border-radius:6px;
}

.btn-green{
    background:#16a34a;
    border:none;
    padding:10px 22px;
    border-radius:8px;
}
.btn-green:hover{
    background:#15803d;
}
.service-content #service-title{
    font-size: 1.7rem;
    font-weight: 700;
}
.service-content #service-subtitle{
    font-size: 1.7rem;
    font-weight: 700;
}
.service-content #service-subtitle1{
    font-size: 1.7rem;
    font-weight: 700;
}
.service-content h6{
    font-size: 1.7rem;
    font-weight: 700;
}
.cta-banner{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    padding:60px;
    color:#fff;
   background: linear-gradient(180deg, #004824 0%, #00381B 100%);

}

/* Background Image */
.cta-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../frontend_image/sec11.png') center/cover no-repeat;
    opacity:0.25;
}

/* Content above overlay */
.cta-content{
    position:relative;
    z-index:2;
}

.cta-heading-small{
    font-size:20px;
    font-weight:700;
    opacity:0.9;
}

.cta-heading-big{
    font-size:2.5rem;
    font-weight:700;

}

.cta-btn{
    background:#19c37d;
    border:none;
    padding:14px 28px;
    font-weight:600;
    border-radius:12px;
    font-size:18px;
    transition:0.3s;
}

.cta-btn:hover{
    background:#14a96b;
}

/* Worker Image */
.cta-worker{
    position:absolute;
    left:40px;
    bottom:0;
    height:95%;
    z-index:2;
}
.section-padding{
    padding: 50px 0 !important;
}
/* Responsive */
@media(max-width:991px){
    .cta-banner{
        padding:40px 30px;
        text-align:center;
    }

    /* .cta-worker{
        display:none;
    } */

    .cta-heading-big{
        font-size:36px;
    }
}
 @media (max-width: 768px) {
            .tj-about-section {
                padding: 25px 0;
            }
 
.about-subtitle {

    letter-spacing: 1px;
    margin-bottom: 2px;
    font-size: 1.7rem;
}
.counter-section {
   
    padding: 30px 0;
    margin: 10px;
   
}
.counter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.service-card{
    text-align: left;
    /* padding: 10px 10px 20px 10px; */
}
.why-section {
    padding: 30px 30px;
}
.testimonial-section {
    padding: 0px 0 40px 0;
}
.tj-process-section {
    padding: 25px 0 ;
}
.tj-process-img img {
    width: 100%;
    max-width: 360px;
}
.tj-choose-section {
    padding: 0px 0 25px;
}
    .tj-choose-wrapper {
    padding: 25px 25px;
}     
.tj-process-step {
  
    margin-bottom: 15px;
}   
.testimonial-section .row .col-lg-6{
    padding: 0;
}
.service-card-wrapper .service-card
{
    text-align: center;
}
.service-phone {

    margin-top: 0px;
    margin-bottom: 10px;
  
}
.service-content p{
    margin-bottom: 5px;
}
.service-section {
    padding: 25px 0;
}
.contact-section {
    padding: 30px 0 !important;
}
.form-card {
  
    padding: 15px !important;

}
.contact-title {
    font-weight: 700;
    margin-bottom: 10px !important;
}
.map-container {
    margin-top: 20px !important;
}   
.logo img {
    width: 100%;
    height: 100%;
    max-height: 60px;
}
.footer-logo img {
    max-width: 96px;
}
.section-padding{
    padding: 25px 0 !important;
}
.section-subtitles{
    font-size: 1.4rem;
}
        }

@media(max-width:576px){
    .cta-heading-big{
        font-size:28px;
    }
    .service-section{
    padding:20px 0;
}
.service-toggle button {
   
    margin-bottom: 10px;
}
.service-phone {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 10px;
}
.about-title {
    font-size: 22px !important;
}
.btn-green {
    width: 100%;
}
.call-number {
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
}
.service-toggle .active-btn {
margin-bottom: 10px;
}
.service-toggle{
    text-align: center;
}
.row{
    margin: 0;
}
.service-content #service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 7px;
}
.service-content {
    margin-top: 20px;
}
.service-content #service-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
     margin-bottom: 7px;
}
.service-content #service-subtitle1{
    font-size: 1.2rem;
    font-weight: 700;
     margin-bottom: 7px;
}
.sub-heading {
    font-size: 1.1rem;
    
}
.main-heading {
    font-size: 22px;
}
.hero-section {

    text-align: center;
    justify-content: center;
    padding: 120px 13px 30px;
}
.about-section .row .col-lg-6 {
    margin-top: 10px;
    padding: 0px;
}
.counter-title {
    font-size: 26px;
    margin-bottom: 15px;
}
.about-title {
    font-size: 22px;
    margin-bottom: 14px;
}
.service-title {
    
    font-size: 1.2rem;
 
    
}
.service-text {
    font-size: 1.2rem;
   
    margin: 10px 0;
       
}
.service-card{
    text-align: left;
    padding: 10px 10px 20px 10px;
}
.section-titles {
    font-size: 1.1rem;
    margin-bottom: 10px;
    
}
.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0px;
 
}
.check-icon {
    font-size: 2rem;
    margin-right: 8px;
    color: var(--white);
}
.testimonial-section {
    padding: 5px 0px 30px 0;
}
.about-subtitle {

    letter-spacing: 1px;
    margin-bottom: 7px;
    font-size: 1.5rem;
}
.testimonial-card {
    
    padding: 25px;
   
}
.footer-logo img {
    max-width: 90px;
}
.main-footer {
  
    padding: 20px 0;

}
 .tj-about-section {
                padding: 15px 0;
            }
            .tj-process-section {
    padding: 15px 0;
}
   .tj-choose-section {
    padding: 15px 0;
}
.tj-process-step {
   
    margin-bottom: 7px;
}
.tj-process-img {
    text-align: center;
    margin-bottom: 20px;
}
.tj-choose-wrapper {
    padding: 15px 10px;
}
.row>*{
    padding: 0 5px;
}
.service-section {
    padding: 15px 0;
}
.cta-banner {
    padding: 20px 16px;
    text-align: center;
}
.contact-section {
    padding: 20px 0 !important;
}
.form-card {
  
    padding: 15px !important;

}
.contact-title {
    font-weight: 700;
    margin-bottom: 10px !important;
}
.map-container {
    margin-top: 20px !important;
}
.section-padding{
    padding: 15px 0 !important;
}
.cta-btn {
   
    padding: 11px 25px;
   
}

.info-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
}

.cta-worker {
    position: absolute ;
    left: 7px;
    bottom: 0;
    height: 54%;
    z-index: 2;
}
}

.contact-section{
    padding:50px 0 50px;
}

.contact-title{
    font-weight:700;
    margin-bottom:20px;
}

.contact-info p{
    color:#6c757d;
    font-size:15px;
}

.info-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:25px;
}

.info-icon{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
    color:#fff;
    font-size:18px;
    background: linear-gradient(135deg,#00AE56,#00381B);
     padding:18px;
}

.info-text h6{
    font-weight:600;
    margin-bottom:3px;
}

.info-text span{
    color:#6c757d;
    font-size:14px;
}

/* Form Card */
.form-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.form-card h5{
    font-weight:600;
    margin-bottom:20px;
}

.form-control{
    height:48px;
    border-radius:8px;
    font-size:14px;
}

textarea.form-control{
    height:120px;
    resize:none;
}

.btn-gradient{
    background: linear-gradient(135deg,#00AE56,#00381B);
    border:none;
    padding:12px 25px;
    border-radius:8px;
    color:#fff;
    font-weight:500;
    transition:0.3s;
}

.btn-gradient:hover{
    opacity:0.9;
}

/* Google Map */
.map-container{
    margin-top:50px;
}

.map-container iframe{
    width:100%;
    height:400px;
    border:0;
}

/* Responsive */
@media(max-width:991px){
    .contact-section{
        padding:60px 0;
    }
}
    @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
                margin-bottom: 8px;
            }
            .service-img {
                height: 180px;
            }
        }

/* ===== iPad / Tablet (768px - 1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .container-fluid {
        padding: 0 30px;
    }

    .custom-navbar {
        padding: 12px 0;
    }

    .logo img {
        max-height: 70px;
    }

    .hero-section {
        padding: 160px 30px 60px;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-titles {
        font-size: 2rem;
    }

    .counter-title {
        font-size: 2rem;
    }

    .experience-badge {
        right: 10px;
        bottom: 15px;
        padding: 20px 22px;
    }

    .experience-badge h2 {
        font-size: 28px;
    }

    .why-section {
        padding: 50px 30px;
        border-radius: 20px;
    }

    .cta-banner {
        padding: 50px 30px;
    }

    .cta-heading-big {
        font-size: 2rem;
    }

    .tj-about-hero-wrapper {
        padding: 180px 20px 80px;
    }

    .tj-choose-wrapper {
        padding: 40px 25px;
    }

    .service-card {
        padding: 20px;
    }

    .testimonial-card {
        min-height: 220px;
        padding: 25px;
    }
}

/* ===== iPhone SE / very small phones (320px - 375px) ===== */
@media (max-width: 375px) {
    .custom-navbar {
        padding: 8px 0;
        border-top-width: 4px;
    }

    .logo {
        max-width: 100px;
    }

    .logo img {
        max-height: 38px;
    }

    .navbar-phone .call-text {
        font-size: 10px;
    }

    .navbar-phone .call-number {
        font-size: 0.85rem;
    }

    .mobile-toggle .fs-2 {
        font-size: 1.5rem !important;
    }

    .hero-section {
        padding: 110px 10px 25px;
    }

    .main-heading {
        font-size: 20px;
    }

    .sub-heading {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .call-wrapper {
        padding: 4px 12px 4px 4px;
    }

    .call-icon-box {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .call-texts {
        font-size: 0.9rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .about-title {
        font-size: 20px !important;
    }

    .about-text {
        font-size: 0.9rem;
    }

    .experience-badge {
        right: -15px;
        bottom: 10px;
        padding: 15px 18px;
    }

    .experience-badge h2 {
        font-size: 24px;
    }

    .experience-badge p {
        font-size: 12px;
    }

    .counter-subtitle {
        font-size: 1.2rem;
    }

    .counter-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .counter-number {
        font-size: 28px;
    }

    .section-subtitles {
        font-size: 1.1rem;
    }

    .section-titles {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .why-section {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: auto;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .cta-banner {
        padding: 15px 12px;
        border-radius: 12px;
    }

    .cta-heading-big {
        font-size: 22px;
    }

    .cta-heading-small {
        font-size: 16px;
    }

    .footer-links a {
        margin: 0 5px;
        font-size: 12px;
    }

    .footer-area-tag {
        padding: 4px 12px;
        font-size: 11px;
    }

    .tj-about-hero-title {
        font-size: 22px;
    }

    .tj-about-hero-wrapper {
        padding: 120px 10px 40px;
    }

    .tj-choose-wrapper {
        padding: 12px 8px;
        border-radius: 15px;
    }

    .tj-process-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

/* ===== Prevent horizontal overflow on all devices ===== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix experience badge overflow on mobile */
@media (max-width: 768px) {
    .about-img-wrapper {
        overflow: visible;
        width: 100%;
        max-width: 100%;
    }

    .experience-badge {
        position: absolute;
        right: 0;
    }
}

@media (max-width: 576px) {
    .about-img-wrapper {
        padding-right: 0;
    }

    .experience-badge {
        right: -20px;
    }
}