/* @import url('https://fonts.cdnfonts.com/css/brygada-1918'); */

.icon-bar {
    position: fixed;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

.icon-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    /* border-radius: 50%; */
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-bar a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.youtube {
    background: #bb0000;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.twitter {
    background: black;
}

.linkedin {
    background: #007bb5;
}

/*** Spinner Start ***/
#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;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/


/*** Navbar Start ***/

.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 65px;
    /* margin-left: -69px; */
    width: auto;
}


.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0 !important;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        /* width: 100%; */
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}

.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

/* .header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
} */

/* @media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
} */

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}

/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}

/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
    background: var(--bs-white);
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* background: var(--bs-light); */
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}

/*** Blog End ***/


/*** Team Start1 ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.collapsed-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expanded-text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }

    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }

    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** copyright end ***/


.navbar-brand img {
    max-height: 96px;
    margin-left: 17px;
}

/* .header-carousel-item{ */
/* background-image: url(../img/realistic-water-drop-with-ecosystem.jpg); */
/* } */
.nav-link.active {
    color: #104017;
    /* Change the color to your active link color */
}

/* Custom CSS for Uniform Blog Items */
.blog-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Makes the blog item fill its container */
    border: 1px solid #ddd;
    /* Optional: add border for better visibility */
    border-radius: 8px;
    /* Optional: add rounded corners */
    overflow: hidden;
    /* Ensures content doesn't overflow */
}

.blog-img {
    flex-shrink: 0;
    /* Prevents the image section from shrinking */
}

.blog-img img {
    width: 100%;
    height: 200px;
    /* Set a fixed height for all images */
    object-fit: cover;
    /* Ensure images cover the space without distortion */
}

.blog-content {
    /* flex: 1;      */
    /* Allows content to grow and fill available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn {
    align-self: flex-start;
    /* Aligns button to the start of the content */
}

/* Custom CSS for Partners Logo Carousel */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f9fa;
    height: 100px;
}

.partner-item img {
    max-width: 120px;
    max-height: 80px;
    height: auto;
    object-fit: contain;
}

/* Ensure the carousel is properly initialized */
.owl-dots {
    display: none !important;
}

.award-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    margin: 10px;
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.award-card p {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin: 0;
    text-align: center;
}

body {
    /* font-family: Arial, sans-serif; */
    font-family: "Baloo Bhai 2", serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* font-family: 'Poppins', sans-serif; */
    background-color: #f0f9f0;
    color: #2c3e50;
}

table {
    width: 60%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: bold;
}

th {
    background-color: #f2f2f2;
}

.icon {
    font-size: 40px;
    color: red;
    text-align: center;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.slide h1 {
    font-size: 3em;
    margin-bottom: 1em;
    color: white;
    font-family: 'Belanosima', sans-serif;
}

.slide p {
    font-size: 1.2em;
    margin-bottom: 2em;
    max-width: 800px;
    color: #00fc9a;
    padding: 0 1em;
    /* Add padding for smaller screens */
}

.buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    /* Center buttons on smaller screens */
}

.button {
    text-decoration: none;
    padding: 0.8em 1.5em;
    font-size: 1em;
    color: white;
    background: #ff6600;
    border-radius: 5px;
    transition: background 0.3s;
}

.button:hover {
    background: #cc5200;
}

.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.control {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1em;
    cursor: pointer;
    font-size: 1.5em;
}

.control:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide h1 {
        font-size: 2em;
        /* Smaller font size for headings */
    }

    .slide p {
        font-size: 1em;
        /* Adjust paragraph font size */
    }

    .button {
        font-size: 0.9em;
        /* Smaller button font */
        padding: 0.6em 1.2em;
        /* Adjust padding */
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 1.5em;
    }

    .slide p {
        font-size: 0.9em;
    }

    .button {
        font-size: 0.8em;
        padding: 0.5em 1em;
    }

    .controls .control {
        padding: 0.8em;
        /* Reduce control button size */
        font-size: 1.2em;
    }
}

/* new css */

/*All state Section start */
.container3 {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.heading {
    color: #e6001c;
    padding: 20px 0;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

.content1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.intro {
    /* background: #fff; */
    background: #a8c5a8;
    border-radius: 10px;
    max-width: 1300px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.intro img {
    width: 40%;
    border-radius: 10px;
    height: 500px;
    object-fit: cover;
}

.intro-text {
    width: 60%;
    font-family: 'Baloo Bhai 2';
    text-align: justify;
}

.intro-text p {
    font-size: 28px;
    color: #333;
}

.intro-text a {
    color: #1b5e20;
    text-decoration: none;
    font-weight: bold;
}

/* Alternating layout */
.intro.left {
    flex-direction: row;
    /* Image on left, text on right */
}

.intro.right {
    flex-direction: row-reverse;
    /* Image on right, text on left */
}

@media (max-width: 1024px) {
    .intro {
        flex-direction: column !important;
        /* Stack image and text */
        text-align: center;
    }

    .intro img {
        width: 100%;
        height: auto;
    }

    .intro-text {
        width: 100%;
        text-align: center;
    }

    .intro.left,
    .intro.right {
        flex-direction: column !important;
        /* Ensure both versions stack properly */
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 32px;
    }

    .intro {
        padding: 15px;
    }

    .intro img {
        width: 100%;
    }

    .intro-text {
        width: 100%;
    }

    .intro-text p {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 28px;
    }

    .intro {
        padding: 10px;
    }

    .intro-text p {
        font-size: 18px;
    }
}

.container6 {
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.content6 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.intro6 {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #a8c5a8;
    border-radius: 10px;
    max-width: 1300px;
    padding: 20px;
    flex-direction: row-reverse;
}

.intro-text6 {
    flex: 1;
    width: 60%;
    font-family: 'Baloo Bhai 2';
    text-align: justify;
}

.intro6 img {
    width: 40%;
    border-radius: 10px;
    height: 650px;
    object-fit: cover;
}

.intro-text6 p {
    font-size: 25px;
    color: #333;
}

.intro-text6 a {
    color: #1b5e20;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .intro6 {
        flex-direction: column !important;
        text-align: center;
    }

    .intro6 img {
        width: 100%;
        height: auto;
    }

    .intro-text6 {
        width: 100%;
        text-align: center;
    }

    .intro.left,
    .intro.right {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .heading {
        font-size: 32px;
    }

    .intro6 {
        padding: 15px;
    }

    .intro6 img {
        width: 100%;
    }

    .intro-text6 {
        width: 100%;
    }

    .intro-text6 p {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 28px;
    }

    .intro6 {
        padding: 10px;
    }

    .intro-text6 p {
        font-size: 18px;
    }
}

/* Responsive Design */
/* @media screen and (max-width: 768px) {
    .heading {
        font-size: 25px;

    }

    .content1 {
        flex-direction: column;
        text-align: center;
    }

    .intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-text p {
        font-size: 19px;
    }

    .intro img,
    .intro-text {
        width: 100%;
    }
} */

.section {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 20px;
    background: #a8c5a8;
    border-radius: 12px;
    padding: 30px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.section:hover {
    transform: translateY(-5px);
}

/* Text Content */
.content-box {
    background: #ffffff;
    background: #a8c5a8;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.content-box h2 {
    font-size: 30px;
    color: #1b5e20;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Image Styling */
.image-box {
    display: flex;
    gap: 20px;
    /* Add space between the images */
    justify-content: center;
    margin-top: 20px;
}

.image-box img {
    width: 45%;
    /* Adjust image width */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.image-box img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 20px;
        max-width: 100%;
    }

    .image-box {
        flex-direction: column;
        /* Stack images on smaller screens */
        gap: 15px;
    }

    .image-box img {
        width: 90%;
        /* Make images larger on small screens */
    }
}

/*All state Section start */

#whatWeDoAccordion {
    padding: 0px !important;

}

#whatWeDoAccordion .accordion-body {
    padding: 10px !important;
    background: var(--bs-light);

}

#whatWeDoAccordion>.list-unstyled {
    background: var(--bs-light);
    transform: rotateX(0deg);
    transition: .5s;
    opacity: 1;

}

#whatWeDoAccordion .nav-link {
    padding: 0;
    color: var(--bs-primary);
    text-decoration: none;
}

#whatWeDoAccordion .nav-link:hover {
    background: var(--bs-primary);
    color: var(--bs-white);


}


/* */

/* transform: rotateX(0deg);
visibility: visible;
background: var(--bs-light);
padding-top: 10px;
border: 0;
transition: .5s;
opacity: 1; */

/* map css start */

.my-svg {
    fill: white;
    stroke: black;
}

.my-svg path:hover {
    fill: blue;
}

.my-svg:hover {
    stroke: black;
}

#IN-PB {
    fill: red;
}

#IN-PB:hover {
    fill: blue;
    cursor: pointer;

}

#IN-HP {
    fill: yellow;
    cursor: pointer;
}

#IN-HP:hover {
    fill: blue;
    cursor: pointer;

}

#IN-HR {
    fill: green;
    cursor: pointer;

}

#IN-HR:hover {
    cursor: pointer;
    fill: blue;
}

@media (max-width: 576px) {
    .my-svg {
        min-height: 120px;
        width: 100%;
        /* Reduce height for very small screens */
    }
}

/* map css end */

/* footer-insta css start */
.footer-logo img {
    width: 60%;
    height: auto;
}

.footer-instagram img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container without distortion */
    border-radius: 8px;
    /* Keeps the rounded edges */
}

.footer-instagram {
    width: 100%;
    /* Full width of the column */
    aspect-ratio: 1 / 1;
    /* Ensures a square container */
    overflow: hidden;
    /* Hides any overflow from larger images */
    position: relative;
    /* Ensures child elements are positioned correctly */
}

.footer-search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    /* Initially hidden */
}

.footer-instagram:hover .footer-search-icon {
    display: block;
    /* Display on hover */
}

/* footer-insta css end */

.krm-dropdown-menu {
    border: none;
    padding: 0;
}

.krm-card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.krm-card h6 {
    font-weight: bold;
    font-size: 1rem;
    color: #333;
}

.krm-card a {
    display: block;
    padding: 8px 10px;
    margin: 5px 0;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.krm-card a:hover {
    background-color: #f0f4f8;
    color: #104017;
    transform: translateY(-2px);
}

.krm-card i {
    font-size: 1.2rem;
    color: #104017;
    margin-right: 10px;
}

.krm-navbar .nav-item .nav-link {
    font-size: 1.1rem;
    color: #333;
    padding: 10px 15px;
}

.krm-navbar .nav-item .nav-link:hover {
    color: #104017;
}

.krm-border-divider {
    border-right: 1px solid #ddd;
}

/* //new */

.work {
    margin-top: 40px;
    text-align: center;
}

.team-img {
    height: 300px;
    /* Fixed height for all images */
    width: 100%;
    /* Full width of the container */
    overflow: hidden;
    /* Hide overflow for uniformity */
    position: relative;
}

.team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Ensures the image covers the container uniformly */
    display: block;
}

.counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    /* Ensures consistent height across all items */
}

.counter-counting span {
    font-size: 1.5rem;
    /* Ensures font scaling on smaller screens */
}

@media (max-width: 576px) {
    .counter-item {
        min-height: 120px;
        /* Reduce height for very small screens */
    }

    .counter-counting span {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }
}

/* all new carousel start */
.moving {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.moving-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.moving-item {
    min-width: 100%;
    position: relative;
}

.moving-item img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    filter: blur(3px);
    /* Apply blur effect */
    opacity: 1;
    /* Reduce opacity to make text stand out */
    object-fit: cover;
    /* Ensure image covers the container */
    filter: blur(1px) brightness(80%);
    /* Stronger blur & dim effect */
}

.moving-caption h1 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-size: 5em;
    font-family: "Baloo Bhai 2", serif;
}

.index-caption p {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5em;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.index-caption {
    position: absolute;
    bottom: 0;
    left: 50%;
    color: #00fc9a;
    background: rgba(0, 0, 0, 0.6);
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 100%;
    font-family: "Baloo Bhai 2", serif;
}

.index-caption h4 {
    font-size: 2.5em;
    color: #00fc9a;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    font-family: "Baloo Bhai 2", serif;
    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease-out forwards;
}

/* Define Animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .index-caption p {
        display: none;
    }

    .moving-item img {
        width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .index-caption h4 {
        font-size: 3em;
        top: 40%;
    }

    .moving-caption h1 {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .index-caption h4 {
        font-size: 1.5em;
        display: flex;
        top: 48%;
    }
}

.moving-buttons {
    position: absolute;
    top: 45%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.moving-buttons button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.moving-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .moving-caption h1 {
        font-size: 3em;
    }
}

@media (max-width: 480px) {
    .moving-caption h1 {
        font-size: 2em;
    }
}

/* all new carousel end */

/*============== Start numbers section ==========*/

.counter-up {
    padding: 50px 0;
    background-color: #1b5e20;
    color: #f9f9f9;
    text-align: center;
    border-radius: 20px;
}

.home-3 .counter-up {
    background-color: transparent;
}

.counter-up .counter {
    font-size: 50px;
    font-weight: bold;
    color: var(--brand-color);
}

.counter-up .title-2 {
    color: #f9f9f9;
}

.counter-up i {
    font-size: 50px;
    color: var(--brand-color);
}

/*============== End numbers section ==========*/


#our-team3 {
    /* padding: 50px 0; */
    text-align: center;
}

#our-team3 h4 {
    color: #104017;
    margin-bottom: 10px;
    font-size: 24px;
}

#our-team3 h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
    /* background-color: #fff; */
    background-color: #a8c5a8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.33% - 20px);
    /* 3 items per row */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 110%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
    transform: scale(1.05);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.team-title1 {
    padding: 15px;
}

.team-title1 h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.team-title1 p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #777;
}

@media screen and (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 20px);
        /* 2 items per row on smaller screens */
    }
}

@media screen and (max-width: 576px) {
    .gallery-item {
        width: 100%;
        /* 1 item per row on small devices */
    }
}

/* <!-- Pagination CSS --> */

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Allows items to wrap on smaller screens */
    gap: 8px;
    /* Space between pagination items */
    margin-top: 20px;
}

.pagination a {
    padding: 10px 15px;
    border: 1px solid #1b5e20;
    color: #1b5e20;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    /* Smooth hover effect */
}

.pagination a:hover,
.pagination a.active {
    background-color: #1b5e20;
    color: #fff;
}

@media (max-width: 768px) {
    .pagination a {
        padding: 8px 12px;
        /* Slightly smaller buttons */
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination a {
        padding: 6px 10px;
        /* Even smaller buttons for very small screens */
        font-size: 12px;
    }
}

/* about us */
.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    /* flex-direction: row-reverse; */
}

.reverse {
    flex-direction: row-reverse;
}

.text-section {
    flex: 1;
    padding: 20px;
    text-align: justify !important;
}

.image-section {
    flex: 1;
    text-align: center;
}

.image-section img {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
}

.description p {
    color: #333;
    font-size: 32px;
    font-weight: 700;
}

.description1 p {
    font-size: 28px;
    color: #333;
    font-weight: 700;
}

@media (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        /* Stack items vertically */
    }

    .image-section {
        order: -1;
        /* Moves the image section above the text */
    }

    .text-section {
        order: 1;
        /* Keeps the text below */
    }

    .description p {
        color: #333;
        font-size: 20px;
        font-weight: 700;
    }

    .description1 p {
        font-size: 20px;
        color: #333;
        font-weight: 700;
    }
}

.legal {
    margin-top: 50px;
}

/* about us */
.c-image {
    height: 450px;
    width: 600px;
    object-fit: cover;
    border-radius: 10px;
}

/* Adjust image size on smaller screens */
@media (max-width: 768px) {
    .c-image {
        height: 300px;
        /* Reduce height for smaller screens */
        width: 375px;

    }
}

@media (max-width: 480px) {
    .c-image {
        height: 250px;
        /* Further reduce height on very small screens */
    }
}

.current-openings .card {
    height: 100%;
    /* Ensures the card fills its container's height */
    display: flex;
    flex-direction: column;
    /* Ensures the content is stacked vertically */
}

.current-openings .card-body {
    flex-grow: 1;
    /* Makes sure the content area fills up the available space */
}

.current-openings .apply-btn {
    margin-top: auto;
    /* Pushes the button to the bottom of the card */
}

.apply-section {
    background-color: #dc3545;
    color: white;
    padding: 20px 40px;
    margin-bottom: 25px;
    border-radius: 45px;
    text-align: center;
    font-family: "Baloo Bhai 2", serif;
    font-size: 20px;
    font-weight: bold;
    max-width: 800px;
    width: 100%;
}

.apply-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: white;
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.apply-button:hover {
    background-color: #e0e0e0;
}