    .client-slider {
      overflow: hidden;
      position: relative;
      width: 100%;
      background-color: #fff;
      border-radius: 8px;
      padding: 20px 0;
    }
.carousel-inner {
    margin-top: 81px;
    position: relative;
    width: 100%;
    overflow: hidden;
}
    .client-slide-track {
      display: flex;
      width: calc(250px * 24); 
      animation: scroll 80s linear infinite;
    }

    .client-logo-slide {
      height: 100px;
      width: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      box-sizing: border-box;
    }

    .client-logo-slide img {
      max-height: 80px;
      max-width: 100%;
      object-fit: contain;
      
      transition: filter 0.3s ease;
    }

    .client-logo-slide img:hover {
      filter: grayscale(0%);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* Moves half because we duplicated logos */
      }
    }

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
}

body {
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    font-family: 'Montserrat', sans-serif;
    /* Default */
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.just-content{

   font-size: 14px;
    font-weight: 400;
    color: #666;
    text-align: justify;
    line-height: 25px;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
    color: var(--black-color);
    /* Bold */
}

.bg-silver-light {
    background-color: #F7F8FA !important;
}

.carousel-content h1 {
    font-weight: 600;

}

p {
    font-weight: 400;
    /* font-family: 'Montserrat', sans-serif; */
    /* Regular */
}

button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

#schemeTable_filter {
    margin-bottom: 10px;
}

#schemeTable th,
#schemeTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

/* Add border to pagination numbers */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border: 1px solid #ddd;
    /* Blue border */
    padding: 5px 10px;
    margin: 2px;
    border-radius: 5px;
    background-color: white;
    color: #ddd;
    transition: 0.3s;
}





body {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    background-color: var(--white-color);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



.navbar {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Make navbar sticky */
.navbar {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
    background-color: white;
}


/* Add spacing between navbar items */
.navbar-nav .nav-item {
    margin: 0 5px;
    /* Adjust the gap between menu items */
}

/* Navbar link default styles */
.navbar-nav .nav-link {
    text-align: center;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color);
    transition: color 0.3s ease-in-out, padding 0.3s ease-in-out;
}

/* Hover effect - reduce height */
.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}


/* Target only between 992px and 1024px */
@media (min-width: 992px) and (max-width: 1024px) {
    .navbar-brand img {
        width: 150px !important;
    }

    .navbar-brand figcaption {
        font-size: 10px !important;
        /* smaller caption */
    }

    /* Navbar links */
    .navbar-nav .nav-link {
        font-size: 12px !important;
        /* shrink text */
        padding: 0.1rem 0.2rem !important;
        /* tighter spacing */
    }

    /* Buttons */
    .navbar .btn {
        font-size: 11px !important;
        padding: 0.3rem 0.6rem !important;
    }

    /* Reduce gap between buttons */
    .navbar .nav-item.d-flex.gap-2 {
        gap: 0.3rem !important;
    }
}






@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/* Fade-in + Slide-down animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    font-size: 15px;
    padding: 5px 10px;
    transition: text-indent 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect (Only Move Text) */
.dropdown-item:hover {
    background-color: var(--highlight-color);
    color: #fff !important;
    text-indent: 10px;
    /* Moves only the text, not the box */
}




/* Login Button */
.btn-signup {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

.btn-login {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border: none;
}



@media (max-width: 1200px) {
    .action-button {
        display: none !important;
    }
}

footer {
    background-color: var(--highlight-color) !important;
}



.footer .widget-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--secondary-color) !important;
}

.footer ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
}

/* Mobile view font adjustment */
@media screen and (max-width: 768px) {
    .footer ul {
        font-size: 13px;
        /* or whatever size you prefer */
    }
}

.footer ul li {
    margin-top: 18px;
    position: relative;
    /* Space for icon */
}


.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary-color);
    /* Hover Effect */
}

/* Divider Line */
.list-border li {
    border-bottom: 1px dashed var(--secondary-color);
    padding-bottom: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer ul {
        padding-left: 0;
    }
}

.footer-bottom {
    /* background-color: var(---color); */
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: white;
    margin: 0;
}

.footer-bottom a {
    /* color: var(---color); */
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        width: 45%;
        /* Two sections per row on smaller screens */
    }
    .carousel-item{

        height:400px;
    }
    
}

@media (max-width: 500px) {
    .footer-section {
        width: 100%;
        /* Single section per row on very small screens */
    }
}



.text-desgin {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-align: justify;
    line-height: 25px;
}

/* === Carousel Wrapper === */
.carousel {
    position: relative;
    width: 100%;
    max-height: 800px;
    overflow: hidden;

}


.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* filter: blur(0.1px) brightness(50%); */
}

/* === Overlay Layer === */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* === Caption (Text) === */
/* === Base Style: Mobile (centered) === */
.carousel-caption {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 700px;
}

/* Caption Content Styling */
.carousel-caption h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 60px;
}

.carousel-caption p {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.carousel-caption a.btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 15px;
}

/* === Desktop Style (left-top alignment) === */
@media (min-width: 768px) {
    .carousel-caption {
        top: 15%;
        left: 0;
        transform: none;
        text-align: left;
        width: 100vw;
        max-width: none;
        padding: 0 10%;
        box-sizing: border-box;
        margin-top: 50px; 
    }
    

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    /* filter: blur(0.1px) brightness(50%); */
}
    .carousel-caption h1 {
        font-size: 2.2rem;
        max-width: 100%;
        font-weight: 800;
        /* Prevent clipping */
    }

    .carousel-caption p {
        font-size: 1.2rem;
        max-width: 100%;
        font-weight: 600;

    }

    .carousel-caption a.btn {
        padding: 12px 25px;
    }
}

/* === Prev/Next Controls === */
.carousel-control-prev,
.carousel-control-next {
    width: 65px;
    height: 65px;
       background-color: #1e4a8c;

    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 1;
    z-index: 3;
    font-size: 10px;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.carousel-control-prev {
    left: 2%;
}

.carousel-control-next {
    right: 2%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    font-size: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border: 2px solid var(--highlight-color);
    color: var(--highlight-color);
}



/* Adjust size for small screens */
/* === Mobile Responsive Fixes === */
@media (max-width: 576px) {

    /* Reduce caption padding and center it */
    .carousel-caption {
        top: 67%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        padding: 10px;
        width: 90%;
    }

    .carousel-caption h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Smaller buttons */
    .carousel-caption a.btn,
    .carousel-caption .carousel-content a button {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    /* Smaller prev/next controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    /* Smaller indicators */
    .carousel-indicators li {
        width: 8px;
        height: 8px;
    }
}

/* === Carousel Indicators (Dots) === */


.carousel-indicators li {
    background: var(--secondary-color);
    opacity: 0.7;
    list-style: none;
    cursor: pointer;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    padding: 0;
    border-bottom: 0;
    border-top: 0;
    text-indent: -999px;
    cursor: pointer;
    opacity: .5;
    transition: opacity .6s ease;
}

.carousel-indicators .active {
    background: var(--secondary-color) !important;
    opacity: 1;
}

/* === Buttons Inside Caption (Optional) === */
.carousel-caption .carousel-content a button.carousel-content-btn1 {
    color: #000;
    background-color: #fff;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--highlight-color);
    transition: 0.3s ease-in-out;
    color: #fff;
    border: 1px solid var(--secondary-color);
  
    border-radius: 4px;

}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    color: #fff;
    background-color: var(--primary-color);
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;

}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: #fff;
    transition: 0.3s ease-in-out;
    color: #000;
}



/*** Animations ***/
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.animated {
    animation-duration: 2s;
    /* Slowed down from 1s */
    animation-fill-mode: both;
}

.service-section {
    padding: 40px 60px;
}

.service-box {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
    border-top: 5px solid var(--highlight-color);
}



.service-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--highlight-color);
    transition: color 0.3s ease;
}

.service-box p {
    font-size: 14px;
    color: #555;
    transition: color 0.3s ease;
}

.service-box a.btn-secondary {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid var(--highlight-color);
    color: var(--highlight-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Hover effect - fill background */

.service-box::before {
    content: "";
    position: absolute;
    top: -100%;
    /* start hidden above */
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--highlight-color);
    z-index: -1;
    transition: top 0.4s ease-in-out;
}

.service-box:hover::before {
    top: 0;
    /* slides down */
}



.service-box:hover h5,
.service-box:hover p {
    color: #fff;
}



.service-box:hover a.btn-secondary {
    background: #fff;
    color: var(--highlight-color);
}


.contactus-section {
    padding: 50px 100px;
}

@media (max-width: 768px) {
    .contactus-section {
        padding: 10px;
        /* Or 0 if you want no padding */
    }
}

/*** Services End ***/
.testimonial-section {
    background-color: #022F42;
    padding: 40px 60px;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* space between image and text */
    margin-bottom: 20px;
}

.testimonial .thumb {
    flex-shrink: 0;
    /* prevents image from shrinking */
}

.testimonial .thumb img {
    width: 100px;
    height: auto;
    border-radius: 8px;
}

.testimonial .ml-100 {
    flex-grow: 1;
    text-align: left;
    /* aligns text to the start */
}
.clientimg {
    max-width: 100%;
    height: auto;
    border-radius: 50% 50%;
    /* Optional for rounded corners */
}


@media (max-width: 600px) {
    .testimonial {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial .ml-100 {
        text-align: center;
        margin-top: 10px;
    }

    .text-justify {
        text-align: center;
    }
}
/*** Testimonial Start ***/



.owl-nav {
    display: none;
}

.bg-light-blue {
    background-color: #e6f2ff;
    /* light blue background */
}

.stylish-input {
    width: 120px;
    /* fixed width for inputs */
    border: 1px solid #b3d1ff;
    border-radius: 6px;
    padding: 6px 10px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
}

.stylish-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
    outline: none;
}

/*** Testimonial end ***/
.info-card {
    background-color: #e6f2ff;
    /* light blue background */
    border: 1px solid #b3d1ff;
    /* soft blue border */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 24px;
}






/*** about start ***/
.clientimg {
    max-width: 100%;
    height: auto;
    border-radius: 50% 50%;
    /* Optional for rounded corners */
}

/*** about end ***/




.page-header {
  background: linear-gradient(135deg, #2b5131, #69bc4d);
  margin-top:150px;
}


.top-header {
    background-color: var(--highlight-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

.top-header a:hover {
    color: #fff;
    text-decoration: underline;
}




.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: #fff;
}




.section-title {
    text-align: center;
    margin: 40px 0;
}

.section-title h2 {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

/* Styling "OUR" */
.section-title h2 .text-dark {
    color: #000;
    /* Black */
}

/* Styling "PRODUCTS" */
.section-title h2 .text-theme-colored2 {
    color: #33bdf1;
    /* Light blue */
}

/* Double underline effect */



.line-bottom {
    width: 0;
    height: 3px;
    border-radius: 30px;
    background: var(--heading-color);
    margin: 0px auto 0;
    transition: width 0.3s ease-in-out;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
}

.service-box:hover .line-bottom {
    width: 100%;
}

.linner:hover .line-bottom {
    width: 100%;
}




.labeltext {
    font-size: 16px !important;
    background-color: #d9edf7;
    font-family: 'Montserrat', sans-serif;
}

input {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    background: transparent;
}

.textField {
    border-radius: none;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-color: #444444;
    background-color: #d9edf7;
    color: #000000;
    font-size: 22px;
    font-weight: normal;
    width: 10%;
    text-align: center;
}

.blog-card-custom {
    background-color: #fff;
    color: var(--primary-color);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px dotted var(--highlight-color);
}

.blog-category {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.7;
    text-transform: uppercase;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 15px;
}

.blog-img {
    width: 100%;
    margin-top: auto;
}

.blog-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.read-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 12px;
    transition: background-color 0.3s ease;
}

.read-btn:hover {
    color: #fff;
    background-color: var(--secondary-color);
}



/* New Card Styling */
.news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    padding: 15px;
}

.news-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--secondary-color);
    border-bottom: 4px solid var(--secondary-color);
}




.news-date {
    font-size: 14px;
    font-weight: bold;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.news-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.news-card .btn-primary {
    align-self: start;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-title {
        font-size: 16px;
    }

    .news-description {
        font-size: 13px;
    }

    .news-card {
        padding: 12px;
    }
}



.help-section {
    background-color: #ffffff;
}

.help-card {
    border: 1px solid #d9e4f0;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    background-color: #f9fcff;
    height: 100%;
}

.help-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon i {
    font-size: 40px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: var(--dark-color);
}

.time {
    color: #666;
}

.partner-logo {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    padding: 10px;
}

.whatsapp-btn {
    top: 88%;
    position: fixed;
    right: 23px;
    position: fixed;
    width: 55px;
    height: 55px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3)
}

.whatsapp-btn img {
    width: 70px;
    height: 40px
}



.how-it-works {
    /* background: url('/assets/images/bg/back-1.jpg') center/cover no-repeat; */
    padding: 50px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Optional: add semi-transparent overlay for better text readability */

.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

/* Make sure content stays above overlay */
.how-it-works>* {
    position: relative;
    z-index: 2;
}

.step-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-card.active {
    background: var(--primary-color);
    color: #fff;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.step-card.active .step-icon {
    color: #fff;
}

.step-card p {
    font-size: 14px;
    margin-top: 10px;
    color: inherit;
}

/* --------------------------------------------------- */


.feature-card-why {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.feature-card-why:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-why h5 {
    color: var(--primary-color);
}

.result-card {
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.result-label {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 6px;
}

.result-value {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}



@media (max-width: 768px) {
    .result-card {
        padding: 15px;
    }

    .result-value {
        font-size: 18px;
    }
}


.feature-card-about {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.feature-card-about:hover {
    transform: translateY(-5px);
}





#teamcard .card {
    border: 1px solid #eddcca;
    border-radius: 20px;
    padding-bottom: 0px;
    min-height: auto !important;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card {
    background: #2d547e1a;
    border-radius: 12px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card .icon {
    font-size: 30px;
    color: #265f7b;
    /* dark brownish icon color */
}

.contact-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card .icon {
    font-size: 28px;
    color: var(--primary-color);
    /* Theme color */
}

.contact-card h5 {
    font-size: 16px;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--secondary-color);
}


.calculator-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.calculator-container {
    position: relative;
    z-index: 1;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 255, 0.1);
    padding: 40px;
    overflow: hidden;
}

.calculator-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--button-color);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}




.input-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: block;
}


.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.results-card {
    color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 255, 0.2); */
}

.stat-card {
    background: var(--primary-color);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.stat-title {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Accordion Item */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

/* Accordion Header */
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    border-top: 2px solid var(--primary-color);
    border-radius: 5px;
    padding: 14px 20px;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* Subtext (Magazine Article style) */
.accordion-button small {
    display: block;
    font-weight: 400;
    font-size: 13px;
    opacity: 0.9;
}

/* Active (Expanded) Header */
.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    /* Beige-like active background */
    color: #fff;
}

/* Custom Icon (circle) */
.accordion-button::after {
    content: "▼";
    font-size: 14px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Expanded Icon */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: #fff;
}

/* Accordion Body */
.accordion-body {
    background: #fff;
    padding: 16px 20px;
    font-size: 15px;
    color: #555;
}

.vision-section {
    padding: 20px;
}

.mission-card {
    float: left;
    min-height: 0px;
    padding: 20px;
    position: relative;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #fff;
    background: #fff;
    margin-bottom: 10px
}

.profile-card {
  background: #e6f2ff73; /* light subtle gradient */
  border-radius: 15px;
  border: 1px dotted #ccc
}

.profile-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.primary-highlight-text {
  color: #2b5131; /* your primary green */
}

.secondary-highlight-text {
  color: #69bc4d; /* your secondary green */
}

.clientimg {
  max-width: 180px;
  height: auto;
}

.trusted-section {
  background: #fff;            /* white background like your screenshot */
}

.trusted-title {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 32px;
  text-transform: uppercase;
}
/* Logo container to keep logos centered and consistent */
.trusted-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 8px;
  background: transparent;
  min-height: 80px; /* ensures vertical alignment */
}

/* Logo size — adjust max-width as needed */
.trusted-logo {
  max-width: 140px;   /* desktop size */
  max-height: 70px;
  object-fit: contain;
  filter: saturate(1); /* tweak if logos look washed out */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .trusted-title { font-size: 22px; }
  .trusted-logo { max-width: 100px; max-height: 48px; }
  .trusted-divider { width: 45px; height: 3px; }
}

@media (max-width: 420px) {
  .trusted-logo { max-width: 80px; max-height: 40px; }
  .trusted-logo-wrap { padding: 12px 6px; min-height: 60px; }
}


.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #fff;
  color: #202124;
  border-radius: 50px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35); /* darker default shadow */
  transition: transform .2s ease, box-shadow .2s ease;
  z-index: 1050;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.google-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.55); /* much darker on hover */
}

.google-icon {
  font-size: 1.2rem;
  color: #EA4335; /* Google red */
}

/* Small screens: show only icon */
@media (max-width: 576px) {
  .google-review-btn {
    padding: 10px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .gr-text {
    display: none;
  }
}