/* ===============================
RESET & GLOBAL
=============================== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

/* ===============================
HEADER
=============================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #eee;
  background: #ffffff;
  position: relative;
  z-index: 100;
}

.logo {
  height: 60px;
}

/* DESKTOP NAV */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 45px;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
  font-size: 18px;
  color: #0f2f45;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.main-nav a:hover {
  color: #0b5070;
  transform: translateY(-3px); /* small jump on hover */
}

/* HAMBURGER (HIDDEN ON DESKTOP) */
.hamburger {
  font-size: 32px;
  cursor: pointer;
  display: none;
  color: #0f2f45;
}

/* MOBILE FULLSCREEN MENU (HIDDEN BY DEFAULT) */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  align-items: center;
  justify-content: flex-start;
  transition: top 0.4s ease;
  z-index: 999;
}

/* When active */
.menu-show {
  top: 0;
}

/* Close icon */
.close-menu {
  position: absolute;
  right: 30px;
  top: 25px;
  font-size: 36px;
  color: #0f2f45;
  cursor: pointer;
}

/* Mobile menu items */
.mobile-menu ul {
  list-style: none;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

.mobile-menu ul li {
  margin: 25px 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #0f2f45;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE BEHAVIOUR */
@media (max-width: 900px) {
  /* Hide desktop menu on small screens */
  .main-nav {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: block;
  }
}
/* ===============================
HERO SECTION
=============================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full height of the viewport */
  background: #000;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  margin-top: 70px;
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw; /* Maintain 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover; /* Ensures the video maintains its aspect ratio and covers the container */
}

/* ===============================
POPUP
=============================== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
}

.popup-wrapper {
  display: none;
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 500px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  z-index: 2100;
  max-height: 85vh;
  overflow-y: auto;
}

.popup-content h2 {
  text-align: center;
  color: #1d3767;
  margin-bottom: 18px;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-content button {
  width: 100%;
  padding: 12px;
  background: #0b5070;
  color: #fff;
  border: none;
  border-radius: 6px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 26px;
  cursor: pointer;
}

/* ===============================
PRODUCT SECTION
=============================== */
/* Default layout for larger screens */
.product-section {
  display: flex;
  width: 100%;
  height: 500px;
  margin-top: 60px;
}

.product-left,
.product-right {
  width: 50%; /* Half-width for desktop */
}

.product-left {
  background: #0b5070;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Slider image adjustments */
.slider {
  width: 80%;
}

.slider img {
  display: none;
  width: 100%;
}

.slider .active {
  display: block;
}

.product-right {
  padding: 10px 60px;
}

.product-right h1 {
  font-size: 35px;
  color: #0b5070;
}

.product-right p {
  font-size: 22px;
  color: #0b5070;
}

/* Mobile view: Adjust layout for smaller screens */
@media (max-width: 768px) {
  .product-section {
    flex-direction: column; /* Stack sections vertically on mobile */
    height: auto; /* Allow height to adjust based on content */
    margin-top: 20px; /* Reduce margin for smaller screens */
  }

  .product-left,
  .product-right {
    width: 100%; /* Full width for each section */
    padding: 10px; /* Adjust padding for mobile */
  }

  .product-left {
    flex-direction: column; /* Stack content vertically */
    justify-content: flex-start; /* Align items at the top */
    align-items: flex-start; /* Align items to the left */
  }

  .product-right {
    padding: 10px; /* Reduce padding for mobile */
    text-align: center; /* Center the text */
  }

  .product-right h1 {
    font-size: 28px; /* Adjust font size for mobile */
    margin-top: 90px;
  }

  .product-right p {
    font-size: 18px; /* Adjust font size for mobile */
  }

  .slider {
    width: 100%; /* Ensure slider takes full width on mobile */
  }
}

/* ===============================
BENEFITS
=============================== */
.benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
  margin-top: -50px;
}

.benefit-box {
  width: 50%;
  text-align: center;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.benefit-box.show {
  opacity: 1;
  transform: translateY(0);
}
.benefit-img-wrap {
    width: 65%;
    padding: 30px;
    background: #f3f7f7;
    border-radius: 18px;
    /* Remove margin-left: 40px and use this instead: */
    margin: 0 auto; 
    /* Ensures the image inside is also centered */
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-img-wrap img {
    max-width: 100%;
    height: auto;
    display: block;
}

.benefit-text {
  background: #0b5070;
  color: #fff;
  padding: 30px 10px;
  font-size: 22px;
  margin-top: 25px;
  height: 100px;

}

/* ===============================
INFO SECTION
=============================== */
.info-section {
  background: #fff;
}

.info-content {
  width: 70%;
  margin: 20px auto 60px;
  padding: 60px 70px;
  background: linear-gradient(135deg, #0b5070, #0b5070);
  border-radius: 10px;
}

.info-content p {
  color: #fff;
  font-size: 20px;
  line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .info-content {
    width: 90%; /* Make the content take up 90% of the screen width */
    padding: 40px 30px; /* Adjust padding for smaller screens */
  }

  .info-content p {
    font-size: 18px; /* Reduce font size for better readability on small screens */
  }
}

@media (max-width: 480px) {
  .info-content {
    width: 95%; /* Take almost the full width for very small screens */
    padding: 30px 20px; /* Further reduce padding */
  }

  .info-content p {
    font-size: 16px; /* Further reduce font size for smaller mobile screens */
  }
}


/* ===============================
SLIDER STRIP
=============================== */
.product-slider-section {
  height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(white 50%, #0b5070 50%);
}

.slider-track {
  display: flex;
  gap: 120px;
  animation: scroll 18s linear infinite;
}

.slider-track img {
  height: 350px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===============================
STAIRCASE
=============================== */
.staircase-section {
  padding: 100px 0;
}

.step {
  width: 50%;
  margin-bottom: 30px;
}

.step.right {
  margin-left: auto;
  text-align: right;
}

.step-img {
  height: 230px;
  display: block;
  margin: auto;
}

.step-bar {
  height: 45px;
  background: #0b5070;
}

.step-text {
  background: #f3f3f3;
  padding: 28px;
  font-size: 24px;
  text-align: center;
}
/* Base hidden state */
.from-left,
.from-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Direction */
.from-left {
  transform: translateX(-200px);
}

.from-right {
  transform: translateX(200px);
}

/* Visible state */
.from-left.in-view,
.from-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
/* ===============================
RESPONSIVE STAIRCASE
=============================== */

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .step {
    width: 70%;
  }

  .step-text {
    font-size: 20px;
    padding: 22px;
  }

  .step-img {
    height: 200px;
  }
}

/* Tablets & large mobiles */
@media (max-width: 768px) {
  .staircase-section {
    padding: 70px 0;
  }

  .step {
    width: 100%;
    margin-left: 0 !important;
    text-align: center !important;
  }

  .step.right {
    text-align: center;
  }

  .step-img {
    height: 180px;
  }

  .step-text {
    font-size: 18px;
    padding: 20px;
  }

  .step-bar {
    height: 38px;
  }

  /* Disable horizontal animation on mobile */
  .from-left,
  .from-right {
    transform: translateY(40px);
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .staircase-section {
    padding: 0px 0;
  }

  .step-img {
    height: 150px;
  }

  .step-text {
    font-size: 16px;
    padding: 16px;
  }

  .step-bar {
    height: 32px;
  }
}

/* ===============================
WHATSAPP
=============================== */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 10px;
  background: #25D366;
}

/* ===============================
RESPONSIVE STYLES
=============================== */

/* For screens below 900px */
@media (max-width: 900px) {
  .main-nav { 
    display: none; 
  }
  .hamburger { 
    display: block; 
  }
  .product-section { 
    flex-direction: column; 
    height: auto; 
  }
  .product-left, .product-right { 
    width: 100%; 
    margin-top: -60px;
  }
  .benefits { 
    flex-direction: column; 
            align-items: center;
  }
  .benefit-box { 
    width: 90%; 
  }
  /*.video-wrapper { 
    margin-top: 30px; /* Adjusted for mobile view 
  }*/
}

/* For screens below 768px */
@media (max-width: 768px) {
  .video-wrapper {
    margin-top: 0; /* Remove the top margin for small screens */
    height: 200px;
  }
  .hero { 
    height: calc(60vh - 76px); 
    background: transparent !important;
  }
  .logo { 
    height: 30px; 
  }
  .video-wrapper iframe {
    min-height: 56.25vw; /* Ensure 16:9 aspect ratio on smaller screens */
  }
}


.faq-section {
  padding: 30px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question p {
  font-size: 1.2rem;
  font-weight: bold;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #000;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 1rem;
  color: #555;
}

.faq-answer p {
  margin: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}


/*Preloader*/
/* ===============================
   SITE PRELOADER (ISOLATED)
================================ */

#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background overlay */
#site-preloader .preloader-overlay {
  position: absolute;
  inset: 0;
  background: #053c55; /* Indmark-style overlay */
}

/* Center content */
#site-preloader .preloader-content {
  position: relative;
  z-index: 2;
}

/* Logo container */
#site-preloader .logo-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
#site-preloader .preloader-logo {
  width: 55px;
  height: auto;
  z-index: 2;
}

/* Rotating outline */
#site-preloader .loader-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-right-color: rgba(255, 255, 255, 0.6);
  animation: spin 1.2s linear infinite;
}

/* Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  #site-preloader .logo-wrapper {
    width: 90px;
    height: 90px;
  }

  #site-preloader .preloader-logo {
    width: 45px;
  }
}

/* Default version (Blue color) */
.title-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #0b5070;  /* Blue color */
}

/* Center text */
.title-dots .text {
  text-align: center;
  line-height: 1.2;
}

/* Decorative line */
.decor {
  position: relative;
  width: 60px;
  height: 2px;
  background: #0b5070; /* Blue color */
}

/* Dot */
.decor::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #0b5070; /* Blue color */
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Left dot position */
.decor.left::before {
  left: -10px;
}

/* Right dot position */
.decor.right::before {
  right: -10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .decor {
    width: 30px;
  }

  .decor::before {
    width: 6px;
    height: 6px;
  }

  .decor.left::before {
    left: -8px;
  }

  .decor.right::before {
    right: -8px;
  }
}

/* Version 2 (White color) */
.title-dots-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #ffffff;  /* White color */
}

/* Center text for white version */
.title-dots-white .text {
  text-align: center;
  line-height: 1.2;
}

/* Decorative line for white version */
.decor-white {
  position: relative;
  width: 60px;
  height: 2px;
  background: #ffffff; /* White color */
}

/* Dot for white version */
.decor-white::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #ffffff; /* White color */
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Left dot position for white version */
.decor-white.left::before {
  left: -10px;
}

/* Right dot position for white version */
.decor-white.right::before {
  right: -10px;
}

/* Responsive adjustments for white version */
@media (max-width: 768px) {
  .decor-white {
    width: 30px;
  }

  .decor-white::before {
    width: 6px;
    height: 6px;
  }

  .decor-white.left::before {
    left: -8px;
  }

  .decor-white.right::before {
    right: -8px;
  }
}
