*{
    padding: 0;
    margin: 0;
    box-sizing:border-box;
    overflow-x: hidden;
    overflow-y: auto;
}
html ,body {
    height: 100%;
    width: 100%;  
    font-family: fira-reg; 
    scroll-behavior: smooth;
}

@font-face {
  font-family: fira-reg;
  src: url(./font/FiraSans-Regular.ttf);
}

.nav{
    height: 12vh;
    width: 100vw;
    position: relative;
    top: 1px; 
     overflow: hidden;
}
#logo{
position: absolute;
  padding: 1vw;
  width: 250px;
  top: 1px;
}
.nav-container{
  height: 10vh;
  margin: .5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
a {
  text-decoration: none;
  color: #000000;
}
.nav-2{
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
  /* Light shadow: direction 135° (top-leftish), depth 3px */
  box-shadow: 
    0 -3px 6px rgba(212, 212, 212, 0.15), /* Light top */
    -2px -2px 4px rgba(164, 164, 164, 0.474), /* Light left */
    /* Dark shadow: direction 315° (bottom-right), depth 5px */
    3px 5px 10px rgba(213, 213, 213, 0.553), /* Dark bottom */
    5px 3px 10px rgba(214, 214, 214, 0.368); /* Dark right */
}
.nav-h{
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin: 1rem;
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-h:hover{
  color: #F47A20;
  
}
.hero-page{
    height: 88vh;
    width: 100vw;
    background-image: url(./);
    min-height: 500px; /* Minimum height for small screens */
    overflow: hidden;
    position: relative;
}
/*  */
.hero-fixed{
  z-index: -10;
}
.fixed-img{
  display: inline;
    position: absolute;
    z-index: -10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fixed-img-phone{
    display: none;
    position: absolute;
    z-index: -10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*  */
.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  background-color: transparent;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 10;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 10;
  object-position: center;
  display: block;
}

.slide-overlay {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, 
    rgba(0,0,0,0.6) 0%, 
    rgba(0,0,0,0.3) 40%, 
    rgba(0,0,0,0.1) 80%); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.slide-content {
    z-index: 10;
  text-align: center;
  color: rgb(255, 255, 255);
  max-width: 90%;
  width: 100%;
}

.slide-content h1 {
  font-size: clamp(2rem, 7vw, 5rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.7);
  line-height: 1.1;
}

.slide-content p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.7);
  opacity: 0.95;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: clamp(20px, 5vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
  padding: 10px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.indicator.active {
  background: #B5CF6B;
  transform: scale(0.9);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

/* Navigation Buttons */
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  width: clamp(50px, 2vw, 70px);
  height: clamp(50px, 2vw, 70px);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
  cursor: pointer;
  z-index: 20;
  border: 1px solid white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 8px 32px rgba(151, 49, 49, 0.3); */
}

.carousel-prev {
  left: clamp(15px, 4vw, 30px);
}

.carousel-next {
  right: clamp(15px, 4vw, 30px);
}

.carousel-prev:hover, .carousel-next:hover {
  background: #B5CF6B;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 40px #b4cf6b5f;
}

.carousel-prev:active, .carousel-next:active {
  transform: translateY(-50%) scale(0.95);
}

/* Large Desktop */
@media (min-width: 1440px) {
  .hero-carousel {
    height: 100vh;
    max-height: 1080px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  /* .slide-overlay {
    background: linear-gradient(135deg, 
      rgba(0,0,0,0.7) 0%, 
      rgba(0,0,0,0.4) 50%, 
      transparent 100%);
  } */
}

/* Mobile Tablet */
@media (max-width: 768px) {
  #logo{
  width: 175px;
}
.nav{
  height: 11vh;
  padding: 10px;
}
  .nav-2{
    
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
}
  .hero-carousel {
    min-height: 70vh;
  }
  
  .slide-content h1 {
    margin-bottom: 0.8rem;
  }
  
  .carousel-indicators {
    bottom: 45px;
  }
 .fixed-img{
  display: none;
    position: absolute;
    z-index: -10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fixed-img-phone{
    display: inline;
    position: absolute;
    z-index: -10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
}

/* Mobile */
@media (max-width: 480px) {
  .hero-carousel {
    
    min-height: 60vh;
  }
  
  .slide-content {
    padding: 0 15px;
  }
  
  .slide-content h1 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }
  
  .slide-content p {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }
  
  .indicator {
    width: 8px;
    height: 8px;
  }
.fixed-img{
  display: none;
    position: absolute;
    z-index: -10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.fixed-img-phone{
    display: inline;
    position: absolute;
    z-index: -10;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
}

/* Small Mobile */
@media (max-width: 360px) {
  .carousel-prev, .carousel-next {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-carousel {
    height: 100vh;
  }
  
  .slide-content h1 {
   
    font-size: clamp(1.2rem, 6vw, 2.5rem);
  }
}

/*  */
.page-1{
    height: 100vh;
    width: 100vw;
   position: relative;
   overflow: hidden;
}
#page1-in{
  height: none;
  width: none;
  position: absolute;
  z-index: -1;
  object-fit: contain;
    background-repeat: no-repeat;
}
.page1-container{
  height: 40%;

display: flex;
align-items: center;
justify-content: center;
}
.page2-container{
  height: 60%;

display: flex;
align-items: center;
justify-content: center;
}
.page2-container>img{
  height: 100%;
  width: 100%;
  object-fit: contain;
    background-repeat: no-repeat;
}
.orange{
  color: #F47A20;
}

.contain>h1{
   padding: 0rem ,.5rem,0rem,.5rem ;
  text-align: center;
  font-size: clamp(1.5rem,6vw,3rem);
}
@media (max-width: 768px) {
  .page-1{
  height: 70%;
    width: 100vw;
    
}
#page1-in{
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  object-fit: contain;
    background-repeat: no-repeat;
}
}
@media (max-width: 480px) {
  .page-1{
  height: 50%;
    width: 100vw;
}
#page1-in{
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  object-fit: contain;
    background-repeat: no-repeat;
}
}
/* ------------------------------------- */
.page-2{
  height: 100vh;
    width: 100vw;
}
.blue{
  color: #1475BE;
}
@media (max-width: 768px) {
  .page-2{
  height: 70%;
    width: 100vw;
}
}
@media (max-width: 480px) {
  .page-2{
  height: 50%;
    width: 100vw;
}
}
/* ------------------------------------------------------ */
.page-3{
      height: auto;
      width: 100vw;
     overflow: hidden;
}
.page-3>h1{
  font-size: clamp(1.8rem, 5vw, 2.5rem);
      font-weight: 900;
      text-align: center;
      overflow: hidden;
      color: #F47A20;
}
.cards{
   height: 50vh;
  width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.shell-1{
  height: 40vh;
  width: 55vw;
   overflow: hidden;
}
.card-1{
  height: 100%;
  width: 100%;
   overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(.96);

}
.card-1:hover{
  height: 100%;
  width: 100%;
  transform: scale(1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.collection-img{
 height: 100%;
 width: 100%;
 object-fit: contain;
 border: 1px dotted black;
 border-radius: 12px;


}
.brand{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.brand>img{
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid black;
  height: 10vh;
  margin: 1rem;
}
@media (max-width: 768px) {
  .page-3{
  height: auto;
    width: 100vw;
}
.cards{
   height: auto;
  width: 100vw;
    display: contents;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.shell-1{
  height: 40vh;
  width: 95vw;
   overflow: hidden;
}
.brand>img{
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid black;
  height: 8vh;
  margin: 1rem;
}
}
@media (max-width: 480px) {
  .page-3{
    height: auto;
    width: 100vw;
  }
.cards{
    height: auto;
    width: 100vw;
    display: contents;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.shell-1{
    height: 35vh;
    width: 95vw;
    overflow: hidden;
}
}
/* .page-4{
  padding: 1rem;
    height: 80vh;
    width: 100vw;
    background-color: rgb(255, 255, 255);
}
.page-4>h1{
  font-size: 2.5rem;
  font-weight: 900;
}
.p5container{
  height: 80%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 1rem;
}
.p5con-1{
  height: 80%;
  width: 40%;
  padding: 1rem;
  border: 2px dotted #1475BE;
  border-radius: 12px;
}
.p5con-1>h1{
  font-size: 2rem;
  color: #1475BE;
  padding-bottom: 1rem;
}
.p5con-1>p{
font-size: 1.15rem;
}
.p5con-2{
  height: 80%;
  width: 40%;
  padding: 1rem;
  border: 2px dotted #F47A20;
  border-radius: 12px;
}
.p5con-2>h1{
  font-size: 2rem;
  padding-bottom: .5rem;
  color: #F47A20;
}
.p5con-2>p{
font-size: 1.15rem;
}
.p5con-3{
  height: 80%;
  width: 40%;
  padding: 1rem;
  border: 2px dotted #1475BE;
  border-radius: 12px;
}
.p5con-3>h1{
  font-size: 2rem;
  color: #1475BE;
  padding-bottom: 1rem;
}
.p5con-3>p{
font-size: 1.15rem;
} */

 .page-4 {
      padding: 2rem 1rem;
      min-height: 80vh;
      width: 100%;
      background-color: rgb(255, 255, 255);
      overflow: hidden;
    }

    .page-4 > h1 {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      font-weight: 900;
      text-align: center;
      margin-bottom: 2rem;
      color: #000000;
      
    }
.page-4 > p {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  color: #606060;
  padding-left: clamp(1rem, 8vw, 20rem);
  padding-right: clamp(1rem, 8vw, 20rem);
  line-height: 1.6;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
    .p5container {
      height: auto;
      min-height: 60vh;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: center;
      padding: 1rem;
      gap: clamp(0.5rem, 2vw, 1rem);
      max-width: 1400px;
      margin: 0 auto;
    }

    .p5con-1, .p5con-2, .p5con-3 {
      flex: 1 1 clamp(280px, 45%, 400px);
      padding: clamp(1rem, 3vw, 1.5rem);
      border: 2px dotted currentColor;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: start;
      min-height: 250px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .p5con-1:hover, .p5con-2:hover, .p5con-3:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .p5con-1 {
      border-color: #1475BE;
      color: #000000;
    }

    .p5con-2 {
      border-color: #F47A20;
      color: #000000;
    }

    .p5con-3 {
      border-color: #1475BE;
      color: #000000;
    }

    .p5con-1 h1, .p5con-2 h1, .p5con-3 h1 {
      font-size: clamp(1.5rem, 4vw, 2rem);
      margin-bottom: clamp(0.5rem, 2vw, 1rem);
      font-weight: 700;
    }

    .p5con-1 p, .p5con-2 p, .p5con-3 p {
      font-size: clamp(0.95rem, 2.5vw, 1.15rem);
      margin-bottom: 0.5rem;
    }

    .p5con-3 p strong {
      color: inherit;
      font-weight: 600;
    }
/* Mobile First - Extra Small Devices (< 480px) */
    @media (max-width: 480px) {
      .page-4 {
        padding: 1.5rem 0.75rem;
        min-height: 100vh;
      }
      
      .p5container {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem;
      }
      
      .p5con-1, .p5con-2, .p5con-3 {
        flex: 1 1 100%;
        min-height: 200px;
      }
    }

    /* Small Devices (481px - 768px) */
    @media (min-width: 481px) and (max-width: 768px) {
      .p5container {
        gap: 0.75rem;
      }
      
      .p5con-1, .p5con-2, .p5con-3 {
        flex: 1 1 45%;
      }
    }

    /* Medium Devices (769px - 1024px) */
    @media (min-width: 769px) and (max-width: 1024px) {
      .p5container {
        gap: 1rem;
      }
      
      .p5con-1, .p5con-2, .p5con-3 {
        flex: 1 1 30%;
      }
    }

    /* Large Devices (> 1024px) */
    @media (min-width: 1025px) {
      .page-4 {
        padding: 3rem 2rem;
      }
      
      .p5con-1, .p5con-2, .p5con-3 {
        flex: 1 1 30%;
      }
    }


/* ----------------------------------------------------------------- */
.page-5{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
      color: white;
    background-color: rgb(0, 0, 0);
}
.page-5-s1{
  height: 30%;
  width: 100%;
  overflow: hidden;
}
.page-5-s1>h1{
  font-size:clamp(4vw, 14vw, 13vw);
}
.page-5-s2{
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 70%;
  width: 100%;
}
.p5child-1{
  height: 100%;
  width: 30%;
  color: white;
}
.p5child-2{
  height: 100%;
  width: 30%;

}
.p5child-3{
  height: 100%;
  width: 40%;
}
.social{
  display: flex;
}
.sm{
  height: 30px;
  margin: .3rem;
}
@media (max-width: 480px) {
  .page-5{
    height: 100%;
    width: 100vw;
    overflow: hidden;
    background-color: rgb(0, 0, 0);
}
.page-5-s1{
  height: 10%;
  width: 100%;
  overflow: hidden;
}
  .page-5-s2{
  padding: 1rem;
  display: contents;
  align-items: center;
  justify-content: start;
  height: 70%;
  width: 100%;
}
.p5child-1{
  height: 25%;
  width: 100%;
}
.p5child-2{
  height: 25%;
  width: 100%;

}
.p5child-3{
  height: 40%;
  width: 100%;
}
}
