body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #f54603;
}



.date sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
}
.card a {
    text-decoration: none;
}

#about p {
	text-align: justify;
}

.bg-dark {
  background-color: #004371 !important;
}
.banner {
    position: relative;
    height: 600px; /* change to 100vh if you want full-screen */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Video styling */
#bannerVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Add overlay for better text visibility */
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}

/* Keep content above the video */
.banner > * {
    position: relative;
    z-index: 1;
}


.banner h1 {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 0;
    font-family: sans-serif;
}


@media (max-width: 767px) {
  .banner h1 {
    font-size: 1.5rem !important;
  }
}


.banner-buttons .btn {
    margin-top: 20px;
}

.logo-img {
    /* flex: 1; */
    height: 50px;
    max-height: 50px;
    width: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
}



.card-header .btn {
    width: 48%;
}

div#fbg {
    position: relative;
    background: url('img/d3.jpg') center center / cover no-repeat;
  }
  




  
#volunteerList {
 
    color: white;
    font-family: sans-serif;
    padding: 18px;
    background-color: rgba(0, 0, 0, 0.6)
}


#moduleList {
 
    color: white;
    font-family: sans-serif;
    padding: 18px;
    background-color: rgba(0, 0, 0, 0.5)
    
}

.card img {
    height: 285px;
    /*width: 285px; */
    margin-top: 16px;
  }
  .card img {
    height: 285px;
    width: 285px;
    margin-top: 16px;
  }


  #speakers {
    position: relative;
    background-image: url('img/d5.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  

  }
  

  

  #speakers .row > div {
    margin-bottom: 40px; /* adjust as needed */
  }
  .speaker-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
  }

  .speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }

  .speaker-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }

  .speaker-img img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    border-bottom: 3px solid #007bff;
  }

  .card-body {
    padding: 1rem;
  }

  .speaker-card h5.card-title {
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .speaker-card p.card-text {
    font-size: 0.9rem;
    color: #666;
  }

  #speakers h2 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    color: white;
  }

  /* Adjust spacing between rows */
  .gy-5 {
    --bs-gutter-y: 3rem;
  }

  @media (max-width: 768px) {
    .speaker-img {
      height: 230px;
    }
  }
  #program {

    margin-top: 40px;

}

  .sponsors-section {
    background: linear-gradient(180deg, #f9f9f9 0%, #eef3f9 100%);
  }
  
  .sponsor-logo {
    max-height: 70px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: grayscale(30%);
  }
  
  .sponsor-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }