html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* hide horizontal scroll */
}

.heroh1 {
    font-family:"Inter", sans-serif;
    font-size: 84px;
    text-align: left;
    margin-left: 100px;
}

.heroh2 {
    font-family:"Inter", sans-serif;
    font-size: 30px;
    text-align: left;
    margin-left: 100px;
    margin-bottom: -60px;
}
.herop {
    font-family:"Inter", sans-serif;
    font-size: 15px;
    text-align: left;
    margin-left: 100px;
    margin-top: -20px;
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden; /* prevent child overflow */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  height: 100vh; /* full screen */
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* behind content */
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* optional dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* above video and overlay */
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Poppins", sans-serif;
}

.btn {
  background: #0e3252;
  color: #f9f5ec;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  background: #08223a;
}

footer {
    background-color: white;
    color: #419244;
    text-align: center;
    padding: 10px 0;
    font-family: 'General Sans', sans-serif;
    font-size: 14px;
    height: auto;
}

.contact {
  text-align: center;
  color: #0e3252;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
  background-color: #f9f5ec;
  align-content: left;
  text-align: left;
  align-items: left;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;

}

.contact-section {
  margin-left: 100px;   
  margin-top: 30px;
  text-align: left;
  color: #f9f5ec;
  font-family: "Inter", sans-serif;
}


.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #f9f5ec;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #f9f5ec;
}

.contact-info p {
  margin: 3px 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-icon {
    width: 32px;
    height: 32px;
}
