#section-1 {
  position: relative;
  overflow: hidden;
  outline: none;
  height: 100vh;
  height: 100dvh;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.slide-1 {
  background-image: url("../images/sec-1/desktop-bg-1.jpeg");
}

.slide-2 {
  background-image: url("../images/sec-1/desktop-bg-2.jpeg");
}

.sec1-details-con {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 25%;
  top: 35%;
  right: 5%;
  padding: 15px;
  gap: 15px;
  border-radius: 8px;
}

.sec1-specifications-con {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}

.sec1-specification {
  font-family: var(--font1);
  font-size: large;
  color: var(--primary-green);
}

.sec1-highlights-con {
  display: flex;
  flex-direction: column;
  color: var(--secondary-green);
  gap: 15px;
}

.sec1-animated-line {
  margin: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 24px; /* thicker background so the pill reads clearly */
  line-height: 1;

  /* warm, translucent gradient background that matches the banner palette */
  background: rgba(0, 0, 0, 0.8);

  /* soft frosted effect + subtle border to lift from dark overlay */
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);

  /* layered shadow for depth */
  box-shadow:
    0 8px 22px rgba(47, 33, 12, 0.12),
    0 20px 46px rgba(10, 8, 6, 0.12);

  /* animation + positioning preserved */
  opacity: 0.95;
  transform: translateY(6px);
  animation-name: bannerFadeUp;
  animation-duration: 2.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-position 0.4s ease;
}

.sec1-animated-line:hover,
.sec1-animated-line:focus {
  transform: translateY(0) scale(1.02);
  box-shadow:
    0 12px 28px rgba(47, 33, 12, 0.18),
    0 30px 72px rgba(10, 8, 6, 0.18);
  cursor: default;
}

/* stagger delays so lines animate in sequence */
.sec1-animated-line:nth-child(1) {
  animation-delay: 0s;
}
.sec1-animated-line:nth-child(2) {
  animation-delay: 0.55s;
}
.sec1-animated-line:nth-child(3) {
  animation-delay: 1.1s;
}
.sec1-animated-line:nth-child(4) {
  animation-delay: 1.65s;
}
@keyframes bannerFadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0.95;
    transform: translateY(-2px);
  }
  100% {
    opacity: 0.6;
    transform: translateY(4px);
  }
}

.sec1-enquire-con {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.enquire-now {
  padding: 15px;
  width: 100%;
  font-size: 1.5rem;
  border-radius: 10px;
  border: none;
  background-color: var(--secondary-green);
  color: var(--secondary-col);
}

.broucher-con {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 101;
}

.broucher-btn {
  width: auto;
  height: auto;
  padding: 6px 12px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font1);
  font-size: x-small;
  color: var(--secondary-col);
  border-radius: 8px;
  border: none;
  background: var(--secondary-green);
}

.call-fab {
  margin-bottom: 60px;
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.call-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.call-fab__link:hover,
.call-fab__link:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(2, 10, 30, 0.32);
}

/* tooltip */
.call-tooltip {
  position: absolute;
  right: 70px;
  /* place to left of the FAB */
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #0b69ff;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* show tooltip on hover or focus */
.call-fab__link:hover .call-tooltip,
.call-fab__link:focus .call-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.call-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  fill: #0b69ff;
}

.whatsapp-fab {
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.whatsapp-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(180deg, #06b257, #059e4a);
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

/* slightly lift on hover/focus */
.whatsapp-fab__link:hover,
.whatsapp-fab__link:focus {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(2, 10, 30, 0.32);
}

/* tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  /* place to left of the FAB */
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

/* show tooltip on hover or focus */
.whatsapp-fab__link:hover .whatsapp-tooltip,
.whatsapp-fab__link:focus .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* Breakpoint 2: Large (901px - 1200px) */
@media (max-width: 1200px) {
  #section-1 {
    position: relative;
    overflow: hidden;
    outline: none;
    height: 40vh;
    height: 40dvh;
  }

  .carousel-indicators {
    bottom: 30px;
    gap: 10px;
  }

  .carousel-indicators button {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators button.active {
    width: 25px;
  }

  .sec1-details-con {
    top: 25%;
  }
  .sec1-specification {
    font-size: smaller;
  }

  .sec1-animated-line {
    font-size: smaller;
  }

  .sec1-enquire-con {
    padding: 5px;
  }
  .enquire-now {
    padding: 5px;
  }
  .whatsapp-fab {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-fab__link {
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

/* Breakpoint 3: Medium (901px - 899px) - Tablet */
@media (max-width: 899px) {
  #section-1 {
    position: relative;
    overflow: hidden;
    outline: none;
    height: 35vh;
    height: 35dvh;
  }

  .carousel-indicators {
    bottom: 25px;
    gap: 8px;
  }

  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }

  .carousel-indicators button.active {
    width: 25px;
  }

  .sec1-details-con {
    top: 22%;
  }
  .sec1-specification {
    font-size: smaller;
  }

  .sec1-animated-line {
    font-size: smaller;
  }

  .sec1-enquire-con {
    padding: 5px;
  }
  .enquire-now {
    padding: 5px;
  }
  .whatsapp-fab {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-fab__link {
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }
}

/* Breakpoint 4: Small (520px - 768px) - Mobile tablet */
@media (max-width: 768px) {
  #section-1 {
    height: 80vh;
    height: 80dvh;
  }

  .slide-1 {
    background-image: url("../images/sec-1/Mobile-1.jpg");
  }
  .slide-2 {
    background-image: url("../images/sec-1/Mobile-2.jpg");
  }
  .carousel-indicators {
    bottom: 10px;
    gap: 6px;
  }

  .carousel-indicators button {
    width: 20px;
    height: 8px;
  }

  .carousel-indicators button.active {
    width: 20px;
  }

  .sec1-details-con {
    top: 80%;
    right: 10%;
    width: 80%;
  }
  .sec1-specifications-con {
    display: none;
  }

  .sec1-highlights-con {
    display: none;
  }

  .sec1-enquire-con {
    padding: 15px;
    width: 100%;
  }
  .enquire-now {
    padding: 15px;
    font-size: large;
  }
  .whatsapp-fab {
    right: 10px;
    bottom: 10px;
  }

  .whatsapp-fab__link {
    width: 35px;
    height: 35px;
  }

  .whatsapp-icon {
    width: 16px;
    height: 16px;
  }

  .whatsapp-tooltip {
    font-size: 11px;
    right: 50px;
  }
}

/* Breakpoint 5: Extra Small (< 520px) */
@media (max-width: 519px) {
  .carousel-indicators {
    bottom: 15px;
    gap: 5px;
  }

  .carousel-indicators button {
    width: 6px;
    height: 6px;
  }

  .carousel-indicators button.active {
    width: 16px;
  }

  .whatsapp-fab {
    right: 8px;
    bottom: 8px;
  }

  .whatsapp-fab__link {
    width: 32px;
    height: 32px;
  }

  .whatsapp-icon {
    width: 15px;
    height: 15px;
  }

  .whatsapp-tooltip {
    font-size: 10px;
    right: 45px;
  }

  .pre-launch-con span {
    font-size: small;
    padding: 0;
  }

  .unit-sizes-con span {
    font-size: x-small;
  }

  .broucher-btn {
    font-size: small;
  }
}

/* Breakpoint 6: Ultra Small (< 375px) */
@media (max-width: 374px) {
  .carousel-indicators {
    bottom: 12px;
    gap: 4px;
  }

  .carousel-indicators button {
    width: 5px;
    height: 5px;
  }

  .carousel-indicators button.active {
    width: 14px;
  }

  .whatsapp-fab {
    right: 6px;
    bottom: 6px;
  }

  .whatsapp-fab__link {
    width: 30px;
    height: 30px;
  }

  .whatsapp-icon {
    width: 14px;
    height: 14px;
  }

  .whatsapp-tooltip {
    font-size: 9px;
    right: 40px;
  }
}
