* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: white;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    /* Ensures it stays above other content */

}
.logo img {
    height: 100px;
    width: auto;

}
.menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 10px;
}

.nav-btn {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 5px rgba(0, 0, 0, 0.2);
}

.nav-btn:nth-child(odd) {
    background: linear-gradient(45deg, green, orange);
    box-shadow: 0 5px rgba(0, 0, 0, 0.2);
}

.nav-btn:nth-child(even) {
    background-color: green;
    box-shadow: 0 5px darkgreen;
}

.nav-btn:active {
    box-shadow: none;
    top: 5px;
    transform: translateY(5px);
}

.nav-btn:hover {
    transform: translateY(-3px);
}

.menu-icon {
    display: none;
    font-size: 26px;
    color: green;
    cursor: pointer;
    padding: 5px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px darkgreen;
    transition: transform 0.2s ease;
}

.menu-icon:hover {
    transform: translateY(-3px);
}

.menu-icon:active {
    box-shadow: none;
    transform: translateY(4px);
    color: orange;
}

#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-color: white;
        display: none;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    
    }

    .menu li {
        margin: 15px 0;
    }

    #menu-toggle:checked+.menu-icon+.menu {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
    }
    .navbar {
        margin-top: -30px;
    }
}

/* end navbar css  */





/* start  banner */

.banner {
    margin: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Ensures content stays within border radius */
    text-decoration: none;
}

.banner-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.banner-image-wrapper {
    width: 100%;
    overflow: hidden;
    /* Ensures the image fits within rounded corners */
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Ensures the image covers the area */
}

@media (max-width: 768px) {
    .banner {
        margin: 15px;
        
    }

}

/* end banner css  */

.media-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding-top: 15.25%; /* 16:9 Aspect Ratio */
    margin: 0 auto;
    margin-left: 30px;
    border-radius: 20px;
    Display: None;
}

.media-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive design for large screens */
@media (max-width: 1200px) {
    .media-container {
        max-width: 100%;
    }
}

/* Responsive design for tablets and smaller laptops */
@media (max-width: 992px) {
    .media-container {
        max-width: 100%;
    }
}

/* Responsive design for tablets and large phones */
@media (max-width: 768px) {
    .media-container {
        max-width: 100%;
    }
}

/* Responsive design for smartphones */
@media (max-width: 576px) {
    .media-container {
        max-width: 100%;
        margin-left: 0;
    }
}

/* Responsive design for very small screens */
@media (max-width: 320px) {
    .media-container {
        max-width: 100%;
        padding-top: 75%; /* Adjusted for narrower screen */
    }
}

/* card css */


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 30px auto;
}

.card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    width: 32%;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: shadowChange 20s infinite ease-in-out;
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: green;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px rgb(245 137 65);
    animation: btnAnimation 1.5s infinite ease-in-out;
}

.btn:hover {
    background-color: orange;
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(3px);
    box-shadow: none;
}

.card:hover {
    transform: translateY(-10px);
}

@keyframes shadowChange {

    0%,
    100% {
        box-shadow: 0 4px 8px rgb(0 128 0);
        ;
    }

    50% {
        box-shadow: 0 4px 8px rgb(245 137 65);
        /* Shadow color changes to a different color */
    }
}

@keyframes btnAnimation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 992px) {
    .card {
        width: 48%;
        margin-right: 20px;
        /* Added margin to the right for better spacing */
        animation: cardSlideIn 0.5s ease-out;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        margin-bottom: 30px;
        margin-right: -10px;
        /* Reset right margin for mobile view */
        animation: cardSlideIn 0.5s ease-out;
    }

    .btn {
        width: 100%;
        animation: btnSlideIn 0.5s ease-out;
    }

    .btn:hover {
        background-color: orange;
        transform: translateX(-10px);
    }

    .btn:active {
        transform: translateX(5px);
        box-shadow: none;
    }
}

@keyframes cardSlideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes btnSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Main Heading Styling */
.main-heading {
    text-align: center;
    font-size: 2.5rem;
    margin: 40px 0 20px;
    color: #222;
}

/* end card css */





/* ad box css */

.ad-box {
    max-width: 1200px;
    height: 208px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.219);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    margin: 30px auto;
}

.ad-box:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.ad-box img {
    max-height: 100%;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .ad-box {
        height: auto;
        margin-left: 15px;
        margin-right: 15px;
    }

    .ad-box img {
        width: 100%;
        height: auto;
    }
}

/* end ad css */







/* our sponsors css */

.client-section {
    padding: 50px 0;
}

.client-container {
    width: 100%;
    max-width: 1200px;
    /* Smaller container size */
    margin: 0 auto;
    /* border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
}

.client-title {
    text-align: center;
    margin-bottom: 20px;
}

.client-title h2 {
    font-size: 28px;
    color: #333;
}

.client-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.client-slide {
    flex: 0 0 auto;
    width: 150px;
    /* Width of each slide */
    margin-right: 15px;
    /* Space between slides */
    transition: transform 0.3s ease;
}

.client-carousel img {
    width: 100%;
    height: 100px;
    /* Set a uniform height */
    object-fit: contain;
    /* Fit the image within the container while preserving the aspect ratio */
    display: block;
}

@media (max-width: 768px) {
    .client-slide {
        width: 120px;
        /* Adjust width for mobile */
        margin-right: 10px;
        /* Adjust margin for mobile */
    }

    .client-carousel img {
        height: 80px;
        object-fit: contain;
        /* Adjust height for mobile */
    }
}

@media (max-width: 480px) {
    .client-slide {
        width: 100px;
        /* Adjust width for very small screens */
        margin-right: 8px;
        /* Adjust margin for very small screens */
    }

    .client-carousel img {
        height: 70px;
        /* Adjust height for very small screens */
    }
}


/* end our sponsors */









/* gallery many page  */
/* footer start css */
/* Gallery container */
.custom-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* end gallery many page  */

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;



}

.custom-contact-info {
    background: white;
    padding: 20px 0;
    max-width: 1200px;
    border-radius: 15px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 40px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.219);

}

.custom-contact-info .custom-info {
    margin-bottom: 20px;
}

.custom-contact-info h2 {
    margin-bottom: 10px;
}

.custom-contact-info p,
.custom-contact-info a {
    font-size: 18px;
    color: green;
}

.custom-social-icons a {
    margin-right: 15px;
    font-size: 24px;
    color: green;
    transition: color 0.3s ease;
}

.custom-social-icons a:hover {
    color: green;
}



.custom-map {
    background: white;
    padding: 20px 0;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.219);
    margin: 0 auto;
    margin-bottom: 40px;

}

.custom-map h2 {
    text-align: center;
    margin-bottom: 20px;
}

.custom-map-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .custom-contact-info .custom-container {
        display: flex;
        justify-content: space-between;
    }

}




/* about page css */

/* Responsive text box */
.custom-text-box {
    background: white;
    padding: 20px 0;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.219);
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 40px;
}

.custom-text-box__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}
.responsive-image {
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    margin-left: 40px;
  }

  @media screen and (max-width: 768px) {
    .responsive-image {
      width: 90%;
      margin-left: 0;
    }
  }

  @media screen and (max-width: 480px) {
    .responsive-image {
      width: 100%;
    }
  }

.custom-text-box__content {
    font-size: 1rem;
    color: #666;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .custom-text-box {
        width: 90%;
        padding: 15px;
    }

    .custom-text-box__title {
        font-size: 1.2rem;
    }

    .custom-text-box__content {
        font-size: 0.9rem;
    }
}

/* end about page css */



/* Testimonial section styling */
.testimonial-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.219);
    margin: 0 auto;
    margin-bottom: 40px;
}

.testimonial-section__title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
}

.testimonial-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.219);
    padding: 20px;
    min-width: 350px; /* Increased card size */
    text-align: center;
    margin: 10px;
    flex: 1;
}

.testimonial-item__photo img {
    width: 200px;
    /*Adjustedphotosize*/height: 200px;
    margin-bottom: 15px;
    border-radius: 10px;
   
}

.testimonial-item__quote {
    font-size: 1    rem; /* Increased quote font size */
    color: #666;
    margin-bottom: 10px;
}

.testimonial-item__author {
    font-size: 1.5rem; /* Increased author font size */
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .testimonial-section__title {
        font-size: 1.5rem;
    }

    .testimonial-container {
        display: block;
        overflow-x: hidden;
    }

    .testimonial-item {
        margin: 10px auto;
        width: 90%;
    }

    .testimonial-item__quote {
        font-size: 1rem;
    }

    .testimonial-item__author {
        font-size: 0.9rem;
    }
}
/* end Testimonial section styling */





/* General Footer Styling */
.site-footer {
    /*background-color: #f9f9f9;
    */
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 3px 6px rgb(0 0 0 / 61%);
margin-bottom: 10px;
margin-top: 10px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-left: 25px;

}

.widget-title {
    margin-bottom: 25px;
}

.textwidget {
    color: #333;


}

.textwidget ul {
    list-style-type: none;
    padding: 0;
}

.textwidget ul li {
    margin-bottom: 20px;
}

.textwidget ul li a {
    color: #333;
    text-decoration: none;
}

.textwidget ul li a i {
    margin-right: 10px;
}

/* Gallery Widget */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    background-size: contain;
}

/* Social Icons */
.social-icon {
    display: flex;
    justify-content: flex-start;
    margin-left: 36px;

}

.social-icon ul {
    display: flex;
    list-style: none;
    padding: 0;

}

.social-icon ul li {
    margin-left: 15px;
}

.social-icon ul li a {
    color: #333;
    font-size: 30px;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Styling */
@media (max-width: 992px) {
    .upper-footer .row {
        flex-direction: column;
        margin-left: 30px;
    }


    @media (max-width: 768px) {
        .social-icon {
            justify-content: center;
            margin-left: -8px;
            margin-top: 25px;
        }

        .footer-logo img {
            margin-bottom: 35px;
            margin-left: 10PX;
        }


    }
}

/* Footer Layout for Large Screens */
@media (min-width: 992px) {
    .footer-primary .upper-footer .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-primary .upper-footer .col-lg-4 {
        flex: 1;
        margin: 10px;
    }

    /* .footer-primary .upper-footer .col-lg-4 {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    } */
}

/* end footer */
/* footer end css */


.video-container {
    width: 100%;
    max-width: 1200px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-left: 40px;
    margin-top: -20px;
    
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 40.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: #000;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  @media screen and (max-width: 768px) {
    .video-container {
      padding: 10px;
      margin-left: -5px;
    }

    .video-wrapper {
      padding-bottom: 75%; /* Adjusting for smaller devices */
    }
  }

  @media screen and (max-width: 480px) {
    .video-wrapper {
      padding-bottom: 100%; /* Full height for mobile devices */
    }
  }




  .carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    margin-left: 30px;
    border-radius: 15px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 33.33%; /* 3 slides on desktop */
    transition: transform 0.5s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Controls */
.carousel-btn-prev,
.carousel-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

/* Responsive adjustments */

@media (max-width: 992px) {
    .carousel-wrapper  {
        margin-left: 0;
        margin-top: 25px;
    }
}




@media (max-width: 992px) {
    .carousel-item {
        min-width: 50%; /* 2 slides on tablet-sized screens */
    }
}

@media (max-width: 576px) {
    .carousel-item {
        min-width: 100%; /* 1 slide on small screens */
        
    }
}