        /* Custom CSS for styling */
        ul li {
            font-size: 18px;
        }

        p {
            font-family: Arial;
        }

        nav {
            position: absolute;
            width: 100%;
            z-index: 1000; /* Ensure navbar appears above other content */
            background-color: transparent !important; /* Set navbar background to transparent */
        }

        .navbar-nav {
            margin-left: auto;
        }

         /* Dropdown menu  */
        .dropdown-menu {
            max-height: 300px;
            overflow-y: auto;
        } 
        .banner-img {
    position: relative;
    width: 100%;
    height: 500px;
}


.banner-img .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.banner-img .text-container p {
  font-family: Cloudy Aurora Serif;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.banner-img .text-container button.ctu {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-img .text-container button.ctu:hover {
    background-color: #0056b3;
}

@media (max-width:1211px){
  .banner-img {
    position: relative;
    width: 100%;
    height: 300px;
}
  .banner-img .text-container p {
  font-family: Cloudy Aurora Serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}
}
@media (max-width:600px){
  .banner-img {
    position: relative;
    width: 100%;
    height: 200px;
}
.banner-img .text-container p {
  font-family: Cloudy Aurora Serif;
    font-size: 1rem;
    margin-bottom: 1rem;
}
}
/* imgtext */

.imgtext {
    font-size: 2rem;
    font-family: 'Adobe Garamond Pro Bold', serif;
}

.container3 {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          padding: 20px;
      }
      
      .card1 {
          width: 250px;
          background-color: #ffffff;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
          /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
          border-radius: 10px;
          margin: 10px;
          overflow: hidden;
          transition: transform 0.3s ease;
      }
  
      .card1:hover {
          transform: translateY(-5px);
      }
  
      .card1 img {
          background-size: 100% 100%;
          width: 100%;
          height: 200px; /* Fixed height for images */
          border-radius: 10px 10px 0 0;
      }
  
      .card1 p {
          padding: 15px;
          margin: 0;
          font-size: 16px;
      }
  
      @media (max-width: 768px) {
          
          .card1 {
              width: calc(50% - 20px);
          }
      }
  
      @media (max-width: 576px) {
          .card1 {
              width: calc(100% - 20px);
          }
      }



      /* content */

h1 {
    font-size: 32px;
    color: black;
    text-decoration: underline 1px;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}
h2 {
    font-size: 32px;
    color: black;
    text-decoration: underline 1px;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}
h3 {
    font-size: 32px;
    color: black;
    text-decoration: underline 1px;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}
h4 {
    font-size: 32px;
    color: black;
    text-decoration: underline 1px;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}
h5 {
    font-size: 32px;
    color: black;
    text-decoration: underline 1px;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}
h6 {
    font-size: 32px;
    color: black;
    text-decoration: underline 1px;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}


.p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-family: Adobe Myungjo Std M;
}

.p:last-child {
    margin-bottom: 0;
}
/* footer */
.footer {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* background-color:black; */
    background-image: url(images/banner.jpg);
    background-size:100% 100%;
    padding: 50px 0;
}

.footer-heading {
    color: white;
    font-size: 24px;
    font-family: 'Matura MT Script Capitals', cursive;
    margin-bottom: 20px;
}

.footer-text {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.social-icons {
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-link:hover {
    text-decoration: underline;
}

