body {
    font-size: 14px;
    font-family: "Source Sans Pro", sans-serif;
  }
  
  .newsletter-container {
    width: 100%;
    max-width: 671px;
    height: 445px;
    background: url("../images/v6265_856.png") no-repeat center center/cover;
    position: relative;
    padding: 20px;
    margin: 0 auto;
  }
  
  .newsletter-title {
    color: rgba(11, 11, 49, 1);
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .newsletter-desc {
    color: rgba(112, 112, 112, 1);
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .form-control {
    border: 2px solid rgba(219, 225, 231, 1);
    border-radius: 10px;
  }
  
  .subscribe-btn {
    background-color: rgba(0, 86, 143, 1);
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    border-radius: 10px;
  }
  
  .unsubscribe-text {
    color: rgba(112, 112, 112, 1);
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
  }

  

.custom-card-img {
  height: 336px;
  background-size: cover;
  border-radius: 5px;
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  background-color: rgba(245, 246, 255, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.card-title {
  color: rgba(11, 11, 49, 1);
  font-size: 18px;
  font-weight: 600;
}

.card-text {
  color: rgba(11, 11, 49, 1);
  font-size: 14px;
}

.btn-primary {
  color: #fff;
  background-color: rgba(0, 86, 143, 1);
  border: none;
}

.btn-primary:hover {
  background-color: #005077;
}

.navbar-custom {
  background-color: #f8f9fa; /* Background color */
}
.navbar-custom .navbar-brand img {
  width: 125px;
  height: 50px;
}
.navbar-custom .options {
  display: flex;
  align-items: center;
  margin-left: auto; 
}
.navbar-custom .options a {
  margin-left: 15px; /* Space between links */
}
.navbar-custom .options img {
  width: 24px; /* Size of the icons */
  height: 24px;
  margin-left: 10px; /* Space between icons */
}

.text-dark a {
  color: black;
  text-decoration: none;
}

#section1:target ~ .d-inline-flex .text-dark a[href="#section1"],
  #section2:target ~ .d-inline-flex .text-dark a[href="#section2"],
  #section3:target ~ .d-inline-flex .text-dark a[href="#section3"],
  #section4:target ~ .d-inline-flex .text-dark a[href="#section4"],
  #section5:target ~ .d-inline-flex .text-dark a[href="#section5"] {
    color: blue; /* Change the color to indicate the link is active */
    font-weight: bold;
  }

  .event-table {
    /* max-width: 1180px;
    margin: 0 auto;
    padding: 50px */
  }
  .event-table td, .event-table th {
    vertical-align: middle;
    padding: 20px;
  }
  .date-box {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .date-box .day {
    color: #212121;
    font-size: 16px;
  }
  .date-box .month {
    color: #212121;
    font-size: 14px;
  }
  .event-info {
    color: #212121;
    font-size: 24px;
    font-weight: 600;
  }
  .event-time, .event-speaker {
    color: #212121;
    font-size: 14px;
  }
  .event-speaker {
    font-weight: bold;
  }
  .event-img {
    width: 100px;
    height: 45px;
  }

  /* Image hover zoom effect */
.row img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

/* Text fade-in effect */
.text-fade-in {
  opacity: 0;
  animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}

/* Scroll animations */
.scroll-in-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.scroll-in-right {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.scroll-triggered .scroll-in-left, .scroll-triggered .scroll-in-right {
  transform: translateX(0);
  opacity: 1;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Button hover effects */
.btn:hover {
  background-color: #00568F;
  color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, box-shadow 0.3s;
}
  