/********** Template CSS **********/
:root {
    --primary: #88B44E;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

/* logo */



/* logo end */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgb(6 144 165 / 42%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
}

@media (max-width: 768px) {
        #header-carousel .carousel-item {
        position: relative;
        height: 300px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header1 {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(36, 45, 27, 0.7)), url(../newimage/about..1.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header2 {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(36, 45, 27, 0.7)), url(../newimage/service..2.jpeg) center center no-repeat;
    background-size: cover;
}
.page-header3 {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(36, 45, 27, 0.7)), url(../newimage/client..3.jpeg) center center no-repeat;
    background-size: cover;
}
.page-header4 {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(36, 45, 27, 0.7)), url(../newimage/inquiry..4.jpeg) center center no-repeat;
    background-size: cover;
}
.page-header5 {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(36, 45, 27, 0.7)), url(../newimage/contact..5.jpeg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}
/* @media (max-width: 768px) {

    .col-6 img {
        width: 500px; 
        height: 500px;
        margin-bottom: 10px;
    }
} */
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}

/* vission question */

.vision-section {
    background-color: #096891; /* Light green background */
    color: black;
    padding: 40px 50px;
}
.vision-section h2{
    color: white;
}

.vision-text {
    text-align: left; /* Align text to the left */
    font-size: 18px;
    color: #000;
}
.vision-img {
    max-width: 200px;
}
/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #252525;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

/*  */
.section-title2 {
    text-align: center;
    margin-bottom: 40px;
}

.section-title2 h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

/* Icon Boxes */
.icon-box {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    padding-left: 20px;
}

.icon-box i {
    font-size: 2rem;
    color: #4bd216;
    margin-right: 15px;
}

.icon-box h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.icon-box p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.icon-box:hover {
    transform: translateY(-5px);
    background-color: #eef4ff;
}

.container2 img {
    width: 100%; /* Makes the image responsive */
    max-width: 400px; /* Sets a maximum width */
    height: auto; /* Maintains aspect ratio */
    display: block;
    margin: 0 auto; /* Centers the image */
}

@media (max-width: 768px) {
    .container2 img {
        max-width: 300px; /* Adjusts size for smaller screens */
    }
}

@media (max-width: 480px) {
    .container2 img {
        max-width: 250px; /* Further adjustment for mobile devices */
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .icon-box {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .icon-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box i {
        margin-bottom: 10px;
    }
}

/* Image Styling */
.col-xl-5 img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*  */
.body {
    font-family: Arial, sans-serif;
    background: #f8f9fa;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container5 {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    text-align: center;
}


.container5 p {
    font-size: 16px;
    color: #444;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
.serviceimg{
    height: 280px;
}
.service-item {
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 80px;
    height: auto;
}

h3 {
    font-size: 20px;
    color: #000000;
    font-weight: bold;
    margin: 10px 0;
}

.service-item p {
    font-size: 14px;
    color: #555;
}
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .container5 h2 {
        font-size: 1.8rem;
    }

    .service-item h3 {
        font-size: 1.4rem;
    }

    .service-item p {
        font-size: 0.95rem;
        text-align: justify;
        hyphens: auto;
    }

}

/* fact start */
/* .fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/about-1.jpg) center center no-repeat;
    background-size: cover;
} */

/* policies */

.policies-section {
    background: url(../img/hand-holding-green-big-tree-growing-sunny-green-nature-background-environment-world-earth-day-eco-concept_117255-1794.jpeg) no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 50px 0;
}
.policies-section h2{
    color: white;
    font-weight: bold;
}
.policy-btn {
    background-color: white;
    color: black;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    margin: 50px;
}
.policy-btn:hover {
    background-color: #ddd;
}



/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/



/*  */
/* General Styling */
.why-choose-us {
    background: #88b44e;
    color: white;
    padding: 50px 20px;
    text-align: center;
    padding-bottom: 30px;
    
}

.why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Feature Box Styling */
.feature {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Animation for Cards */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Icon Styling */
.feature i {
    font-size: 2em;
    color: #000000;
    margin-bottom: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Animation for Icons */
.feature:hover i {
    transform: scale(1.2);
    color: #88b44e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
}

/* whatsapp  */
.whatsapp-float img{
    width: 50px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    border-radius: 10px;
    z-index: 1!important
}
/* whatsapp end */

.btnnew1{
    background: linear-gradient(45deg, #88b44e, #0e0d0d) !important;
}

.imgheight{
    height: 600px;
    object-fit: cover;
}


/* mission vission start */
.body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container11 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* Centers the divs horizontally */
    gap: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
    padding-bottom: 50px;
    padding-top: 30px;

    /* Ensures full viewport height for centering */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.box11 {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centers content inside the box */
    text-align: center;
    /* Centers text */
}


.box11:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px #88b44e;
}

.box11 i {
    font-size: 50px;
    color: #88b44e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.box11:hover i {
    color: #048fbb;
}

.box11 h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.box11 p {
    font-size: 16px;
    color: #110a0a;
    text-align: justify;
    hyphens: auto;
    
}
@media (max-width: 768px) {
    .container11 {
        flex-direction: column;
        align-items: center;
    }

    .box11 {
        width: 90%;
        margin-bottom: 20px;
        padding: 25px;
    }

    .box11 i {
        font-size: 1.8rem;
    }

    .box11 h3 {
        font-size: 1.4rem;
    }

    .abpara {
        font-size: 0.95rem;
    }
}
/* mission vission end */

/* service start */
.container13 {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.section .text,
.section .image {
    flex: 1;
    padding: 15px;
}

.section .image img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
}

.section .text h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.section .text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }
} */

@media (max-width: 768px) {
    .container13 {
        width: 95%;
        /* Slightly increase width to use more screen space */
        padding: 30px 0;
        /* Reduce padding for better spacing */
    }

    .section {
        flex-direction: column;
        /* Stack items vertically */
        text-align: center;
        /* Center align text */
    }

    .section .text,
    .section .image {
        flex: none;
        /* Reset flex to prevent uneven spacing */
        width: 100%;
        /* Make both sections take full width */
        padding: 10px;
        /* Reduce padding for smaller screens */
    }

    .section .text h2 {
        font-size: 28px;
        /* Reduce heading size for readability */
    }

    .section .text p {
        font-size: 16px;
        /* Slightly smaller font for mobile */
        line-height: 1.5;
        text-align: justify;
        hyphens: auto;
    }

    .section .image img {
        max-width: 100%;
        /* Ensure images don't overflow */
        border-radius: 8px;
        /* Slightly reduce border-radius */
    }
}

/* service end */

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}

/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    cursor: pointer;
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}




/* client start */
--------------------------------------------------------------*/
/* Clients Section */
.clients {
    padding: 50px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title p {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.client-logo img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    /* filter: grayscale(100%); */
}

.client-logo img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Responsive Adjustments */

@media (max-width: 768px) {
    .row.gy-4 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .client-logo {
        flex: 0 0 45%; /* Two logos per row */
        text-align: center;
    }

    .client-logo img {
        width: 80%; /* Reduce logo size for better fit */
    }
}

/* Responsive Design for Mobile (Max width: 480px) */
@media (max-width: 480px) {
    .client-logo {
        flex: 0 0 100%; /* One logo per row */
    }

    .client-logo img {
        width: 60%;
    }
}
/* client end */

/* inquiry */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Inquiry Form Section */
.inquiry-section {
    background: #fff;
    padding: 50px 20px;
    max-width: 600px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    color: #333;
    font-size: 28px;
}

p {
    color: #666;
    margin-bottom: 20px;
   
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    text-align: left;
}

label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

input:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

/* Submit Button */
.submit-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .inquiry-section {
        width: 90%;
    }
}

/* footer image */



/* footer image end */

/* heading logo */
.logo {
    max-width: 180px; /* Adjust size as needed */
    height: auto;
    display: block;
    border-radius: 8px;
    padding: 20px;
    
}
/* heading logo end */

.footer {
    background: linear-gradient(36deg, #415857, #211a1a);
    color: #ffffff;
}

.carousel-caption h1{
    color: white !important;
}

@media(max-width:768px){
    .section .image img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    height: auto;
    object-fit: contain;
}
}