* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  height: 100%;
  width: 100%;
  font-family: 'HK Grotesk', sans-serif;
}

.hero {
  width: 100%;         /* ✅ Fix 100vw overflow */
  height: 100vh;
  border: 8px solid white;
  position: relative;
  overflow: hidden;     /* ✅ Ensure inner absolute elements don’t overflow */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 27, 71, 0.6);
  z-index: -1;
}

.logo-container {
  position: absolute;
  /* top: 80px; */
  left: 100px;
  z-index: 10;
}

.logo {
  height: 260px;
  width: auto;
  max-width: 100%;
}

.coming-soon-container {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 10;
}

.coming-soon {
  height: 180px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0px;
}

.content {
  position: absolute;
  bottom: 80px;
  left: 100px;
  color: #fff;
  z-index: 2;
  text-align: left;
  max-width: 700px;
  padding-right: 20px;
}

.content h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.highlight {
 display: inline-block;
  background-color: white;
  background-size: contain;
  padding: 10px 20px;
  color: #0B1E41; /* dark navy like your image */
  font-size: 48px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}
.cta-buttons-horizontal {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  gap: 24px;
  width: 100%;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 10px 30px;
  font-size: 18px;
  white-space: nowrap;
  gap: 12px;
  width: 100%;          
  max-width: 400px;
  min-width: 400px;
}

.cta-btn {
  background: linear-gradient(to bottom, #e0e0e0, #cccccc);
  color: #000;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-family: 'HK Grotesk', sans-serif;
}
.cta-box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}
.arrow {
  font-size: 24px;
  color: #fff;
}

.banner {
  position: relative;
  width: 100%;
  height: 200px;
  /* background: url('https://i.ibb.co/VCWcyvz/incubation-bg.jpg') center center / cover no-repeat; */
  display: flex;
  align-items: center;
  color: white;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background-color: rgba(0, 18, 58, 0.7); */
}

.banner-text {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
}

.highlight {
  display: inline-block;
  /* background: url('https://i.ibb.co/pZ5bgXX/brush-stroke.png') no-repeat center center; */
  background-size: contain;
  padding: 0 10px;
  font-weight: 600;
  color: #0b1e4a;
}
.banner-text-font{
  font-size: 40px;
  letter-spacing: 0.5px;
  font-weight:lighter;
}
.banner-text-big{
  font-size: 50px;
  letter-spacing: 2px;
  font-weight: bold;
}

/* ========== Base Desktop Styles (No Change) ========== */
/* Already present styles work fine on ≥1025px */

/* ========== Tablet (768px–1024px) ========== */
@media (max-width: 1024px) {
  .logo-container {
    top: 60px;
    left: 60px;
  }

  .logo {
    height: 200px;
  }

  .coming-soon-container {
    top: 40px;
    right: 60px;
  }

  .coming-soon {
    height: 140px;
  }

  .content {
    left: 40px;
    bottom: 60px;
    max-width: 90%;
  }

  .content h1 {
    font-size: 2rem;
  }

  .banner-text-font {
    font-size: 32px;
  }

  .banner-text-big {
    font-size: 42px;
  }

  .cta-buttons-horizontal {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .cta-box {
    min-width: unset;
    width: 90%;
  }

  .arrow {
    transform: rotate(0deg); /* Keep horizontal arrow */
  }
}

/* ========== Mobile (≤767px) ========== */
@media (max-width: 767px) {
  .logo-container {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .logo {
    height: 240px;
  }

  .coming-soon-container {
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .coming-soon {
    height: 150px;
  }

  .content {
    left: 20px;
    right: 20px;
    bottom: 40px;
    max-width: 100%;
    text-align: left;
  }

  .banner-text-font {
    font-size: 26px;
  }

  .banner-text-big {
    font-size: 34px;
  }

  .cta-buttons-horizontal {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .cta-box {
    width: 100%;
    font-size: 16px;
    padding: 10px 20px;
  }

  .arrow {
    font-size: 20px;
    transform: rotate(90deg); /* Optional: vertical arrow on small screens */
  }

  .highlight {
    font-size: 28px;
    padding: 5px 10px;
    background-size: 120% auto;
  }
}
