
/* Universal anchor offset for fixed header */
html {
  scroll-padding-top: 100px; /* adjust to header height */
  scroll-behavior: smooth;
}


body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
  color: #111;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
.bg-cover {
  background-size: cover;
  background-position: center;
}
h1, h2, h3 {
  font-weight: 700;
}
.btn {
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
}

.custom-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f8f9fa;
  color: #111;
  border: 1px solid #ccc;
  padding: 20px 30px;
  z-index: 9999;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.popup-content {
  position: relative;
  font-size: 1.1rem;
}
.custom-popup .btn-close {
  position: absolute;
  top: 0.2rem;
  right: 0.5rem;
  background: none;
  border: none;
}

.hero-carousel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  position: relative;
  background: #000;
  color: #fff;
}
.carousel-container {
  width: 60%;
  max-width: 600px;
  position: relative;
}
.carousel-slide {
  display: none;
}
.carousel-slide img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.hero-text-box {
  width: 35%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.hero-text-box h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.hero-text-box p {
  font-size: 18px;
  margin-bottom: 20px;
}
.hero-text-box .btn {
  background: #ffffff33;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
}
.hero-text-box .btn:hover {
  background: #ffffff66;
}

.hero-carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%;
  background-color: #000;
  color: #fff;
  flex-wrap: wrap;
}
.carousel-container {
  width: 60%;
  max-width: 600px;
  position: relative;
}
.carousel-slide {
  display: none;
}
.carousel-slide img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.hero-text-box {
  width: 35%;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 12px;
}
.hero-text-box h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-text-box p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero-text-box .btn {
  background: #ffffff33;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.3s;
}
.hero-text-box .btn:hover {
  background: #ffffff66;
}

.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.carousel {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  padding-top: 20vh;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.hero-content .btn {
  background-color: #ffffff33;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.hero-content .btn:hover {
  background-color: #ffffff66;
}





/* ===== Section separators ===== */
section {
  border-top: 1px solid #ccc;
}

section:first-of-type {
  border-top: none;
}
