.visiting-page {
  /* background: url("../../Images/1842/1842-home.png"); */
  height: 700px;
  width: 100%;
  position: relative;
  /* make it a containing block for absolute children */
  display: flex;
  justify-content: center;
  /* optional: center horizontally */
  align-items: center;
  /* optional: center vertically */
  overflow: hidden;
  /* prevent overflow of text or video */
  background-size: cover;
  image-rendering: auto;
  position: sticky;
  /* keeps it moving with scroll */
  top: 0;
  /* sticky from top */
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.visiting-page img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  /* border: 1px solid #fff; */
}

.banner-video-cover { margin-top:80px; }
/* .mobile-video { display:none; } */
.banner-video-cover .drone-video { width: 100%; height: 100%; }


.images-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cover the container */
  position: absolute;
  /* position video behind the text */
  top: 0;
  left: 0;
  z-index: 1;
}

.kasauli-text-1842 {
  position: absolute;
  /* position on top of video */
  top: 50%;
  /* vertical center */
  left: 50%;
  /* horizontal center */
  transform: translate(-50%, -50%);
  /* truly center the element */
  text-align: center;
  z-index: 2;
  /* above video */
  color: #fff;
  /* text color for visibility */
}

.kasauli-text-1842 .exp {
  font-family: 'Roboto';
  font-weight: 300;
  font-style: Light;
  font-size: 50px;
  line-height: 88px;
  letter-spacing: 0%;
  text-align: center;
}

.kasauli-text-1842 .kasuali-name {

  font-family: 'Cerost';
  font-weight: 400;
  font-style: normal;
  font-size: 96px;
  line-height: 88px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;

  display: block;
  font-size: 90px;
  /* font-weight: bold; */
}

.kasauli-text-1842 .key-image {
  width: 180px;
  height: 160px;
  object-fit: contain; /* keeps full image without cropping */
}


@media (max-width: 1024px) {
  .visiting-page {
    height: 600px;
  }

  .kasauli-text-1842 .exp {
    font-size: 40px;
    line-height: 60px;
  }

 .kasauli-text-1842 .kasuali-name {
    font-size: 70px;
    line-height: 70px;
    white-space: nowrap;   /* ✅ Prevent line break */
    overflow: hidden;      /* ✅ Prevent text from spilling */
    text-overflow: ellipsis; /* Optional: Add ... if too long */
  }

  .kasauli-text-1842 .key-image {
    width: 160px;
  }
}

/* Mobile screens (below 768px) */
@media (max-width: 768px) {
  .visiting-page {
    height: 500px;
  }
  .banner-video-cover { margin-top:70px; }

  .kasauli-text-1842 {
    width: 90%;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 10px;
  }

  .kasauli-text-1842 .exp {
    font-size: 30px;
    line-height: 45px;
  }

  .kasauli-text-1842 .kasuali-name {
    font-size: 50px;
    line-height: 50px;
  }

  .kasauli-text-1842 .key-image {
    width: 120px;
  }
}

/* @media(max-width:575px){
  .desktop-video { display:none; }
  .mobile-video { display:block; }
} */

/* Small mobile (below 480px) */
@media (max-width: 480px) {
  .visiting-page {
    height: 420px;
  }

  .kasauli-text-1842 {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 0 10px;
  }

  .kasauli-text-1842 .exp {
    font-size: 22px;
    line-height: 32px;
  }

  .kasauli-text-1842 .kasuali-name {
    font-size: 36px;
    line-height: 40px;
  }

  .kasauli-text-1842 .key-image {
    width: 100px;
    margin-top: 8px;
  }
}