 body {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif !important;
 }

 h2,
 h3,
 h4,
 h5 {
     font-family: 'Poppins', sans-serif !important;
 }

 .hero-slider {
     position: relative;
     width: 100%;
     height: 800px;
     overflow: hidden;
 }

 .slide {
     position: absolute;
     inset: 0;
     background-size: cover;
     background-position: center;
     opacity: 0;
     transition: opacity .9s ease-in-out;
 }

 .slide.active {
     opacity: 1;
 }

 /* Dark lower box (Glass style) */
 .bottom-content {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 40px 60px;
     background: rgba(0, 0, 0, 0.55);
     backdrop-filter: blur(3px);
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     color: #fff;
 }

/* LEFT SIDE TEXT */
.left {
    text-align: left;
}

.left h2 {
    font-size: 25px;
    line-height: 70px;
    font-weight: 250 !important;
}

.left h2 strong {
    color: #fff;
    font-weight: 700;
}

 .learn-btn {
     display: inline-block;
     background: #38a559;
     padding: 12px 26px;
     border-radius: 5px;
     color: #fff;
     margin-top: 20px;
     text-decoration: none;
     font-size: 15px;
     font-weight: bold;
 }

 /* RIGHT SIDE */
 .right {
     width: 360px;
     text-align: right;
 }

 .slide-number {
     font-size: 32px;
     margin-bottom: 12px;
     font-weight: 400;
     text-align: left;
     border-bottom: 1px solid #fff;
 }

 .slide-desc {
     font-size: 16px;
     line-height: 1.6;
     opacity: 0.9;
     text-align: left;
     color: #fff;
     font-weight: 400;
 }

 /* Arrows */
 /* Arrow container */
 .hero-slider .arrows {
     margin-top: 25px;
     display: flex;
     gap: 12px;
     justify-content: flex-end;
 }

 /* Arrow buttons box */
 .hero-slider .arrow1 {
     width: 38px;
     height: 38px;
     display: flex;
     justify-content: center;
     align-items: center;

     /* border: 1px solid rgba(255, 255, 255, 0.7); */
     border-radius: 4px;

     cursor: pointer;
     transition: 0.3s;
     font-size: 20px;
     color: #fff;
     top: 100%;
     position: relative;
     margin-bottom: -100px;
     /* hide native arrow */
 }

 /* Arrow icon inside box */
 .hero-slider .arrow1 svg {
     width: 18px;
     height: 18px;
     stroke: #fff;
     stroke-width: 2;
     fill: none;
 }

 /* Hover effect */
 .hero-slider .arrow1:hover {
     border-color: #38a559;
 }

 .hero-slider .arrow1:hover svg {
     stroke: #38a559;
 }

 .slide {
     position: absolute;
     inset: 0;
     overflow: hidden;
 }

 .slide-video {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* fills entire slide like background-size: cover */
     z-index: -1;
     /* ensures text stays above video */
     opacity: 1;
 }

@media (max-width: 992px) {

    .hero-slider {
        height: 600px;
    }

    .bottom-content {
        padding: 30px 40px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .left {
        text-align: center;
        width: 100%;
    }

    .left h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .right {
        width: 100%;
        text-align: center;
    }

    .slide-number {
        font-size: 28px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding-bottom: 10px;
    }

    .slide-desc {
        text-align: center;
    }

    .arrows {
        justify-content: center !important;
        margin-top: 10px;
    }

    .arrow1 {
        width: 34px;
        height: 34px;
        font-size: 16px;
        margin-bottom: 0;
        position: static;
    }

}

@media (max-width: 768px) {

    .hero-slider {
        height: 520px;
    }

    .bottom-content {
        padding: 25px 20px;
        align-items: center;
        text-align: center;
    }

    .left {
        text-align: center;
        width: 100%;
    }

    .left h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .learn-btn {
        padding: 10px 22px;
        font-size: 14px;
        margin-top: 15px;
    }

    .right {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .slide-number {
        font-size: 24px;
        text-align: center;
    }

    .slide-desc {
        font-size: 14px;
        text-align: center;
    }

    .arrow1 {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .hero-slider {
        height: 440px;
    }

    .bottom-content {
        padding: 20px 15px;
        align-items: center;
        text-align: center;
    }

    .left {
        text-align: center;
        width: 100%;
    }

    .left h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .learn-btn {
        padding: 8px 18px;
        font-size: 13px;
        margin-top: 12px;
    }

    .right {
        text-align: center;
        width: 100%;
    }

    .slide-number {
        font-size: 20px;
        text-align: center;
    }

    .slide-desc {
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
    }

    .arrow1 {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

}


 /* Full Section Background */
 .stats-section {
     background: #232a26;
     /* exact dark green/black color */
     padding: 50px 20px;
 }

 /* Container with 4 Columns */
 .stats-container {
     max-width: 1300px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: space-between;
     text-align: center;
     color: #fff;
 }

 /* Individual Stat Box */
 .stat-box {
     width: 23%;
 }

 /* Title */
 .stat-title {
     font-size: 18px;
     opacity: 0.85;
     margin-bottom: 8px;
     text-align: left;
     font-weight: 400;
     color: #fff;
 }

 /* Thin Line Under Title */
 .stat-line {
     display: block;
     width: 100%;
     height: 1px;
     background: rgba(255, 255, 255, 0.3);
     margin: 15px 0 15px 0;
 }

 /* Number */
 .stat-number {
     font-size: 64px;
     font-weight: 600 !important;
     margin: 0;
     text-align: left;
 }

 @media (max-width: 992px) {
     .stat-box {
         flex: 0 0 calc(50% - 20px);
     }
 }

 /* Mobile: 1 per row */
 @media (max-width: 600px) {
     .stat-box {
         flex: 0 0 100%;
     }
 }

 /* Section Wrapper */
 .services-section {
     padding: 70px 40px;
     text-align: center;
 }

 /* Heading */
 .services-top h2 {
     font-size: 40px;
     font-weight: 700;
     margin-bottom: 10px;
     color: #272D28;
 }

 .services-top p {
     font-size: 18px;
     opacity: 0.7;
     max-width: 1300px;
     margin: 0 auto 40px auto;
     color: #525252;
     font-weight: 400;
 }

 /* GRID */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
     max-width: 1300px;
     margin: auto;
 }

 /* CARD */
 .service-card {
     border: 1px solid #e6e6e6;
     border-radius: 12px;
     padding: 30px;
     text-align: left;
     position: relative;
     background: #fff;
     min-height: 240px;
     transition: all 0.35s ease;
 }

 /* ACTIVE (Permanent Green) */
 .service-card.active {
     background: #0c5c2a;
     color: #fff;
 }

 /* HOVER EFFECT (Same as active card) */
 .service-card:hover {
     background: #026212;
     color: #fff;
     transform: translateY(-5px);
 }

 .service-card:hover p,
 .service-card:hover h3 {
     color: #fff;
 }

 /* ICON */
 .icon-box img {
     width: 45px;
     height: 45px;
     margin-bottom: 15px;
     transition: filter 0.3s;
 }

 /* Make icon white on hover & on active */
 /* .service-card:hover img,
        .service-card.active img {
            filter: brightness(0) invert(1);
        } */

 /* TITLE */
 .service-card h3 {
     margin-bottom: 12px;
     font-size: 24px;
     font-weight: 600;
     transition: color 0.3s;
     color: #21A141;
 }

 /* DESCRIPTION */
 .service-card p {
     font-size: 16px;
     opacity: 0.85;
     line-height: 1.6;

     transition: color 0.3s;
     color: #525252;
 }

 /* ARROW BUTTON */
 .arrow-btn {
     position: absolute;
     right: 20px;
     bottom: 20px;
     background: #0c5c2a;
     width: 38px;
     height: 38px;
     border-radius: 50%;
     color: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     text-decoration: none;
     transition: all 0.35s ease;
 }

 /* Active White Button */
 .service-card.active .arrow-btn {
     background: #fff;
     color: #0c5c2a;
 }

 /* Hover → White Button */
 .service-card:hover .arrow-btn {
     background: #fff;
     color: #0c5c2a;
 }

 .arrow-btn span {
     font-size: 18px;
 }

 /* RESPONSIVE */

 /* Tablet (2 columns) */
 @media (max-width: 992px) {
     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 /* Mobile (1 column) */
 @media (max-width: 600px) {
     .services-grid {
         grid-template-columns: 1fr;
     }

     .services-section {
         padding: 50px 20px;
     }
 }

 .solutions-carousel-section {
     padding: 40px 0 100px;
     background: #f4faf4;
 }

 .solutions-wrapper {
     max-width: 1488px;
     margin: 0 auto;
     padding: 0 40px;
 }

 .solutions-layout {
     display: flex;
     align-items: center;
     gap: 48px;
 }

 .solutions-copy {
     flex: 0 0 35%;
 }

 .solutions-copy h2 {
     font-size: 40px;
     font-weight: 700;
     margin-bottom: 12px;
     color: #272D28;
 }

 .solutions-copy p {
     font-size: 18px;
     line-height: 1.7;
     color: #525252;
     margin: 0;
 }

 .solutions-carousel {
     flex: 1;
     position: relative;
     height: 609px;
     display: flex;
     align-items: center;
 }

 .carousel-viewport {
     overflow: hidden;
     width: 100%;
     height: 100%;
     cursor: grab;
 }

 .carousel-viewport.is-dragging {
     cursor: grabbing;
 }

 .carousel-track {
     display: flex;
     gap: 32px;
     height: 100%;
 }

 .solution-card {
     flex: 0 0 calc((100% - 64px) / 3);
     border-radius: 28px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     transition: transform 0.4s ease, box-shadow 0.35s ease, opacity 0.35s ease;
     box-shadow: 0 25px 60px rgba(10, 20, 10, 0.08);
     background: transparent;
 }

 .solution-media {
     height: 360px;
     overflow: hidden;
 }

 .solution-media img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius: 28px 28px 0 0;
 }

 .solution-info {
     /* background: linear-gradient(180deg, #0d4f24 0%, #13863c 100%); */
     padding: 26px 24px 28px;
     color: #fff;
     border-radius: 0 0 28px 28px;
 }

 .solution-info h3 {
     font-size: 22px;
     margin: 0;
     font-weight: 600;
 }

 .solution-info p {
     font-size: 16px;
     line-height: 1.6;
     margin: 16px 0 18px;
     color: rgba(255, 255, 255, 0.92);
     opacity: 0;
     max-height: 0;
     overflow: hidden;
     transition: opacity 0.35s ease, max-height 0.4s ease;
 }

 .solution-cta {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 24px;
     border-radius: 999px;
     background: #e7f7ea;
     color: #0c5c2a;
     text-decoration: none;
     font-weight: 600;
     font-size: 15px;
     opacity: 0;
     transform: translateY(10px);
     transition: opacity 0.3s ease, transform 0.3s ease;
     pointer-events: none;
 }

 .solution-card.is-active,
 .solution-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 35px 65px rgba(8, 24, 14, 0.18);
 }

 .solution-card.is-active .solution-info p,
 .solution-card:hover .solution-info p {
     opacity: 1;
     max-height: 260px;
 }

 .solution-card.is-active .solution-cta,
 .solution-card:hover .solution-cta {
     opacity: 1;
     transform: translateY(0);
     pointer-events: auto;
 }

 .solution-card:not(.is-active) .solution-media img {
     filter: saturate(0.85);
 }

 .carousel-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 64px;
     height: 64px;
     border-radius: 999px;
     border: none;
     background: #ffffff;
     color: #0c5c2a;
     box-shadow: 0 15px 35px rgba(15, 60, 30, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 5;
     transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
 }

 .carousel-arrow:hover {
     background: #0c5c2a;
     color: #fff;
     transform: translateY(-50%) scale(1.05);
 }

 .carousel-arrow.prev {
     left: -32px;
 }

 .carousel-arrow.next {
     right: -32px;
 }

 .carousel-dots {
     display: none;
     justify-content: center;
     gap: 10px;
     margin-top: 24px;
 }

 .carousel-dots button {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     border: none;
     background: #b6cbbd;
     padding: 0;
 }

 .carousel-dots button.active {
     background: #21A141;
     transform: scale(1.2);
 }

 @media (max-width: 1200px) {
     .solution-card {
         flex: 0 0 calc((100% - 32px) / 2.2);
     }
 }

 @media (max-width: 992px) {
     .solutions-wrapper {
         padding: 0 24px;
     }

     .solutions-layout {
         flex-direction: column;
         align-items: flex-start;
     }

     .solutions-carousel {
         height: 520px;
         width: 100%;
     }

     .solutions-copy {
         flex: 1;
     }

     .solution-card {
         flex: 0 0 calc((100% - 24px) / 2);
     }
 }

 @media (max-width: 768px) {
     .solutions-carousel {
         height: auto;
         flex-direction: column;
     }

     .carousel-arrow {
         display: none;
     }

     .carousel-viewport {
         width: 100%;
     }

     .carousel-track {
         gap: 20px;
     }

     .solution-card {
         flex: 0 0 88%;
     }

     .solution-media {
         height: 280px;
     }

     .carousel-dots {
         display: flex;
     }
 }

 @media (max-width: 576px) {
     .solutions-wrapper {
         padding: 0 16px;
     }

     .solutions-copy h2 {
         font-size: 32px;
     }

     .solutions-copy p {
         font-size: 16px;
     }
 }


 /* Latest Insight */
 /* Background */


 .latest-insights-section .container {

     max-width: 1300px;
     margin: auto;
 }

 /* Heading */
 .insights-header {
     text-align: center;
     margin-bottom: 50px;
 }

 .insights-header h2 {
     font-size: 40px;
     font-weight: 700;
     margin-bottom: 10px;
     color: #272D28;
 }

 .insights-header p {
     /* max-width: 850px; */
     margin: 0 auto;
     font-size: 18px;
     line-height: 1.6;
     color: #525252;
 }

 /* Cards Layout */
 .insights-cards {
     display: flex;
     gap: 30px;
     justify-content: center;
     flex-wrap: wrap;
 }

 /* Card */
 .insight-card {
     width: 400px;
     background: #ffffff;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
 }

 /* Image */
 .card-img img {
     width: 100%;
     height: 230px;
     object-fit: cover;
     padding: 10px;
     border-radius: 20px;
 }

 /* Content */
 .card-body {
     padding: 25px;
 }

 /* Meta */
 .meta {
     display: flex;
     gap: 15px;
     font-size: 12px;
     font-weight: 600;
     color: #777;
     margin-bottom: 12px;
 }

 /* Title */
 .card-body h3 {
     font-size: 20px;
     font-weight: 700;
     line-height: 1.4;
     margin-bottom: 10px;
 }

 /* Paragraph */
 .card-body p {
     font-size: 16px;
     color: #525252;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 /* Learn More */
 .learn-more {
     color: #21A141;
     font-weight: 500;
     text-decoration: none;
 }

 .learn-more:hover {
     margin-left: 5px;
     transition: 0.3s;
 }

 /* View All Button */
 .insights-footer {
     text-align: center;
     margin-top: 40px;
 }

 .view-all-btn {
     display: inline-block;
     padding: 12px 30px;
     background: #21A141;
     color: #fff;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
 }

 .view-all-btn:hover {
     background: #21A141;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .insight-card {
         width: 100%;
         max-width: 400px;
     }
 }

 .latest-insights-section {
     background: #DDF0E0;
     padding: 80px 0;
 }

 /* value section */
 /* ============================
   VALUES SECTION
============================ */

 .values-section {
     padding: 60px 0;
     text-align: center;
     font-family: inherit;
 }

 .values-section .container {
     max-width: 1300px;
     margin: 0 auto;
 }

 .values-section h2 {
     font-size: 40px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #272D28;
 }

 .values-section p.section-intro {
     font-size: 20px;
     /* max-width: 400px; */
     margin: 0 auto 40px;
     color: #525252;
 }

 .values-grid {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 20px;
 }

 /* Cards */
 .values-card {
     flex: 1;
     min-width: 250px;
     background: #fff;
     padding: 35px 25px;
     border-radius: 10px;
     text-align: center;
     border: 1px solid #CCCCCC;
 }

 .values-card img {
     width: 80px;
     margin-bottom: 15px;
 }

 .values-card h4 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #272D28;
 }

 .values-card p {
     font-size: 16px;
     line-height: 1.6;
     font-weight: 400;
     color: #525252;
 }

 /* Careers Button */
 .values-section .careers-btn {
     display: inline-block;
     margin-top: 40px;
     background: #21A141;
     padding: 12px 28px;
     color: #fff;
     border-radius: 6px;
     text-decoration: none;
     font-size: 15px;
 }

 /* Section spacing */
 .client-success-section {
     padding: 60px 0;
     text-align: center;
     font-family: inherit;
 }

 /* Heading */
 .client-success-section h2 {
     font-size: 40px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 /* Subtitle */
 .client-subtext {
     max-width: 1300px;
     margin: 0 auto 50px;
     font-size: 20px;
     color: #525252;
     line-height: 1.6;
 }

 /* Grid layout */
 .client-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 35px;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Each card */
 .client-card {
     text-align: left;
 }

 /* Image */
 .client-card img {
     width: 100%;
     height: 230px;
     object-fit: cover;
     border-radius: 14px;
     margin-bottom: 15px;
 }

 /* Title */
 .client-card h4 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #272D28;
 }

 /* Description */
 .client-card p {
     font-size: 16px;
     color: #525252;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 /* Learn More link */
 .learn-more {
     font-size: 14px;
     font-weight: 600;
     color: #21A141;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: 0.3s;
 }

 .learn-more span {
     font-size: 15px;
     transition: 0.3s;
 }

 .learn-more:hover span {
     transform: translateX(3px);
 }

 /* Center button */
 .center-btn {
     margin-top: 40px;
 }

 .all-case-btn {
     background: #21A141;
     padding: 12px 26px;
     color: #fff;
     border-radius: 6px;
     text-decoration: none;
     font-size: 15px;
     display: inline-block;
 }

 /* ----- RESPONSIVE ----- */
 @media (max-width: 1024px) {
     .client-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 700px) {
     .client-grid {
         grid-template-columns: 1fr;
     }
 }

 /* ============================
   PODCAST SECTION
============================ */

 .podcast-section {
     background: #021F07;
     /* dark green */
     padding: 70px 0;
     position: relative;
     overflow: hidden;
 }

 /* Background dotted pattern */
 .podcast-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image: radial-gradient(rgba(255, 255, 255, 0.08) 8%, transparent 8%);
     background-size: 40px 40px;
     opacity: 0.25;
 }

 /* Content container */
 .podcast-container {
     position: relative;
     z-index: 2;
     text-align: center;
     max-width: 1300px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Heading */
 .podcast-container h2 {
     font-size: 40px;
     font-weight: 700;
     color: #fff;
     margin-bottom: 10px;
 }

 /* Subtitle */
 .podcast-subtext {
     color: #FFF;
     font-size: 20px;
     /* max-width: 900px; */
     margin: 0 auto 50px;
     line-height: 1.6;
 }

 /* Podcast cards grid */
 .podcast-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 35px;
     margin-bottom: 40px;
 }

 /* Each card */
 .podcast-card {
     text-align: left;
 }

 /* Thumbnail */
 .podcast-card img {
     width: 100%;
     height: 220px;
     object-fit: cover;
     border-radius: 14px;
     margin-bottom: 15px;
 }

 /* Episode title */
 .podcast-card h4 {
     font-size: 20px;
     font-weight: 600;
     color: #fff;
     margin-bottom: 15px;
 }

 /* Play button */
 .play-btn {
     display: inline-block;
     padding: 8px 18px;
     border: 1px solid #d1e7d9;
     border-radius: 6px;
     color: #d1e7d9;
     font-size: 14px;
     text-decoration: none;
     transition: 0.3s;
 }

 .play-btn:hover {
     background: #21A141;
     border-color: #21A141;
     color: #fff;
 }

 /* Center bottom button */
 .podcast-center-btn {
     margin-top: 10px;
 }

 .episodes-btn {
     background: #21A141;
     padding: 12px 28px;
     color: #fff;
     border-radius: 6px;
     text-decoration: none;
     font-size: 15px;
     display: inline-block;
 }

 .episodes-btn:hover {
     background: #1aa95c;
 }

 /* ============================
   RESPONSIVE
============================ */

 @media (max-width: 1024px) {
     .podcast-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 700px) {
     .podcast-grid {
         grid-template-columns: 1fr;
     }
 }

 /* =======================
   CONTACT SECTION LAYOUT
========================= */

 .contact-section {
     padding: 60px 0;
     font-family: inherit;
 }

 .contact-container {
     max-width: 1300px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     padding: 0 20px;
 }

 /* Left Title */
 .contact-left h2 {
     font-size: 40px;
     font-weight: 600;
     line-height: 1.3;
     margin-bottom: 30px;
 }

 .contact-left h2 span {
     color: #000;
 }

 /* Locations */
 .location-list {
     margin-top: 20px;
 }

 .location-item {
     margin-bottom: 25px;
 }

 .location-item h4 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 8px;
 }

 .location-item p {
     font-size: 16px;
     color: #525252;
     margin: 3px 0;
     line-height: 1.5;
 }

 /* Map link */
 .map-link {
     font-size: 14px;
     font-weight: 500;
     color: #21A141;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     margin-top: 6px;
 }

 .location-item hr {
     margin-top: 15px;
     opacity: 0.2;
 }

 /* RIGHT SIDE FORM */
 .form-top-text {
     font-size: 18px;
     color: #525252;
     line-height: 1.7;
     margin-bottom: 25px;
     max-width: 500px;
 }

 .contact-form label {
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 5px;
     display: block;
     color: #272D28
 }

 .contact-form input,
 .contact-form textarea {
     width: 100%;
     padding: 12px 14px;
     border: 1px solid #ddd;
     border-radius: 6px;
     font-size: 14px;
     margin-bottom: 18px;
 }

 .contact-form textarea {
     height: 140px;
     resize: none;
 }

 .contact-form button {
     background: #2bb673;
     width: 100%;
     padding: 12px;
     border: none;
     color: #fff;
     border-radius: 6px;
     font-size: 15px;
     cursor: pointer;
     margin-top: 10px;
 }

 .contact-form button:hover {
     background: #239e61;
 }

 /* Responsive */
 @media (max-width: 900px) {
     .contact-container {
         grid-template-columns: 1fr;
     }

     .form-top-text {
         max-width: 100%;
     }
 }

 /* FULL WIDTH SECTION */
 .logo-scroll-section {
     width: 100%;
     padding: 60px 0;
     overflow: hidden;
     background: #ffffff;
 }

 /* Outer container */
 .logo-slider {
     position: relative;
     width: 100%;
     overflow: hidden;
 }

 /* Scrolling track */
 .logo-track {
     display: flex;
     align-items: center;
     gap: 90px;
     /* spacing between logos */
     animation: scrollLogos 22s linear infinite;
     white-space: nowrap;
 }

 /* Logo styling */
 .logo-track img {
     height: 55px;
     /* adjust based on your design */
     opacity: 0.85;
     /* filter: grayscale(100%); */
     transition: opacity 0.3s ease;
 }

 .logo-track img:hover {
     opacity: 1;
 }

 /* Infinite Scroll */
 @keyframes scrollLogos {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .logo-track {
         gap: 60px;
     }

     .logo-track img {
         height: 40px;
     }
 }

 /* ========== Layout (full width section) ========== */
 .solutions-fullwidth {
     width: 100%;
     background: #fff;
     padding: 50px 0 80px;
     box-sizing: border-box;
 }

 /* center content area */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     box-sizing: border-box;
 }

 /* two-column layout: left copy + right slider */
 .solutions-inner {
     display: flex;
     gap: 40px;
     align-items: flex-start;
 }

 /* LEFT column */
 .solutions-left {
     flex: 0 0 32%;
 }

 .solutions-left h2 {
     font-size: 28px;
     margin: 6px 0 18px;
     font-weight: 700;
 }

 .solutions-left p {
     color: #444;
     line-height: 1.65;
     font-size: 14px;
 }

 /* RIGHT column (slider) */
 .solutions-right {
     flex: 1 1 68%;
 }

 /* ===== Swiper slide sizing so 3 visible with exact spacing ===== */
 .solutions-swiper .swiper-wrapper {
     align-items: center;
 }

 .solutions-swiper .swiper-slide {
     width: 300px;
     /* card width (matches screenshot spacing) */
     box-sizing: border-box;
 }

 /* Card visuals */
 .solution-card {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     background: #111;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
 }

 /* image height controls card height and spacing */
 .solution-card img {
     width: 100%;
     height: 360px;
     /* total image height; adjust if you want taller */
     object-fit: cover;
     display: block;
     transition: filter 0.28s ease;
 }

 /* Slide panel (title + description + button) that slides up.
   Initial state: bottom part (title) visible — we achieve that by positioning panel with bottom negative so only its bottom bar peeks. */
 .slide-panel {
     position: absolute;
     left: 0;
     width: 100%;
     height: 52%;
     /* panel total height when fully visible (tweak if you want bigger) */
     bottom: calc(-52% + 46px);
     /* hide most of panel; leave ~46px visible for the title bar */
     background: linear-gradient(180deg, rgba(10, 35, 18, 0.95) 0%, rgba(8, 28, 15, 0.95) 100%);
     color: #fff;
     padding: 18px 18px 22px;
     box-sizing: border-box;
     transition: bottom 0.42s cubic-bezier(.2, .9, .22, 1), transform 0.35s ease;
     display: flex;
     flex-direction: column;
     justify-content: center;
     gap: 10px;
     z-index: 2;
 }

 /* Panel content style */
 .slide-panel h3 {
     margin: 0;
     font-size: 18px;
     font-weight: 700;
 }

 .slide-panel p {
     margin: 0;
     font-size: 14px;
     line-height: 1.5;
     color: rgba(255, 255, 255, 0.9);
 }

 /* button style */
 .slide-panel .btn {
     display: inline-block;
     margin-top: 8px;
     background: #13a852;
     color: #fff;
     padding: 9px 16px;
     border-radius: 7px;
     text-decoration: none;
     font-weight: 600;
     width: max-content;
 }

 /* Hover — slide the panel up completely so title+text+button move together */
 .solution-card:hover .slide-panel {
     bottom: 0;
 }

 /* Dim image slightly on hover for contrast */
 .solution-card:hover img {
     filter: brightness(0.58);
 }

 /* Pagination dots */
 .swiper-pagination {
     margin-top: 18px;
     text-align: center;
 }

 .swiper-pagination-bullet {
     width: 10px;
     height: 10px;
     background: #cddfcf;
     opacity: 1;
 }

 .swiper-pagination-bullet-active {
     background: #0fa654;
 }

 /* Arrows — positioned centered vertically along slider with overlap */
 /* .arrow {
     position: relative;
     top: 50%;
     transform: translateY(-50%);
     width: 36px;
     height: 36px;
      background: #fff;
 color: #0b4d2e;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 cursor: pointer;
 z-index: 6;
 font-size: 18px;
 line-height: 1;
 }

 */

 .solutions-carousel-section {
     padding: 70px 0;
 }

 .solutions-layout {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 60px;
     max-width: 1350px;
     margin: auto;
 }

 .solutions-copy {
     flex: 0 0 35%;
 }

 .solutions-copy h2 {
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 16px;
 }

 .solutions-copy p {
     font-size: 16px;
     line-height: 1.7;
     color: #444;
 }

 .solutions-carousel {
     position: relative;
     flex: 0 0 65%;
 }

 .carousel-viewport {
     overflow: hidden;
     padding: 15px 0;
 }

 .carousel-track {
     display: flex;
     gap: 30px;
     transition: transform 0.4s ease;
 }

 .solution-card {
     flex: 0 0 340px;
     background: #0c5131;
     border-radius: 18px;
     overflow: hidden;
     cursor: pointer;
     transform: scale(0.95);
     transition: 0.35s ease;
 }

 .solution-card:hover {
     transform: scale(1);
 }

 .solution-media img {
     width: 100%;
     /* height: 260px; */
     object-fit: cover;
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
 }

 .solution-info {
     padding: 25px 22px;
     color: #fff;
 }

 .solution-info h3 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .solution-info p {
     font-size: 14px;
     opacity: 0.85;
     line-height: 1.6;
     margin-bottom: 16px;
 }

 .solution-cta {
     display: inline-block;
     padding: 10px 20px;
     background: #d7f6df;
     color: #0c5131;
     border-radius: 6px;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
 }

 .carousel-arrow {
     position: absolute;
     top: 40%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: #fff;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     cursor: pointer;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     transition: 0.3s;
 }

 .carousel-arrow:hover {
     background: #e8ffe8;
 }

 .carousel-arrow.prev {
     left: -28px;
 }

 .carousel-arrow.next {
     right: -28px;
 }

 .carousel-dots {
     display: flex;
     justify-content: center;
     margin-top: 20px;
     gap: 10px;
 }

 .carousel-dots button {
     width: 10px;
     height: 10px;
     background: #cfd9cf;
     border-radius: 50%;
     border: none;
     cursor: pointer;
 }

 .carousel-dots button.active {
     background: #33b464;
 }

 @media (max-width: 992px) {
     .solutions-layout {
         flex-direction: column;
         gap: 40px;
     }

     .solutions-copy {
         flex: 100%;
     }

     .solutions-carousel {
         flex: 100%;
     }

     .carousel-arrow {
         display: none;
     }

     .solution-card {
         flex: 0 0 80%;
         margin: auto;
     }
 }

 @media (max-width: 600px) {

     .solution-card {
         flex: 0 0 90%;
     }

     .solutions-copy h2 {
         font-size: 28px;
     }

     .carousel-dots {
         margin-top: 15px;
     }
 }