    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 ----- */
    .contactus-strip {
        background: linear-gradient(135deg, #0f8a44 0%, #0b6a32 100%);
        padding: 35px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Soft pharma-style dotted overlay */
    .contactus-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 */
    .contactus-strip h1 {
        color: #fff;
        font-weight: 700;
        font-size: 30px;
        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) {
        .contactus-strip h1 {
            font-size: 30px;
        }

        .contactus-strip {
            padding: 45px 0;
        }
    }

    .dept-card {
        background: #ffffff;
        padding: 30px 25px;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all .35s ease;
        position: relative;
        overflow: hidden;
        animation: fadeUp 0.8s ease forwards;
        opacity: 0;
    }

    .dept-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .dept-card .dept-icon {
        width: 70px;
        margin-bottom: 15px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .dept-card h3 {
        color: #0a5136;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .dept-card p {
        font-size: 15px;
        color: #555;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .dept-btn {
        display: inline-block;
        background: #0a5136;
        color: #fff;
        padding: 10px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        margin-bottom: 10px;
        transition: all .3s ease;
    }

    .dept-btn:hover {
        background: #063a27;
    }

    .dept-mail {
        display: block;
        color: #0a5136;
        font-size: 14px;
        text-decoration: none;
        margin-top: 5px;
        font-weight: 600;
    }

    @keyframes fadeUp {
        from {
            transform: translateY(25px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* 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);
    }