
/* Basic modal styling */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); 
  opacity: 0; 
  transition: opacity 0.5s ease, visibility 0s 0.5s; /* Smooth fade-in/out */
}

.modal.show {
  display: block; /* Show modal */
  opacity: 1; /* Fully visible */
  transition: opacity 0.5s ease; /* Smooth transition */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  transform: translateY(-50px);
  transition: transform 0.5s ease; /* Smooth transition for entry */
}

.modal.show .modal-content {
  transform: translateY(0); /* Modal moves into view */
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.modal-backdrop {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255); 
  opacity: 0;
  transition: opacity 0.5s ease; 
  z-index: 0; 
}

.modal-backdrop.show {
  opacity: 0.9; 
}

body.modal-open {
  overflow: hidden; }

.events-img {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px; /* Size of the play icon */
    color: white; /* Color of the play icon */
    background-color: rgba(0, 0, 0, 0.5); /* Background with slight transparency */
    border-radius: 50%;
    padding: 15px; /* Add padding to the icon */
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.events-img:hover .play-icon {
    opacity: 1; /* Show the play icon when hovering over the image */
}


.custom-quote {
  border-left: 4px solid #ccc; 
  padding-left: 20px;
  margin: 40px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #333;
}

.author {
  margin-left: 40px;
  margin-top: 15px;
  font-size: 16px;
  color: #444;
}



@media (max-width: 768px) {
  .inner-banner {
    background-position: center;
    background-size: cover;
    padding: 60px 15px; 
    text-align: center;
  }

  .inner-banner h1 {
    font-size: 28px;
  }

  .breadcrumb {
    justify-content: center !important;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    content: "›"; 
    padding: 0 5px;
  }
}

html {
  scroll-behavior: smooth;
}

/*updates 17/04/2025*/
    
    @media (max-width: 767px) {
      .section-title .title h2 {
        text-align: center;
      }
      .accordion .card {
        margin-left: auto;
        margin-right: auto;
      }
      .accordion .card-header,
      .accordion .card-body {
        text-align: center;
      }
      .section-title h2 {
        text-align: center;
      }
      .row.pb-4.justify-content-center .row {
        flex-direction: column;
        align-items: center;
      }
      .row.pb-4.justify-content-center .col-md-6 {
        text-align: center;
      }
      .container.bg-dark {
        padding-left: 15px;
        padding-right: 15px;
      }
      .header .navbar-brand.logo img {
        width: 60px;
        height: auto;
      }
      .header .mx-auto {
        display: none !important;
      }
      .cicon {
        width: 50%;
        flex: 0 0 50%;
      }
      .counter-icon i {
        font-size: 20px;
      }
    }



