/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: 'Helvetica';
  line-height: 1.6;
  overflow: hidden;
}

body {
  /* visibility: hidden; */
  height: 100dvh;
}

.navbar,
.section[data-section="0"] {
  visibility: visible;
}

/* .main-container {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 100dvh;   
  width: 100vw;
  position: relative;
} */

.section:not([data-section="0"]) {
  will-change: transform;
  transform: translateY(100dvh);
}

.bg-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Each section positioned absolutely */

.section {
  top: 60px;
  height: calc(100dvh - 60px) !important;   /* yahan */
  width: 100vw;
  position: absolute;
  left: 0;
  overflow: hidden !important;
}


.hero-section {
  /* height: 100dvh !important;   */
  width: 100vw;
  top: 0;
  left: 0;
  overflow: hidden;
}

.section-content2 {
  height: 90%;
  width: 90%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.section-content {
  height: 100%;
  width: 100%;
  position: relative;
}

.fixed-top {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}


/* Hero Section */
.hero-section {
  /* background: linear-gradient(135deg, #a8e6cf, #88d8a3); */
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  border: none;
  object-fit: cover;
}

/* Mobile fix */
@media (max-aspect-ratio: 16/9) {
  .video-background iframe {
    width: 325vw;
    height: auto;
  }
}

/* Desktop fix */
@media (min-aspect-ratio: 16/9) {
  .video-background iframe {
    width: auto;
    height: 200vh;
  }
}

.play-button {
  width: 80px;
  height: 80px;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.play-button i {
  color: white;
  font-size: 1.5rem;
}

.hero-text {
  color: #000;
  font-weight: 300;
  letter-spacing: 3px;
  font-size: 30px;
}

/* Sun Section */
.sun-section {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-100-60{
    height: calc(100% - 100px);
}
.second-section-img {
  background-color: #b20a4f;
  /* width: calc(100% - 100px);
  height: calc(100% - 100px); */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
   /* margin: 50px; */
  margin: auto;
  /* This creates equal spacing on all sides */
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .second-section-img {
    /* width: calc(100% - 100px); */
     width: 100%;
  height: 100%;
    /* Full width minus spacing */
    /* margin: 50px; */
      margin: auto;
  }

  .mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.centered-img {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.mobile-img {
  display: none;
  width: 100%;
  z-index: 1;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
 
  .mobile-img {
    display: block;
    position: static;
    transform: none;
  }
}

/* Style Section */

.style-section-desktop {
  background-color: #000000;
  color: #231f20;
  height: 100dvh;   /* yahan */
  overflow: hidden;
}

.style-section-mobile {
  background-color: #000000;
  color: #231f20;
  height: 100dvh;   /* yahan */
  overflow: hidden;
}

.section-content-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}


.style-image-container {
  width: 50%;
  height: 100dvh;   /* yahan */
  overflow: hidden;
}

.style-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-content {
  padding: 40px 85px 40px 40px;
  color: #ffff;
}

.style-headline {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  padding-left: 3rem;
}



.style-text {
  font-size: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.style-text span.d-block {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.style-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0;
  color: #231f20;
}

.custom-btn a {
  margin-top: 30px;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}

.custom-btn a:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .style-image-container {
    width: 100%;
    height: 100dvh;
    position: relative;
  }

  .style-headline {
    position: relative;
    text-align: center;
    padding: 2rem;
    transform: none;
    top: auto;
  }



  .style-section-desktop .style-content {
    display: none;
  }

  .style-content {
    padding: 0rem;
  }

  .style-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
 
  .style-content {
    padding: 1.5rem;
  }
}

/* Third Section */

.third-section {
  background-color: #ad800e;
  position: absolute;
  left: 0;
  height: 100dvh;   /* yahan */
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(300vh);
  z-index: 4;
  overflow: hidden;
}

.third-image-container {
  position: relative;
  height: calc(100% - 100px);
  width: calc(100% - 100px);
  /* background-color: #0c6aaf; */
  background-color: #b20a4f;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  margin: 50px;
}

.third-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.third-front-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  display: block;
  pointer-events: none;
  position: absolute;
  right: 0;
}

@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }
}

/* Green Section */

.green-section {
  background-color: #e9aa16;
  height: 100dvh;   /* yahan */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.green-content {
  max-width: 450px;
  margin: 0 auto;
  padding: 2rem;
}

.green-title {
font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.green-subtitle {
      font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
    .green-subtitle{
        font-size: 1.1rem;
    }
}
.green-image-container {
  position: relative;
  width: 100%;
  height: 100dvh;   /* yahan */
  overflow: hidden;
}

.green-image-container .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.green-image-container .overlay-img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 80%;
  max-height: 80%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .green-section {
    height: auto;
height: calc(100dvh - 60px) !important;
  }

  .green-mobile .green-image-container {
    display: none;
  }

  .green-content {
    padding: 2rem 1.5rem !important;
  }

  .green-image-container {
    height: 100dvh;
  }

  .green-section .col-md-6 {
    width: 100%;
  }
}

/* Bold Section */

.bold-section {
  background-color: #e9aa16;
  position: absolute;
  left: 0;
  height: 100dvh;   /* yahan */
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(500vh);
  z-index: 6;
  overflow: hidden;
}
.bold-image-container {
  position: relative;
  /* height: calc(100% - 100px);
  width: calc(100% - 100px); */
    width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #3b3128;
  overflow: hidden;
  /* margin: 50px; */
  margin: auto;
}
.bold-image-container picture {
  display: block;
  width: 100%;
  height: 100%;
}

.bold-image-container picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bold-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bold-content {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 2;
  width: calc(100% - 100px);
}

.bold-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}

@media (max-width: 991.98px) {
  .bold-title {
    font-size: 2.5rem;
    padding-left: 10px;
  }

  .bold-content {
    left: 0px;
    width: calc(100% - 40px);
  }
}

/* Features Section */
.features-section {
  background-color: #cc8110;
  height: 100dvh;   /* yahan */
color: #231f20;
}
.text-content {
  max-width: 500px;
  margin: 0 auto;
}

.feature-text {
  font-size: 19px;
  font-weight: bold;
}
 .feature-text .font-22 {
    font-size: 22px;
    display: inline-block;
  }
 .feature-text span {
    color: #fff;
  }

@media (max-width: 991.98px) {
  .feature-text {
    font-size: 19px;
    font-weight: bold;
  }

 
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.image-container .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.image-container .overlay-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}

.vertical-signature {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.vertical-signature span {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.vertical-signature .signature-7 {
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .mm-d-none {
    display: none !important;
  }

  .features-section {
    height: auto;
    /* min-height: 100dvh; */
  }

  .text-content {
    padding: 2rem;
  }

  .vertical-signature span {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .vertical-signature .signature-7 {
    font-size: 5rem;
  }

  .image-container .overlay-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 550px;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
  }
}

/* Image Animation */
.main-container img.animated-img {
  filter: blur(6px);
  transform: scale(1.05);
  transition: transform 12s cubic-bezier(0.165, 0.84, 0.44, 1),
    filter 3s ease;
}

.main-container img.animated-img.loaded {
  filter: blur(0);
  transform: scale(1);
}

/* Header Animation */


/* Adjust main container to account for fixed header */
.main-container {
  padding-top: 60px;
  /* Height of your header */
  /* height: calc(100vh - 60px); */
}

/* Adjust section positioning */


/* Hero section should be full height including header area */


/* Responsive Design */
@media (max-width: 768px) {
  .sun-text {
    font-size: 8rem;
  }

  .style-title {
    font-size: 2.5rem;
  }

  .blue-text {
    font-size: 10rem;
  }

  .bold-title {
    font-size: 2.5rem;
  }

  .footer-brand {
    font-size: 2.5rem;
  }

  .green-title {
    font-size: 1.5rem;
  }

  .style-content,
  .green-content,
  .features-content {
    padding: 2rem!important;
  }
}

@media (max-width: 576px) {
  .sun-text {
    font-size: 6rem;
  }

  .style-title {
    font-size: 2.5rem;
  }

  .blue-text {
    font-size: 8rem;
  }


  .footer-brand {
    font-size: 2rem;
  }
}

/* Mobile image - hidden by default */
.mobile-img {
  display: none;
}

/* Desktop image - visible by default */
.desktop-img {
  display: block;
}

/* Show mobile image and hide desktop image on mobile screens */
@media (max-width: 767px) {
  .mobile-img {
    display: block;
  }

  .desktop-img {
    display: none;
  }
}

/* Mobile image - hidden by default */
.mobile-img {
  display: none;
}

/* Desktop image - visible by default */
.desktop-img {
  display: block;
}

/* Show mobile image and hide desktop image on mobile screens */
@media (max-width: 767px) {
  .mobile-img {
    display: block;
  }

  .desktop-img {
    display: none;
  }
}



.main-title{
  font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 2rem!important;
    letter-spacing: 0.5px;
}
.main-paragraph{
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
    .main-title {
        font-size: 1.5rem;
    }
    .main-paragraph{
    font-size: 17px;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}
}

@media (max-width: 991.98px) {
 .desktop-only {
    display: none !important;
  }

}
@media (min-width: 991.98px) {
.mobile-only{
   display: none!important;
}
}