        body {
            background: #ffffff;
            font-family: Arial, sans-serif;
        }

        /* NAVBAR LINKS */
        .custom-nav {
            font-weight: 600;
            color: #0b7a3e !important;
            /* green */
            position: relative;
            padding-bottom: 6px;
            transition: color 0.3s ease;
        }

        /* Green underline effect */
        .custom-nav::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 3px;
            left: 0;
            bottom: 0;
            background: #0b7a3e;
            transition: width 0.3s ease;
        }

        .custom-nav:hover {
            color: #055a2a !important;
        }

        .custom-nav:hover::after {
            width: 100%;
        }

        /* ORDER NOW BUTTON */
        .order-btn {
            background: #0b7a3e;
            color: white;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: 6px;
            transition: 0.3s ease;
            text-decoration: none;
        }

        .order-btn:hover {
            background: #055a2a;
            color: #fff;
            transform: translateY(-2px);
        }

        /* ----- About Strip Styling ----- */
        .about-strip {
            background: linear-gradient(135deg, #0f8a44 0%, #0b6a32 100%);
            padding: 35px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Soft pharma-style dotted overlay */
        .about-strip::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.35;
            pointer-events: none;
        }

        /* Heading */
        .about-strip h1 {
            color: #fff;
            font-weight: 700;
            font-size: 40px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            z-index: 5;
            animation: fadeSlideDown 1s ease forwards;
        }

        /* About us strip Animation */
        @keyframes fadeSlideDown {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About us Responsive */
        @media (max-width: 768px) {
            .about-strip h1 {
                font-size: 30px;
            }

            .about-strip {
                padding: 45px 0;
            }
        }

        /* 1st about us section  */

        /* Background block behind image */
        .bg-accent {
            position: absolute;
            top: 40px;
            right: -40px;
            width: 75%;
            height: 80%;
            background: rgba(0, 128, 0, 0.15);
            border-radius: 12px;
            z-index: 1;
        }

        /* Image container */
        .image-wrapper {
            position: relative;
            z-index: 2;
            overflow: hidden;
            border-radius: 12px;
        }

        /* Hover zoom animation */
        .about-img {
            width: 100%;
            transition: transform .5s ease;
        }

        .about-img:hover {
            transform: scale(1.07);
        }

        /* Mission / Vision cards */
        .info-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all .35s ease;
            height: 100%;
        }

        .info-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        /* Icon style */
        .icon-wrap {
            width: 55px;
            height: 55px;
            background: #0f9d58;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .icon-wrap i {
            color: #fff;
            font-size: 26px;
        }


        /* <!-- Vision Meets Reality Section --> */

        /* Section Styling */
        .vision-section {
            background: #ffffff;
        }

        /* Subtitle */
        .section-subtitle {
            color: #0a8c3a;
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        /* Title */
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #033d1f;
        }

        /* Paragraphs */
        .vision-text {
            color: #444;
            font-size: 15.5px;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        /* Background Layer Behind Main Image */
        .vision-bg-layer {
            position: absolute;
            top: 30px;
            left: -25px;
            width: 85%;
            height: 85%;
            background: #0a8c3a;
            border-radius: 12px;
            z-index: 1;
            opacity: 0.15;
        }

        /* Main Image */
        .vision-main-img {
            position: relative;
            border-radius: 12px;
            z-index: 2;
            transition: 0.4s ease;
        }

        .vision-main-img:hover {
            transform: scale(1.03);
        }

        /* Small Overlay Image */
        .vision-small-img {
            width: 48%;
            position: absolute;
            bottom: -30px;
            right: -25px;
            z-index: 3;
            border-radius: 12px;
            transition: 0.4s ease;
        }

        .vision-small-img:hover {
            transform: scale(1.05);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .vision-small-img {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 15px;
                width: 60%;
            }

            .vision-bg-layer {
                display: none;
            }
        }

        /* choose us section */
        /* Section Title */
        .section-title {
            font-weight: 700;
            color: #0b8f47;
            font-size: 28px;
        }

        /* Cards */
        .choose-card {
            display: flex;
            align-items: flex-start;
            background: #fff;
            border: 1px solid #e6e6e6;
            padding: 18px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            transition: 0.4s ease;
        }

        .choose-card .icon {
            font-size: 30px;
            margin-right: 15px;
            color: #0b8f47;
        }

        /* Fill animation background */
        .choose-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #0b8f47;
            z-index: 1;
            transition: all 0.5s ease;
        }

        /* Hover effect */
        .choose-card:hover::before {
            left: 0;
        }

        .choose-card:hover h5,
        .choose-card:hover p,
        .choose-card:hover .icon {
            color: #fff !important;
            z-index: 2;
        }

        /* Position text above the icon */
        .choose-card * {
            position: relative;
            z-index: 2;
        }

        /* RIGHT SIDE IMAGES */
        .bg-block {
            width: 80%;
            height: 70%;
            background: #0b8f47;
            position: absolute;
            top: 15%;
            right: 0;
            z-index: 0;
            border-radius: 10px;
        }

        .main-photo {
            width: 100%;
            border-radius: 12px;
            position: relative;
            z-index: 3;
            background: #333;
            transition: 0.4s ease;
            
        }

        /* Zoom on hover */
        .main-photo:hover,
        .side-photo1:hover,
        .side-photo2:hover {
            transform: scale(1.04);
        }

        /* Mobile Responsive */
        @media(max-width:768px) {
            .bg-block {
                display: none;
            }

            .side-photo1,
            .side-photo2 {
                display: none;
            }
        }

        /* Timeline Section  */

        .timeline-wrapper {
            position: relative;
            width: 100%;
            margin-top: 40px;
        }

        .timeline-line {
            position: absolute;
            top: 22px;
            left: 0;
            right: 0;
            height: 4px;
            background: #d2f4d7;
            z-index: 1;
        }

        .timeline-items {
            position: relative;
            z-index: 2;
        }

        .timeline-year {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #eaffea;
            border: 4px solid #198754;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            color: #0f5132;
            transition: 0.3s ease;
            user-select: none;
        }

        .timeline-year:hover {
            background: #198754;
            color: #fff;
        }

        .timeline-year.active {
            background: #198754;
            color: #fff;
            transform: scale(1.1);
        }

        /* Testimonal Section */
        .testimonial-slider {
            overflow: hidden;
            position: relative;
        }

        .ts-wrapper {
            display: flex;
            gap: 30px;
            transition: transform 0.6s ease;
        }

        .ts-card {
            min-width: 100%;
            background: #ffffff;
            border-left: 5px solid #28a745;
            padding: 35px;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            animation: fadeSlideUp 0.8s ease;
        }

        .ts-quote {
            font-size: 17px;
            line-height: 1.6;
            color: #333;
        }

        .ts-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #28a745;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            color: #fff;
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            z-index: 10;
        }

        .ts-prev {
            left: -10px;
        }

        .ts-next {
            right: -10px;
        }

        .ts-arrow:hover {
            background: #1e7e34;
        }

        /* Fade + slide animation */
        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ts-card {
                padding: 25px;
            }

            .ts-arrow {
                display: none;
            }
        }

        /* slider  */

        .client-slider-section {
            background: #ffffff;
            overflow: hidden;
        }

        .logo-slider {
            overflow: hidden;
            position: relative;
        }

        .logo-track {
            display: flex;
            width: calc(250px * 20);
            /* 20 logos (10 + 10 duplicated) */
            animation: scroll 30s linear infinite;
        }

        .logo-track img {
            height: 60px;
            width: auto;
            margin: 0 40px;
            object-fit: contain;

            /* IMPORTANT: remove grayscale or hover effects */
            filter: none !important;
            transition: none !important;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* footer */

        .footer-heading {
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
        }

        .footer-heading::after {
            content: "";
            width: 40px;
            height: 2px;
            background: #00d084;
            position: absolute;
            left: 0;
            bottom: -5px;
        }

        .footer-links li {
            margin: 8px 0;
        }

        .footer-links li a {
            color: #d8fff0;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links li a:hover {
            color: #00ffb3;
            padding-left: 5px;
        }

        .footer-icon {
            font-size: 22px;
            color: white;
            transition: 0.3s;
        }

        .footer-icon:hover {
            color: #00ffb3;
            transform: scale(1.2);
        }
/*        p {*/
/*    text-align: justify;*/
/*}*/
