body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #1d1d1f;
}

.topbar {
  padding: 16px 24px;
  background-color: #7fd7dd;
  border-bottom: 1px solid #d2d2d7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.search-box {
  width: 90%;
  max-width: 400px;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin: 30px 0 10px;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab.active {
  border-bottom: 2px solid black;
  font-weight: 600;
}

.icon-grid {
  display: flex; /* Change to flexbox */
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  justify-content: center; /* Center items horizontally */
  gap: 32px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;

}

header img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
    }

.section-header {
      text-align: center;
      margin: 40px 0 20px;
    }


.icon-item {
background-color: beige;
  width: 140px;           /* Increase card size */
  height: 140px;
  border: 1px solid #000000;
  border-radius: 50%;     /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  transition: transform 0.2s ease;
}

.icon-item:hover {
  transform: scale(1.05); /* slight zoom on hover */
}

.icon-item img {
  width: 60px;            /* Increase icon image size */
  height: 60px;
  margin-bottom: 10px;
}

.icon-item p {
  margin: 0;
  font-size: 1rem;
  color: #000000;
}

.hero-wrapper {
  position: relative;
  width: 100vw;
  height: 400px; /* Adjust height if needed */
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #f5f5f773 100%);
  pointer-events: none;
}

/* Contact Us */

.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  color: #333;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section h2 span {
  font-weight: bold;
  color: #000;
}

.contact-section .subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 0 1 200px;
  text-align: center;
}

.contact-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.contact-card h4 {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #555;
  margin-bottom: 5px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #333;
}
