    body {
        background-color: aliceblue;
        font-family: 'poppins';
    }

    .navbar-nav {
        display: flex;
        width: 100% !important;
        justify-content: space-evenly;

    }

    .nav-item {
        /* border: 1px solid #9f7700; */
        border-radius: 4px;
        font-weight: 500;
    }

    .headingCol {
        color: #5e3b36;
    }

    .paracol {
        color: #7a4802;
    }

    .abthref {
        text-decoration: none;
        color: white;

    }

    .abtBtn {
        background-color: #7c6d4a;
    }

    .abtBtn:hover {
        background-color: #927433;
    }

    .prodimg {
        width: 78px;
        height: 78px;
        transition: transform 0.3s ease-in-out;
    }

    .prodimg:hover {
        transform: scale(1.1);

    }



    .prodlink {
        text-decoration: none;
        color: #5e3b36;
        font-size: 21px;
        font-weight: 500;
    }

    .prodlink:hover {
        color: #6e2a1f
    }

    .productsinfo {
        background-color: #ffeee4;
        padding: 25px 10px;
    }

    .footDiv {
        padding-bottom: 0px;
        padding-top: 10px;
        background: url(../images/foot_bg.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        width: 100%;
        color: #ffffff;

    }

    .footerNav {
        list-style-type: none;
        padding: 0
    }

    .navitems>a {

        color: white;
        text-decoration: none;
    }

    .footlink {
        color: white;
        text-decoration: none;
    }

    .footheadings {
        color: #ffc108
    }

    .navitems {
        margin-top: 13px
    }

    .social-media {
        display: flex;
        gap: 25px;
        margin-top: 14px;
    }

    .socIcons {
        width: 45px;
        height: 45px;
    }

    .footdiv {
        display: flex;
        flex-direction: column;
        justify-content: center;

    }

    .footer-rights {
        background-color: #E4F3FA;
        color: #004F70;
        font-weight: 600;
        font-size: 16px;
    }

    .blues {
        color: #01AFF8 !important;
    }

    .footDevelopedBy {
        color: #004F70;
        text-decoration: none;
    }

    .ourServices {
        background-color: #DDDDDD;
        padding: 25px 10px;
    }

    .abtimg {
        width: 500px;
    }

    .abtVisMis {
        background-color: #ffeee4;
        padding: 25px 10px;
    }

    .contactpara {
        text-decoration: none;
        color: black;
    }

    @media only screen and (max-width:628px) {
        .abtimg {
            width: 100%;
        }
    }


    /* carosal index  */
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        background: #f8f9fb;
    }

    .container {
        max-width: 1200px;
        margin: 30px auto;
        padding: 0 16px;
    }

    h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .owl-carousel .item {
        padding: 10px;
    }

    .gallery-card {
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 6px 14px rgba(20, 20, 30, 0.06);
        cursor: zoom-in;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform .3s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.05);
    }

    .carousel-controls {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 12px;
    }

    .carousel-controls .btn {
        border: none;
        background: #0d6efd;
        color: #fff;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Lightbox */
    #lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .92);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        padding: 15px;
    }

    #lightbox.open {
        display: flex;
    }

    #lightbox .lb-image-wrap {
        max-width: 95vw;
        max-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    #lightbox img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 6px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    }

    /* Buttons inside lightbox */
    .lb-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.55);
        border: none;
        color: #fff;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 20px;
        cursor: pointer;
        z-index: 2100;
    }

    .lb-prev {
        left: 20px;
    }

    .lb-next {
        right: 20px;
    }

    .lb-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .lb-close {
        position: absolute;
        top: 18px;
        right: 18px;
        background: rgba(0, 0, 0, 0.55);
        border: none;
        color: #fff;
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 22px;
        cursor: pointer;
        z-index: 2100;
    }

    .lb-caption {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        color: #fff;
        font-size: 14px;
    }

    @media(max-width:768px) {
        .gallery-card {
            height: 220px;
        }

        .lb-prev {
            left: 10px;
        }

        .lb-next {
            right: 10px;
        }

        .lb-btn {
            font-size: 18px;
            padding: 8px 10px;
        }
    }