@charset "UTF-8";
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        nav {
            position: sticky;
            top: 0;
            z-index: 50;
            transition: transform 0.2s ease;
        }
        .scrolling-down nav {
            transform: translateY(-10px);
        }
        .scrolling-up nav {
            transform: translateY(0);
        }
        .btn {
            padding: 0.5rem;
            font-weight: 500;
            border-radius: 0.25rem;
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-secondary {
            color: #000;
            background-color: #ffc107;
        }
        .btn-secondary:hover {
            background-color: #056A20;
            color: white;
        }
        .btn-primary {
            color: white;
            background-color: #056A20;
        }
        .btn-primary:hover {
            background-color: #ffc107;
            color: #000;
        }
        .nav-link {
            padding: 1rem 0.5rem;
        }
        .nav-link-primary:hover {
            color: #056A20;
        }
        .nav-link-active {
            color: #056A20;
            font-weight: 600;
            border-bottom: 4px solid #056A20;
        }
        .mobile-link {
            display: block;
            font-size: 0.875rem;
            padding: 1rem 0.5rem;
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-link:hover {
            background-color: rgb(34 197 94);
        }
        .menu-icon {
            position: relative;
            width: 1.5rem;
            height: 1.5rem;
            transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        .line {
            position: absolute;
            left: 0;
            width: 1.5rem;
            height: 0.125rem;
            background-color: rgb(75 85 99);
            transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        .line.top {
            top: 0;
        }
        .line.middle {
            top: 0.5rem;
        }
        .line.bottom {
            top: 1rem;
        }
        .menu-icon.open {
            transform: rotate(90deg);
        }
        .line.top.open {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .line.middle.open {
            opacity: 0;
        }
        .line.bottom.open {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        .swiper-pagination-bullet-active {
            background-color: #16a34a !important;
        }
        .swiper-button-next,
        .swiper-button-prev {
            color: #16a34a !important; 
            background-color: white;
            border-radius: 20%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px !important;
            font-weight: bold;
        }
        .tab-btn {
            padding: 0.5rem 1.5rem;
            background: #e5e7eb;
            font-weight: 600;
            transition: 0.3s;
        }
        .tab-btn:hover {
            background: #d1d5db;
        }
        .active-tab {
            background-color: #056A20;
            color: white;
        }
        #testimonialSlider {
            overflow: hidden;
            position: relative;
        }
        #testimonialTrack {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }
        .testimonial-slide {
            width: 100%;
            flex-shrink: 0;
        }
        .rbox {
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                        0 4px 6px -4px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }
        .rbox:hover {
            background-color: #d1fae5;
        }
        .rbox a {
            font-size: 1.125rem; 
            font-weight: 600; 
            text-decoration: none;
        }
        .mncnt ul li {
            list-style-type: disc;
            list-style-position: outside;
            font-size: 14px;
        }
        .mncnt p, li{
            margin-bottom:7px;
            font-size:14px;
        }
        .mncnt ul {
            padding-left: 30px;
        }

    .faq {
        cursor: pointer;
        background: #fff;
        padding: 15px;
        border-radius: 0.5rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        border: 1px solid #e5e7eb;
        transition: all 0.2s;
        margin: 15px 0;
    }
    .faq:hover {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }
    .answer {
        display: none;
        border-top: 1px solid #ddd;
        margin-top: 5px;
        padding: 5px 0;
        font-size:14px;
    }
    .question {
        font-size:18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    .arrow {
        transition: transform 0.2s;
        color: #056A20;
    }
    .arrow.open {
        transform: rotate(180deg);
    }
    .mncnt ul li {
            list-style-type: disc;
            list-style-position: outside;
        }
        .mncnt p, li{
            margin-bottom:7px;
            font-size:14px;
        }
        .mncnt ul {
            padding-left: 30px;
        }
        .mncnt ol li {
          list-style-type: decimal;
          margin-top: 1em;
          margin-bottom: 1em;
          margin-left: 30px;
        }
        .mncnt h3 {
          font-size: 1.7em;
          font-weight: bold;
          color: #056A20;
          padding: 10px 0;
        }
        .mncnt h4 {
          font-size: 1.3em;
          font-weight: bold;
          padding: 10px 0;
          margin-left: 10px;
        }
        .mncnt img {
          border: 1px solid #056A20;
          border-radius: 4px;
        }


