body{
    background-color: #dfeaf0;
    background-size: cover; 
    background-position: center;
    height: 100vh;
    background-repeat: no-repeat;
}
.navbar{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      background: linear-gradient(to right, #16b5bb, #046697);
      color: white;
    
    
}
.carousel-img {
  height: 300px;         
  object-fit: cover;     
}

@media (max-width: 768px) {
  .carousel-img {
    height: 180px;     
  }
}
.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}
#heroCarousel .carousel-item {
    height: 70vh; /* or fixed height like 700px */
    min-height: 400px;
    position: relative;
    overflow: hidden;
  }

  #heroCarousel .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .carousel-caption {
    z-index: 2;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.1));
  }
  @media only screen and (max-width: 767px) {
  .carousel {
    display: none !important;
  }
  section.py-5.text-white {
    display: none !important;
  }
}

.logo{
  
  height: 45px;
    
}

.nav-link{
    color: #8afff6;
    font-family: 'Rancho';
    font-size: 25px;
    margin-right: 10px;
    position: relative;
    text-decoration: none; 
}
.nav-link::after {
  content: "";
  position: absolute;
  color: rgb(236, 235, 226);
  left: 0;
  bottom: -2px; /* space below the text */
  height: 2px; /* thickness of the underline */
  width: 0;
  background-color: gold;
  transition: width 0.9s ease;
}

.nav-link:hover::after {
  width: 100%; /* full underline */
}

.pagetitle{
  text-align: center;
  margin-top: 10px;
}

/* latin */
@font-face {
  font-family: 'Rancho';
  color: rgb(244, 246, 250);
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/rancho/v22/46kulbzmXjLaqZRVam_h.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.font-effect-shadow-multiple {
  text-shadow: .04em .04em 0 #fff,.08em .08em 0 #aaa;
  -webkit-text-shadow: .04em .04em 0 #fff, .08em .08em 0 #aaa;
}







  .footer {
      background-color: #023047;
      color: white;
      text-align: center;
      padding: 20px 0;
    }

    .social-icons a {
      color: white;
      margin: 0 12px;
      font-size: 20px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .social-icons a:hover {
      transform: scale(1.2);
      opacity: 0.8;
    }

    .footer p {
      margin-top: 10px;
      font-size: 14px;
    }