/* NAV CONTAINER */
.main-nav {
  text-align: center;
  position: relative;
}

/* LINKS */
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  margin: 4px;
  text-decoration: none;
  color: #0a74da;
  font-weight: 600;
}

/* HOVER */
.main-nav a:hover {
  background: #0a74da;
  color: white;
  border-radius: 4px;
}

/* HAMBURGER ICON */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


/* MOBILE */
@media (max-width: 700px) {

.menu-icon {
  display: block;
  text-align: right;
  padding: 10px;
}

.menu-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 10px;
  border-top: 1px solid #eee;
}

}

.footer-nav {
  text-align: center;
  margin-top: 10px;
}

.footer-nav a {
  margin: 0 8px;
  padding: 4px 8px;
  color: #0a74da;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ff6600;
  text-decoration: underline;
}

.legal-nav {
  text-align: center;
  margin-top: 5px;
}

.legal-nav a {
  color: #666;
  font-size: 12px;
  margin: 0 6px;
  text-decoration: none;
}

.legal-nav a:hover {
  color: #ff6600;
  text-decoration: underline;
}
.body {
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
}
/* Slideshow and team frame starts here */
.slideshow {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  border: 2px solid #0a74da;
  border-radius: 8px;
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: 250px; /* adjust as needed */
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#s1:checked ~ .slides .slide:nth-child(1) { opacity: 1; }
#s2:checked ~ .slides .slide:nth-child(2) { opacity: 1; }
#s3:checked ~ .slides .slide:nth-child(3) { opacity: 1; }

input[type=radio] { display: none; }

.team-frame {
  display: flex;
  flex-direction: row; /* landscape layout */
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}

.image-placeholder {
  width: 300px;
  height: 200px;
  border: 2px dashed #0a74da;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  color: #666;
  font-style: italic;
}

.intro-text {
  flex: 1;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav {
  text-align: center;
  margin: 1rem 0;
}
.nav label {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  background: #0a74da;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
/* SLideshow CSS ENds here */

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-float img {
  margin-top: 5px;
}

/* WhatsApp */