/* ---------------------------
   HERO SECTION CORE STYLES
----------------------------*/
.hero-section {
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  position: relative;
}

/* Dark overlay for readability */
/* .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
} */
.hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

/* .hero-content {
  max-width: 650px;
  color: #fff;
} */
.hero-content {
  max-width: 53%;
  width: 100%;
  color: #fff;
  overflow-wrap: break-word; /* content bahar na nikle */
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #000;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.hero-btn:hover {
  background: #dddddd;
  color: #000;
}

/* ---------------------------
   RESPONSIVE BEHAVIOR (375–767)
----------------------------*/
@media (max-width: 767px) {
  .hero-section {
    min-height: 460px;
    padding: 60px 16px;
    background-position: top;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }
  .hero-content {
    max-width: 90%;
  }


  .hero-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Extra small screens (375px) */
@media (max-width: 430px) {
  .hero-content h1 {
    font-size: 26px;
  }
}


/* == mobile verison == */
.header-mobile { background-color: #080b1a; padding: 0; height: auto; transition: 0.2s; }
.header-mobile.sticky { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; }
.top-marquee-mobile { width: 100%; background: linear-gradient(90deg, #355ee1, #27d1e0); color: #fff; height: 32px; display: flex; align-items: center; overflow: hidden; font-size: 13px; }
.top-marquee-track-mobile { display: inline-flex; align-items: center; white-space: nowrap; will-change: transform; animation: scroll-marquee-mobile 15s linear infinite; }
.top-marquee-mobile a { color: #fff; text-decoration: underline; font-weight: bold; margin-right: 2rem; }
.top-marquee-track-mobile::after { content: attr(data-duplicate); display: inline-flex; }
.top-marquee-mobile:hover .top-marquee-track-mobile { animation-play-state: paused; }
@keyframes scroll-marquee-mobile { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.scroll-progress-container-mobile { width: 100%; height: 6px; background-color: #a6c8ff; border-radius: 2px; overflow: hidden; }
#scrollProgressBarMobile { width: 0%; height: 6px; background-color: #355ee1; transition: width 0.2s ease-out; }
.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: none; z-index: 998; }
.mobile-menu { position: fixed; top: 0; right: -60%; width: 60%; height: 100%; background: #fff; color: #000; padding: 20px; overflow-y: auto; z-index: 999; transition: right 0.3s ease; margin-top: 0px; }
.mobile-menu.active { right: 0; }
.mobile-menu-header { display: flex; justify-content: flex-end; padding-bottom: 10px; border-bottom: 1px solid #ddd; }
.close-mobile-menu { font-size: 32px; cursor: pointer; color: #e00; }
.mobile-menu a { color: #000; text-decoration: none; font-weight: 600; display: block; border-bottom: 1px solid #eee; padding: 8px 0; }
.mobile-menu a:hover { color: #355ee1; }
.mobile-menu .submenu { padding-left: 12px; }
.mobile-menu .submenu-toggle { cursor: pointer; font-size: 15px; }
.mobile-menu .submenu li a { font-weight: normal; font-size: 14px; padding: 5px 0; }
.mobile-menu-toggle { font-size: 24px; color: #fff; background: none; border: none; }
.contact-btn-vishal { display: block; background: linear-gradient(90deg, #355ee1, #27d1e0); color: #fff !important; text-align: center; padding: 10px; border-radius: 6px; text-transform: uppercase; font-weight: 600; }
.contact-line a { color: #000; text-decoration: none; }
@media (max-width: 480px) { .top-marquee-mobile { font-size: 12px; height: 30px; } }