
#more {display: none;}


      #about-us {
  background-color: #fff;
  padding: 50px 0;
}

h1 {
  font-size: 36px;
  color: #333;
}

.lead {
  font-size: 18px;
  color: #666;
}

/* Image Box Styles */
.image-box {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
 /* margin-bottom: 20px;*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img {
  display: block;
  width: 100%;
  height: auto;
}

.image-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Accordion Dropdown Style *
.accordion {
  background-color: #ee7732;
  color: white;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  border-radius: 10px;
}

.accordion:hover {
  background-color: #e98f19;
}
*/
.panel {
  padding: 0 15px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.panel p {
  margin: 15px 0;
  color: #555;
}

/* Info Boxes */
.info-box {
  background-color: #f19b1a;;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.box-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.box-content i {
  color: #fff;
}

h4 {
  font-size: 24px;
  margin-bottom: 0;
}

p {
  font-size: 16px;
}



.accordion-section {
  margin-top: 20px;
}

.accordion-item {
  margin-bottom: 15px;
}

.accordion {
  background-color: #D2D3D5;; /* Button background */
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 15px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  width: 100%;
  border-radius: 5px;
}

.accordion:hover {
  background-color: #D2D3D5;; /* Darker on hover */
}

.panel {
  padding: 15px;
  display: none; /* Hidden by default */
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 5px;
}

.accordion-image {
  width: 100%; /* Adjust based on your design */
  max-width: 400px; /* Limit the maximum size */
  margin-top: 10px; /* Space above the image */
}

.info-box {
  display: flex;
  align-items: center;
  background-color: #e9ecef;
  padding: 15px;
  margin-top: 15px;
  border-radius: 5px;
}

.box-content {
  display: flex;
  align-items: center;
}

.box-content i {
  margin-right: 15px;
}


      /* CTA Section */
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* CTA Items */
.cta-item {
    flex: 1;
    text-align: center;
    position: relative; /* Make relative for absolute positioning */
}

/* QR Code Image */
.qr-code img {
    width: 150px;
    height: 150px;
    position: relative;
    z-index: 1; /* Ensure QR code is above background */
}

/* Call to Action Text */
.cta-text h2 {
    font-size: 2rem;
    color: #333;
}

.cta-text p {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0;
}

.cta-button {
    padding: 15px 30px;
    background-color: #f19b1a;;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f19b1a;;
}

/* Book Image Overlap */
.book-image {
    position: absolute; /* Position absolute for overlap effect */
    right: 20px; /* Adjust as needed */
    bottom: 30px; /* Adjust as needed */
    animation: slide-in 1s ease forwards; /* Apply animation */
}

.animated-book {
    width: 120px; /* Adjust size as needed */
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Right Image Styling */
.right-image img {
    width: 100%; /* Full width */
    max-width: 200px; /* Max width */
    height: auto;
    border-radius: 10px; /* Rounded corners */
}

/* Animation for sliding in the book */
@keyframes slide-in {
    from {
        transform: translateY(30px); /* Start slightly below */
        opacity: 0;
    }
    to {
        transform: translateY(0); /* End position */
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-item {
        margin-bottom: 20px;
    }

    .book-image {
        position: relative; /* Change to relative for small screens */
        margin-top: -30px; /* Adjust for overlap */
    }

    .right-image img {
        max-width: 150px; /* Adjust size for smaller screens */
    }
}

      /* General Styling */
/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}*/

/* CTA Section */
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Items */
.cta-item {
    flex: 1;
    text-align: center;
}

/* QR Code Image */
.qr-code img {
    width: 150px;
    height: 150px;
}

/* Call to Action Text */
.cta-text h2 {
    font-size: 2rem;
    color: #333;
}

.cta-text p {
    font-size: 1.2rem;
    color: #666;
    margin: 20px 0;
}

.cta-button {
    padding: 15px 30px;
    background-color: #f19b1a;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f19b1a;;
}

/* Book Image */
.book-image img {
    width: 500px;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}




/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-item {
        margin-bottom: 20px;
    }
}



/* Book Image Styling */
.book-image {
    position: relative;
}

.animated-book {
    width: 200px; /* Adjust size as needed */
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Shadow effect */
    animation: fadeIn 1s ease; /* Fade-in animation */
}

/* Animation for fading in the book */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Move up effect */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column; /* Stack items vertically on small screens */
        text-align: center; /* Center-align text */
    }

    .cta-item {
        margin-bottom: 20px; /* Space between items */
    }

    .animated-book {
        width: 150px; /* Smaller size for mobile */
    }
}







h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
}

/* Volunteer Gallery Styling */
.volunteer-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.volunteer-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volunteer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.volunteer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.volunteer-card h3 {
    margin: 10px 0 5px;
    font-size: 1.5em;
}

.volunteer-card p {
    margin: 0 0 15px;
    color: #666;
    font-size: 1.1em;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
}

.modal-content img {
    width: 100%;
    border-radius: 10px;
}

.modal-content h3 {
    margin: 15px 0 10px;
    font-size: 2em;
}

.modal-content p {
    font-size: 1.2em;
    color: #444;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
}


 /* Banner Logo CSS */
    /*    .banner {
            width: 100%;
            height: 150px; 
            background-color: #f0f0f0; 
            display: flex;
            justify-content: center;
            align-items: center;
        }
*/
        .logo-banner {
            max-width: 200px;
            height: auto;
        }






        
        
    /*collobration slider*/
    
    
    
    
    
/*book*/

/* Section Styling */
.cta-section-container {
    background-color: #f1f1f1;
    padding: 80px 0;
    margin: 40px 0;
}

.cta-section-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Existing CTA Section Styles *
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-item {
    flex: 1;
    margin: 0 20px;
}

/* Text Styling *
.cta-text h5 {
    font-size: 18px;
    color: #666;
}

.cta-text h2 {
    font-size: 36px;
    color: #4CAF50;
}

/* Button Styling *
.cta-button {
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
  /*  cursor: pointer;*
}

.cta-button:hover {
    background-color: #45a049;
}

/* Right Image Styling *
.right-image img {
    max-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-item {
        margin: 20px 0;
    }
}
*/







/* Preloader */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* Background color while page is loading */
    z-index: 9999; /* Ensures the preloader appears on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader:before {
    content: "";
    width: 50px;
    height: 50px;
    border: 5px solid orange;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Simple spinner animation */
}

/* Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f58634;
    color: #fff;
    width: 50px;
    height: 50px;
    display: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color 0.3s ease-in-out;
}

.back-to-top i {
    font-size: 24px;
}

.back-to-top:hover {
    background-color: #ff8533;
    color: #fff;
}

/* Show the back-to-top button when scrolling down */
.back-to-top.show {
    display: flex;
}

/* Keyframes for spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Media query for responsiveness */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    .back-to-top i {
        font-size: 20px;
    }
}



/*


    

    
