@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    scroll-behavior: smooth;
 }

 * a {
  text-decoration: none !important;
  color: #1E1E1E !important;
 }

 .hero-heading {
    font-size: clamp(2rem, 10vw, 4em) !important;
  }
    
 
h1 {
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-transform:capitalize;
  }
  
  :root {
  /* Base background and surfaces */
  --color-background: #121212;
  --color-surface: #1E1E1E;
  --color-elevation: #2A2A2A;
    --color-white:#f0f0f0;


  /* Typography */
  --color-text-primary: #E0E0E0;
  --color-text-secondary: #A0A0A0;



  /* Borders and outlines */
  --color-border: #2C2C2C;

  /* Shadows */
  --shadow-default: 0 2px 10px rgba(0, 0, 0, 0.6);
  
  /* client */
      --primary-client:#324373;

}

.text-main{
    font-size: 6vw;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 5px 5px 5px #121212;
}

.text3 {
  font-size: 6vw;
  font-weight: 600;
  z-index:10; /* so it stays above the products */
  color: #fff; /* for visibility */  
  text-transform: uppercase;
  
}
 
  /*  ------------- Hero SEction -------------------*/
  /* main section  */

  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 1;
  }
  

/* about section */

/* details */

.wire-png {
  background-color: var(--color-background);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}


.rotate-img {
  position: absolute;
  height: 30%;
  animation: rotate 10s linear infinite ;
  z-index: 2;
}
.rotate-img:nth-child(2) {
  position: absolute;
  height: 50%;
  bottom: 0;
  right: 10%;
  animation: rotate-2 50s linear infinite ;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}


.details {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border-radius: 10px;
  background: transparent;
  transition: all 0.5s ease-in-out;
  border: 1px solid #ffffff50;
  z-index: 10;
}

.details img{
  aspect-ratio: 3/4;
  height: 250px;
  width: 100%;
  z-index: 5;
}



/* Optional: place content above the background image */
.details > * {
  position: relative;
  z-index: 1;
}

.details h2,
.details p {
  transition: opacity 0.3s ease-in-out;
}

/* On hover, hide them */


  /* horizontal scroll*/

  
.section {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
}

.scroll-section{
  background: #f0f0f0;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
}

.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  box-shadow: rgb(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}

.patch{
  background-size: cover;
  background-position: center;
}

.item:nth-of-type(1) .patch {
  background-image: url(images/granlues.jpg);
}

.item:nth-of-type(2) .patch {
  background-image: url(images/WhatsApp\ Image\ 2025-05-29\ at\ 16.02.33_51b3fe4b.jpg);
}



.item_content {
  background-color: var(--color-background);
  color: #fff;
  width: 50%; 
}


.item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}


.padding-vertical {
  padding: 2rem;
}

@media (max-width: 575.98px) {
  .heading {
    font-size: 2.5rem;
  }

  .item {
    display: flex;
    flex-direction: column;
  }

  .item_content,
  .item_media {
    height: 50vh;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }


}
  

/* application scroll */

.scroll-appliction-list {
  background-color: var(--color-white);
}

.stick-application {
  position: sticky;
  top: 35%;
}



.scroll-applications {
  transform: scale(0.9);
  transition: transform 0.3s ease;
  will-change: transform;
}

.app-card {
  background: var(--color-background);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:  20px 20px 60px #cccccc,
             -20px -20px 60px #ffffff;

  text-align: center;
}

.app-img {
  aspect-ratio: 16/9 !important;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.app-title {
  font-weight: 600;
  color: var(--color-white);
  padding: 15px 10px;
}



/* before and after */
.comparisonSection {
  position: relative;
  height: 100vh;
  overflow: hidden;
  
}

.comparisonSection {
  position: relative;
}
.comparisonImage {
  width: 100%;
  height: 100%;
}
.afterImage {
  position: absolute;
  overflow: hidden;
  top: 0;
  transform: translate(100%, 0px);
}
.afterImage img {
  transform: translate(-100%, 0px);
}
.comparisonImage img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}


/* ------- COOL TEXT HEADING -------------- */

.cool-heading-section {
      padding: 120px 2vw 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--color-background);
    }

    .text {
      font-size: 10vw;
      letter-spacing: -0.01em;
      margin: 0;
      width: 100%;
      position: relative;
      color: rgba(255, 255, 255, 0.1);
      background: linear-gradient(to right, #fff, #fff) no-repeat;
      background-clip: text;
      -webkit-background-clip: text;
      background-size: 0%;
      transition: background-size 0.5s ease-out;
      display: flex;
      flex-direction: column;
      align-items: CENTER;
      overflow: hidden;
    }

    .text span {
      position: absolute;
      top: 0;
      left: 0;
      color: #111;
      background-color: #fefefe;
      width: 100%;
      height: 100%;
      clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
      transition: all 0.5s cubic-bezier(.1, .5, .5, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 0.1em;
      font-weight: bold;
    }

    .text:hover span {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }


  /*  scroll flying divs  */

.flying-divs {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  
}


.sticky-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* vertically center products */
  height: 100vh;
  position: relative;
}

.products-wrapper {
  width: 100%;
  display: flex;
    flex-wrap: wrap;
  justify-content: space-around;
gap: 0px;}

.products {
  height: 40vh;
  width: 100%;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transform: rotate(0deg); /* initial for GSAP */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.products-inner {
  height: 100%;
  width: 100%;
  background-image: url(images/WhatsApp\ Image\ 2025-05-29\ at\ 16.02.33_2d64b81d.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg); /* counter-rotate from GSAP */
  
}


.row .col-lg-4:nth-child(2) .products-inner {
  background-image: url(images/bg-333.jpg);
  z-index: 12;
}

.row .col-lg-4:nth-child(3) .products-inner {
  background-image: url(images/hero-section.jpg);

      z-index: 12;
}
.bg-4 .products-inner {
    background-image: url(images/image-1.jpg);
      z-index: 12;
}
.bg-5 .products-inner {
    background-image: url(images/image-2.jpg) !important;
      z-index: 12;
}

@media(max-width:991px){
  .products{
    height: 20vh;
  }

}

.text2 {
  font-size: 7vw;
      font-weight: 800;
      text-transform: uppercase;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute; /* keep this */
  z-index:10; /* so it stays above the products */
  color: black; /* for visibility */
  pointer-events: none; /* optional, so it doesn't block clicks */
  white-space: nowrap; /* keeps the line breaks intentional */
  text-align: center;
}
  

/* banner -2  */




  /* form */






.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
  padding-left: 0; /* Removed left padding */
  margin-left: 0;  /* Ensure no default margin */
}

.form-control {
  border: none !important;
  border-bottom: 1px solid #222 !important;
  border-radius: 0 !important;
  background: var(--color-white) !important;
  padding: 1rem 1rem 1rem 0 !important; /* No left padding */
  margin-bottom: 1.5rem;
  box-shadow: none !important;
  font-size: 1rem;
}

textarea.form-control {
  resize: none;
}

a[type="submit"] {
  font-weight: 600;
  border:none ;
  border-radius: 2.25rem;
  width: auto;
  padding: 10px 20px;
  text-decoration: none;
  color: #121212;
}


::placeholder {
  padding-left: 0 !important; /* Ensure placeholder text starts from the left */
  margin-left: 0 !important;
}

@media(max-width:991px){
  .contact-left{
    height: 30vh;
  }
}
/* accoridan */

    /* ------------ accordian --------------- */

    .accordion-container{
      background: var(--color-white);
      position: relative;
    }
    .rotate-img-2 {
  height: 30%;
  animation: rotate 10s linear infinite;
  position: absolute;
  filter: brightness(100%) invert(1);
  right: 0;

}
    .accordion-item{
      border-radius: 0 !important;
      overflow: hidden;
      }
      .accordion-body{
      color: var(--color-background);
      }

      .accordion-button:focus {
      box-shadow: none !important;
      outline: none !important;
      }
      
      
      .accordion-button:not(.collapsed) {
      background-color: transparent !important;
      border: none !important;
      box-shadow: none !important;
      
      }
      
      
      .accordion-item {
        border-bottom: 1px solid var(--color-background) !important;
        background: transparent !important;
      }
      
      .accordion-button{
        color: var(--color-background) !important;
        border-radius: 20px !important;
        padding:  30px 0 !important;
      }
      
      

      /* Responsive */
      @media (max-width: 768px) {
        .swiper-button-next,
        .swiper-button-prev {
            color: #324373 !important;
            position: static;
            transform: translateY(20%);
        }
      
      }
      

      /* banner -2  */


