body {
    background-color: #f1faff;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif; /* Set your preferred font */
}
.navbar {
    background-color: #f1FAFF; /* d1e8e2 */
    margin-top: 24px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content:center;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: #0e0d0d; /* White text */
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease-in-out; /* Add a smooth color transition */
    margin: 0 25px;
}
.navbar a:hover {
    color: #c0ced1;}
    .current-page {
    border-bottom: 2px solid rgb(3, 3, 3); /* Add a white bottom border for the current page */
}


.slider-container {
    width: 100%;
    overflow: hidden;
    height: 80%; /* Adjust the height as needed */
  }
  
  .slider {
    display: flex;
    width: 100%; /* Adjust based on the number of slides */
    transition: transform 0.5s ease;
    overflow: hidden; /* Ensure images do not overflow */
  }
  
  .slide {
    flex: 0 0 100%; /* Each slide occupies full width */
  }
  
  /* img {
    width: 100%; 
    height: 800px; 
    object-fit: cover;
  } */
  
  .content {
    margin-left: 3%;
    margin-right: 3%;
    font-size: 24px;
    text-align: center;
  }
  
  .image-container {
  position: relative;
  width: 100%;
  height: 750px; 
  overflow: hidden;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.image-container img.active {
  opacity: 1;
}



/* ------------blog page styling--------------- */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 13%;
  margin-right: 13%;
}

.blog-item {
  display: flex;
  border: 2px;
  gap: 15px;
  border: 1px solid;
  border-color: black;
  padding: 10px;
}

.blog-item img {
  width: 100px;
  height: auto;
}

.blog-item h2 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4;
}

.blog-item h2 a {
  color: #333;
  text-decoration: none;
}

.blog-item h2 a:hover {
   color: rgb(110, 175, 190);
}

/* Blog content styling */
.blog-title{
  margin-left: 13%;
    margin-right: 13%;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: justify;
}

.blog-text{
    margin-left: 13%;
    margin-right: 13%;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: justify;
    font-size: 20px;
}

.blog-img{
  max-width: 60%;
  max-height: 60%;
}

.mdl-img-cont{
  display: flex;
}

.blog-mi{
  max-width: 30%;
  max-height: 30%;
}

/* bday banner*/
.banner {
  background-color: #eea2d7;
  color: rgb(238, 240, 227);
  padding: 20px;
  border-radius: 25px;
  position: fixed;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: slideDown 1s ease forwards; /* slide down animation */
}

.banner img {
  width: 80%;
  border-radius: 5%;
  margin-bottom: 10px;
  display: block;
  margin: 0 auto;
}

.banner p {
  text-align: center;
  margin-bottom: 0;
  font-size: 20px;
  color:#0e0d0d;
}

.banner h2 {
  text-align: center;
  margin-bottom: 0;
  color:#0e0d0d;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  font-size: 20px;
}

.close-btn:hover {
  color: #000000;
}

@keyframes slideDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}