*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: "Oswald", sans-serif;
   font-optical-sizing: auto;
   font-weight: 400;
   font-style: normal;
    
}

nav{
    background-color: rgb(235, 117, 200);
    height: 100px;
}

.nav-img{
    margin-right: 10px;
}

.dropdown-item:hover {
    background-color: rgb(235, 117, 200) !important;
    color: black !important;
}

.details-section{
    background-color: #BD97CB;
}

.carousel-item img {
    background-size: contain;
    height: 87vh; 
    width: 100%; 
}

.nav-item.dropdown:hover .dropdown-menu {
display: block;
}
.dropdown-menu {
margin-top: 0;
}

.btn:hover {
    color: initial; /* Keeps the text color the same as it was before hover */
}

a:hover .btn {
    color: initial; /* Ensures anchor hover does not change button text color */
}

.d-flex a div i {
    color:rgb(235, 117, 200); /* Sets the icon color to pink */
}

.outer-div{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    margin:20px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    width: 50%;
    align-items: center;
}
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-container img, video{
    width: 100%; 
    object-fit: cover; 
    height: 500px;
}

.donate-section{
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 75vh; 
    background-image: linear-gradient(rgb(22,22,22,0.8),rgb(22,22,22,0.1)),url(assets/donate1.jpg);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    overflow: hidden;
    margin-left: auto;
}

.slideshow-container {
    position: relative;
    max-width: 80%; /* Adjust based on your preference */
    margin: auto; /* Center the container */
  }
  
  .slide {
    display: none;
    width: 100%;
    height: auto; /* Adjusted to maintain aspect ratio */
  }
  
  /* Style for the active slide */
  .active {
    display: block;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 2; }
  }
  
  .slide {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  
    

.donate-button {
    background-color: deeppink;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donate-button:hover {
    background-color: rgb(235, 117, 200); /* Lighter shade of pink on hover */
    color: white !important;
}

@media (max-width: 992px) {
.navbar {
    height: auto; /* Adjust based on your design */
    }
}

   
   