:root {
    --dark-blue: #222482;
    --light-blue: #2BAFE3;
    --darkkpink: #FF6768;
    --light-blue-hover: #1793C5;

}

.activity-wrapper{
    padding: 30px 0;
}
.activity-section{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../Assets/activity.jpg");
    background-position: top !important;
}

.activity-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.activity-container p{
    text-align: justify;
}

.activity-row{
    max-width: 1100px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-top: none;
    border-radius: 10px;
    padding: 40px 30px;
    margin: 10px auto;
}

.work-content-container p{
    margin-bottom: 20px !important;
}

.work-btn {
    background-color: var(--darkkpink);
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    outline: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.work-btn  i{
    margin-left: 10px;
    font-size: 0.8rem;
    transition: all 0.3s;
}


.work-btn:hover i{
    transform: translateX(5px);
}
.work-image-wrapper{
    max-width: 450px;
    height: 200px !important;
    width: 100% !important;
}

.work-image-wrapper img{
    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: 10px;
}


.activity-container h4{
    margin: 0 !important;
    font-size: 1.25rem !important;
    color: var(--dark-blue)!important;
    font-weight: 600;
}
.act-img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.date{
    font-weight: 700;
    font-size: 1.1rem !important;
}



.act-para{
    text-align: justify;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400 !important;
}



.zoomed-img-gallery{
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000000c4;
    top: 0;
    left: 0;
    z-index: 10000;
  padding-top: 60px;
   justify-content: center;
   align-items: center;
    color: red;
    display: none;
}

.viewImageGallery{
    display: flex;
}

.slider-img{

    width: 300px;
    height: 300px;
    background-color: #fff;
}




.slick-wrapper, .slick-img{

    max-width: 1000px;
    height: 700px;
    width: 90%;
   
}

.ag-img{
    max-width: 1000px;
    height: 700px;
    width: 100%;
    object-fit: contain;
}

.close-btn{
    color: #fff;
    position: fixed;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    font-size: 1.2rem;
    z-index: 10;
}

.close-btn:hover{
    transform: rotate(360deg);
}

@media screen and (max-width: 1400px) {
    .ag-img{
        height: 500px;
    }
}

@media screen and (max-width: 991px) {
    .work-image-wrapper {
        max-width: 100% !important;
        height: 100%;
        
    }

    .work-content-container{
        margin-top: 20px;
    }
    .activity-row {
        padding: 20px !important;
    }
}


@media screen and (max-height: 600px) {
   
.viewImageGallery{
    padding-top: 200px;
}

.activity-row {
    padding: 10px !important;
}
}
 @media (max-width: 1024px) {
    .act-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

    }

    @media (max-width: 874px) {
    .act-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
    }

    @media (max-width: 782px) {
    .act-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
    }

    @media (max-width: 638px) {
    .act-img{
   width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
    }


    @media (max-width: 1215px) {
    .act-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
    }

    @media (max-width: 374px) {
    .act-img{
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
    }


    @media (max-width: 320px) {
    .act-img{
   width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
    }




/* Styles for the modal overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    overflow: auto; /* Enable scrolling if content exceeds viewport */
}

/* Styles for the modal content */
.modal-content {
    background-color: #fff; /* Background color */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    width: auto; /* Auto width based on content */
    max-width: 90%; /* Limit maximum width of the modal */
    max-height: 90%; /* Limit maximum height of the modal */
}

.modal-title {
    color: #333; /* Title color */
}

#gallery-images {
    margin-top: 20px; /* Adjust top margin of carousel */
    height: 80%; /* Adjust height of carousel */
}

#image-gallery-inner .carousel-item img {
    max-height: 100%; /* Limit image height */
    width: auto; /* Ensure image spans full width */
    max-width: 100%; /* Ensure image does not exceed container width */
    object-fit: contain; /* Maintain aspect ratio and fit inside container */
}

#image-gallery-caption {
    text-align: center; /* Center caption text */
    margin-top: 10px; /* Margin top for caption */
    color: #666; /* Caption text color */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #333; /* Control button background color */
}

.carousel-indicators {
    display: none; /* Hide carousel indicators */
}






