/* styles.css */
.bg-custom {
    background-color: rgb(168, 125, 34);;
    
}

/* General Navbar Styles */
.navbar {
    box-shadow: 0 4px 6px rgba(134, 204, 236, 0.1);
    width: 100%;
    
}

/* Brand Name and Logo */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    
    
}
h1{
    font-weight: bold;
    color: rgb(251, 251, 252); /* Custom color */
}

.navbar-brand img {
    margin-right: 25px;
    border-radius: 20PX;
    margin-left: 30PX;
}

/* Nav Links */
.nav-link {
    font-size: 1.1rem;
    margin-right: 1rem;
    transition: color 0.2s;
    color: rgb(71, 12, 110); /* Custom color */
}
.container2{
 
    margin-top: 71%;
    margin-left: 40px;
    border: 1px solid rgb(0, 128, 19);
    background-color: #a08717;
    width: 90%;
    border-radius: 10px;
    padding: 50px;
}
.container2 p{
    display: flex;
    font-size: 25px;
    text-align: center;
    color: #ffff;
}
   
   .container01{
 
    margin-top: 2px;
    margin-left: 40px;
    border: 1px solid purple;
    background-color: purple;
    width: 90%;
    border-radius: 10px;
    padding: 50px;
} 
.container01 p{
    display: flex;
    font-size: 25px;
    text-align: center;
    color: #ffff;
}



.nav-link:hover {
    color: #007bff;
}

/* Active Nav Link */
.nav-item.active .nav-link {
    color: #077af5;
}


/* Donate Button */
.btn-outline-success {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}
.top {
    position: relative;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #252020;
    z-index: 999;
    padding-top: 60px;
}



        .footer {
            background-color: #343a40;
            color: white;
            padding: 20px 0;
        }
        .footer a {
            color: white;
        }
        .footer a:hover {
            text-decoration: none;
        }

        
        .carousel-item {
            transition: opacity 1.5s ease-in-out;
            opacity: 0;
          }
      
          .carousel-item.active {
            opacity: 1;
          }
         
  .carousel-item {
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
  }

  .carousel-item.active {
    opacity: 1;
  }


  .container5 {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 65%;
    height: 200px;
    padding-bottom: 30px;
   
  }
  
  .image3 {
    padding: 5px;
    flex: 1; /* This will make all images share available space equally */
    height: auto; /* Ensures the height adjusts to the image's aspect ratio */
  }
  
  .image3 img {
    width: 50%; /* Ensures the image takes up the full width of its container */
    height: 100px; /* Maintains the image's aspect ratio */

  }

  .container3 {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 95%;
    padding-bottom: 30px;
  }
  
  .image {
    padding: 5px;
    flex: 1; /* This will make all images share available space equally */
    height: auto; /* Ensures the height adjusts to the image's aspect ratio */
    
  }
  
  .image img {
    width: 100%; /* Ensures the image takes up the full width of its container */
    height: auto; /* Maintains the image's aspect ratio */
    border-radius: 10px;
  }






  .container4{
    margin-bottom: 0;
    width: 100%;
    background-color: #410c64;
    height: 30px;
    text-align: center;
  }
  .part a{
    padding: 10px;
    color: white;
  }
  
  .part{
    color: white;

  }

 
  .accordion-item {
    width: 90%;
    margin: 0 auto; /* Adds margin between accordion items */

  }

  .accordion-body {
    padding: 20px; /* Adds padding inside accordion body */
  }
  .accordion-item{
    margin-bottom: 10px;
  }
  .accordion{
    margin-top: 40px;
    margin-bottom: 60px;
  }

@media (max-width: 768px) {
    /* Adjust Navbar Styles for Mobile Devices */
    .navbar-brand {
        font-size: 1.25rem;
    }
    h1{
        font-weight: bold;
        font-size: 20px;
        color: rgb(251, 251, 252); /* Custom color */
    }
    .container2 p{
        font-size: 18px;
        text-align: center;
    }
    .container2{
       margin-top: 170px;
       margin-left: 15px;

       
        padding: 30px;
    }


    .nav-link {
        font-size: 1rem;
    }
    .btn-outline-success {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    .container3 {
        
        display: inline-block;
        justify-content: space-between;
        margin: 0 auto;
        width: 100%;
        padding-bottom: 50px;
      }
     

      .image img{
        border-radius: 10px;
      }

      .container5 {
    display: block;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
    margin-bottom: 30px;
   
  }
  .image3 img {
    margin-left: 70px;
    width: 50%; /* Ensures the image takes up the full width of its container */
    height: 100px; /* Maintains the image's aspect ratio */

  }
  
      
}


/* contact page*/

.contact-form {
  top: 20px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333333;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form .form-group textarea {
  height: 100px;
  resize: none;
}

.contact-form .form-group button {
  width: 100%;
  padding: 10px;
  background-color: #5cb85c;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .form-group button:hover {
  background-color: #4cae4c;
}


/* Table styling */
table {
  top: 60px;
  padding: 20px;
  margin: 0 auto;
  width: 50%;
  border-collapse: collapse; /* Ensures no borders between cells */
  margin-bottom: 50px;
}

/* Header row styling */
th {
  margin-top: 30px;
  text-align: left; /* Align header text to the left */
  padding: 8px; /* Padding around text */
  background-color: #f2f2f2; /* Light gray background for header */
  font-weight: bold; /* Bold header text */
}

/* Data cell styling */
td {
  padding: 8px; /* Padding around text */
  text-align: center; /* Align text to the left */  
  font-siz: 20px;
}

/* Optional: Zebra stripe effect for rows */
tr:nth-child(even) {
  background-color: #f9f9f9; /* Light gray background for even rows */
}

/* Optional: Hover effect for rows */
tr:hover {
  background-color: #f1f1f1; /* Slightly darker gray on hover */
}



/*image*/
       .container10 {
            margin-to: 5px;
    width: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.container10 img {
    margin-to: 10px;
    width: 100%;
    height: 750px;
    object-fit: cover; /* Ensures the image covers the entire container */
    display: block;
    margin-bottom: 30px;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 399px; /* Ensures the overlay matches the image size */
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity to make the image dimmer */
    z-index: 1;
    margin-bottom: 30px;
}

.heading20 {
    position: absolute;
    top: 50%; /* Centers the text vertically */
    left: 50%; /* Centers the text horizontally */
    transform: translate(-50%, -50%); /* Adjusts the centering */
    color: white;
    background: transparent; /* Remove background color */
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    z-index: 2; /* Ensure the heading appears above the overlay */
}

@media (max-width: 600px) {
    .container10 img,
    .image-overlay::after {
        height: 300px;
    }
    .heading20 {
    position: absolute;
    top: 50%; /* Centers the text vertically */
    left: 50%; /* Centers the text horizontally */
    transform: translate(-50%, -50%); /* Adjusts the centering */
    color: white;
    background: transparent; /* Remove background color */
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    z-index: 2; /* Ensure the heading appears above the overlay */
}
.container11{
  width: 100%;
  height: 200px;
  
}
.container11 img{
   width: 100%;

}

}

  

/* contact page*/
/*FOOTER*/

                @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
                * {
                  margin: 0;
                  padding: 0;
                  box-sizing: border-box;
                }
               
                .formbold-main-wrapper {
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  padding: 48px;
                }
              
                .formbold-form-wrapper {
                  margin: 0 auto;
                  max-width: 550px;
                  width: 50%;
                  background: white;
                }
              
                .formbold-form-title {
                  margin-bottom: 40px;
                }
                .formbold-form-title h3 {
                  color: #07074D;
                  font-weight: 700;
                  font-size: 28px;
                  line-height: 35px;
                  width: 60%;
                  margin-bottom: 20px;
                }
                .formbold-form-title p {
                  font-size: 16px;
                  line-height: 24px;
                  color: #536387;
                  width: 70%;
                }
                .formbold-form-input {
                  text-align: center;
                  width: 100%;
                  padding: 14px 22px;
                  border-radius: 6px;
                  border: 1px solid #DDE3EC;
                  background: #FAFAFA;
                  font-weight: 500;
                  font-size: 16px;
                  color: #536387;
                  outline: none;
                  resize: none;
                }
                .formbold-form-input:focus {
                  border-color: #6a64f1;
                  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
                }
              
                .formbold-btn {
                  text-align: center;
                  width: 100%;
                  font-size: 16px;
                  border-radius: 5px;
                  padding: 14px 25px;
                  border: none;
                  font-weight: 500;
                  background-color: rgb(168, 125, 34);
                  color: white;
                  cursor: pointer;
                  margin-top: 15px;
                }
                .formbold-btn:hover {
                  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
                }
              
  .container{
    margin-top: 30px;
  }


              
