  a{
    text-decoration: none;
    color: black;
  }
  /* mouse dot */
   .mouse-dot {
            position: fixed;
            width: 12px;
            height: 12px;
            background-color: #ff0000;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-16px, -16px); /* Position at top-left of cursor */
            transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
            will-change: transform, left, top;
        }

        .mouse-dot::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: #ff0000;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .mouse-dot.hover-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 0, 0, 0.3);
            transform: translate(-32px, -32px); /* Adjust positioning for larger size */
        }

        .mouse-dot.hover-link::before {
            opacity: 1;
        }
  
  
  
  /* font */
  @font-face {
    font-family: 'satoshi';
    src: url('./font/Satoshi_Complete/Fonts/OTF/Satoshi-Bold.otf') format('woff2');
    font-weight: 100;
    font-style: normal;
}
  @font-face {
    font-family: 'satoshione';
    src: url('./font/Satoshi_Complete/Fonts/OTF/Satoshi-Light.otf') format('woff2');
    font-weight: 100;
    font-style: normal;
}
  @font-face {
    font-family: 'satoshitwo';
    src: url('./font/Satoshi_Complete/Fonts/OTF/Satoshi-Medium.otf') format('woff2');
    font-weight: 100;
    font-style: normal;
}
  @font-face {
    font-family: 'redaction';
    src: url('./font/Satoshi_Complete/redaction/Redaction-mL8P5.otf') format('woff2');
    font-weight: 100;
    font-style: normal;
}
  @font-face {
    font-family: 'redactionone';
    src: url('./font/Satoshi_Complete/redaction/Redaction10Bold-w1gB6.otf') format('woff2');
    font-weight: 100;
    font-style: normal;
}
  
  /* first fold section */
    .fold {
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bolder;
      font-size: 28px;
      letter-spacing: 2px;
      position: relative;
      transition: opacity 0.5s ease;
    }

    .spinner {
      width: 18px;
      height: 18px;
      border: 2px solid black;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-radius: 50%;
      margin-right: 12px;
      animation: spin 1.2s linear infinite;
    }

    @keyframes spin {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* header */
    .header {
      display: none; /* hidden initially */
      padding: 20px 120px;
      align-items: center;
        transition: background-color 0.5s, color 0.5s;
     
    }

    .headerone {
      width: 40%;
    }

    .headertwo {
      width: 60%;
      display: flex;
     
      
    }

    .headerone a img {
      width: 100px;
     
    }
      .headerone a{
      display: inline-block;
     
    }

    .home{
        display: flex;
       
       
    }

    .home p{
       font-family: 'satoshi';
    font-size: 16px;
    font-weight: bolder;
        padding:0px 40px;
         border-left: 1px solid #ccc;
    }
    .cart{
        display: flex;
        align-items: center;
    }
    .cart img{
        width: 22px;
    }
    .cart p{
        
    background-color:#e9e9e9;
    color: black;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8px;
    height: 8px;
    text-align: center;
    font-family: 'satoshi';
    font-size: 10px;
    font-weight: 400;
    padding: 5px;
    }
    .cart p{
        margin: 0px;
    }
    .homeone a{
        color: red;
    }


    /* improve */
    .improve{
        display: flex;
        padding: 200px 120px 30px 120px;
    }
    .improveone{
        width: 65%;
        font-size: 99px;
    font-weight: 400;
    line-height: .8;
    font-family: redaction;
    }

.greatt {
  position: relative;
  display: inline-block;
}

.greatt::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0; /* Adjust as needed to place it near the text */
  width: 200px;
  height: 50px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg width='150' height='50' xmlns='http://www.w3.org/2000/svg'><path d='M0,40 C50,60 100,20 150,40' stroke='red' stroke-width='6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}


       .improvetwo{
        width: 35%;
    }


    /* improve two delay */
.improvetwo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.5s; /* Adjust delay as needed */
}

.improvetwo.visible {
  opacity: 1;
  transform: translateY(0);
}
/* over */


    .improvetwoone{
        color: black;
    font-family: satoshione;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    padding-right: 70px;
    margin-bottom: 90px;
    margin-top: 0px;
    }
    .improvetwotwo{
        background-color: red;
        display: inline-block;
        color: white;
       
        border-radius: 5px;
          
    padding: 18px 31px;
    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-weight: 700;
      transition: color 0.3s ease, background-color 0.3s ease;

    }
    .improvetwotwo:hover{
        color: white;
        background-color: black;
    }
 .first-img-container {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;         /* Critical: clips the zoomed image */
  z-index: 0;
  margin-top: 80px;         /* Use margin instead of padding to avoid content shift */
}

.first-img-zoom {
  position: absolute;       /* Anchor the image inside container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Ensures full cover */
  transition: transform 0.2s ease-out;
  will-change: transform;
  transform-origin: center center;
}


    body{
        margin: 0px;
    }
  .scroll-down img {
  width: 90px;
  margin-bottom: -110px;

  /* Slow, smooth rotation */
  animation: rotate 5s linear infinite;

  /* Tint image to #e9e9e9 using CSS filter */
filter: brightness(0) saturate(100%) invert(81%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(91%) contrast(90%);

}

.scroll-down {
  width: 100%;
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* Rotation animation */
@keyframes rotate {
  0%   { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}


/* no */
.no{
    display: flex;
    padding: 100px;
    gap: 30px;
}
.noone{
    width: 33%;
    text-align: center;
    position: relative;
}
.notwo{
    width: 33%;
     text-align: center;
     position: relative;
}
.nothree{
    width: 33%;
     text-align: center;
     position: relative;
}
.no img{
    
    width: 60px;

}

.no p{
        color: #6e6e6e;
    
    font-family: Satoshione;
    font-size: 18px;
    font-weight: 900;
    line-height: 22px;
}
.colortwo{
     
    background-color:#feb800;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 20%;
    bottom: auto;
    opacity: 80%;
    left: 50%;
    right: 0%;
}

.colorthree{
     
    background-color: #78ff00;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0%;
    bottom: auto;
    opacity: 80%;
    left: 50%;
    right: 0%;
}
.color{
     
    background-color: blue;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0%;
    bottom: auto;
    opacity: 80%;
    left: 40%;
    right: 0%;
}

/* stylish */
.stylish{
    display: flex;
    padding: 60px 120px;
    gap: 10px;

}
.stylishone{
    width: 50%;
}
.stylishtwo{
    width: 50%;
    font-family: satoshione;
        color: #424242;
    
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
}
.stylishtwo p{
padding-bottom: 30px;
}
.stylishoneone{
    color: #0000fe;
        line-height: 30px;
    font-size: 17px;
    font-weight: 700;
    padding-bottom: 30px;
font-family: Satoshi, sans-serif;
    }
    .stylishonetwo{
            font-size: 57px;
    font-weight: 700;
    line-height: 1;
    font-family: redactionone;
    margin: 0px;
    padding-bottom: 50px;
    }
    .stylishonethree{
        background-color: #e9e9e9;
        color: #424242;
        display: inline-block;
        
        border-radius: 5px;
    padding: 18px 31px;
    font-family: Satoshi, sans-serif;
    font-size: 17px;
    font-weight: 700;
    }
    /* second round */
   .second-round img {
  width: 120px;
  height: 120px;
  z-index: 9;
  left: 65%;
  margin-top: -50px;
  position: absolute;

  animation: spin 8s linear infinite; /* Slower, smooth rotation */
  transform-origin: center center; /* Ensures rotation is centered */
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

    .play{
        left: 67%;
        position: absolute;
        z-index: 9;
        text-transform: uppercase;
        font-family: sans-serif;
        font-weight: bold;
        padding-left: 20px;
    }
    .second-main img{
         object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
        
width: 100%;
    }
    .second-main{
        position: relative;
        margin-top: -50px;
        padding: 60px;
width: 60%;
  overflow: hidden; /* Hide overflow during zoom */
    }


    .work{
        
        width: 100%;
         transition: background-color 0.5s, color 0.5s;
        
        
    }
    .we{
        gap: 0px;
        display: flex;
   
       
       
    }
    .workone{
        font-size: 17px;
    font-weight: 700;
color: #feb800;
font-family: satoshi;
display: inline-block;
}
.weone{
    width: 50%;
    font-size: 57px;
    font-weight: 700;
    font-family: redaction;
}
.wetwo{
    width: 50%;
    text-align: end;
}
    .wetwo p{

    
    background-color: #e9e9e9;
    display: inline-block;
    border-radius: 5px;
    padding: 18px 31px;
    font-family: Satoshi, sans-serif;
    font-size: 17px;
      transition: color 0.3s ease, background-color 0.3s ease;
    font-weight: 700;


}
.wetwo p:hover{
    background-color: #0000fe;
    color: white;
}
body{
    overflow-x: hidden;
}
.hh{
    width: 100%;
}
.hh{
    position: fixed;
    top: 0;
    z-index: 99;
    background-color: white;
    
}

/* color change  */

.header.dark-mode ,
.work.dark-mode {
  background-color: black;
  color: white;
}
.header.dark-mode a{
    color: white;
        
}


.work.dark-mode .wetwo {
  color:black; /* Yellow for heading */
}
.header.dark-mode .headerone img {
  filter: brightness(0) invert(1);
  transition: filter 0.5s ease;
}
.header.dark-mode .cart img {
  filter: brightness(0) invert(1);
  transition: filter 0.5s ease;
}

.workk{
    padding: 250px 400px ;
}
.pen{
        line-height: 30px;
        font-family: Satoshi, sans-serif;
    font-size: 23px;
    margin: 0px;
    padding: 30px 0px 10px 0px;
}
.pentwo{
    line-height: 30px;
        font-family: Satoshi, sans-serif;
    font-size: 18px;
    color: #feb800;
    margin: 0px;

}

/* dark over */


.beautifull{
    display: flex;
    padding: 60px 120px;
    gap: 100px;
}
.bea{
    color: #0000fe;
        font-size: 17px;
    font-weight: 700;
    font-family: satoshi;
    padding-bottom: 30px;
}
.beautifullone{
    width: 50%;
    background-color: #f8f8f8;
    padding: 60px;
}
.beautifulltwo{
    width: 50%;
}
.beau{
        font-size: 57px;
    font-weight: 700;
    line-height: 1;
    font-family: redactionone;
    margin: 0px;
}

p{
    margin: 0px;
}
.beautifullone img{
    width: 100%;
}


/* faq section */.faq-container {
  max-width: 700px;
  margin: 100px 0 0;
  font-family: Arial, sans-serif;
}

.faq-item {
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid black;
  transition: transform 0.3s ease;
}

.faq-question .icon {
  background-color: black;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 12px;
  transition: background-color 0.3s ease;
}

.faq-question.active {
  transform: translateY(-5px);
}

.faq-answer {
  font-size: 16px;
  color: grey;
  padding-left: 40px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  line-height: 1.5;
  margin-bottom: 0;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  margin-bottom: 15px;
}


/* our */
.our{
    display: flex;
    padding: 100px 120px;
    gap: 50px;
}
.ourone{
    width: 50%;
}
.ourtwo{
    width: 50%;
    background-color: #f8f8f8;

}
.ouroneone{
    color: #78ff00;
    font-size: 17px;
    font-weight: 700;
    font-family: satoshi;
    padding: 20px 0px;
}
.ouronetwo{
        font-size: 36px;
    font-weight: 700;
    line-height: 1;
    font-family: redactionone;
}
.ouronethree{
    color: #6e6e6e;
    font-size: 18px;
    font-weight: 100;
    line-height: 22px;
    font-family: satoshi;
    padding: 30px 0px 200px 0px;
}
.wor{
    padding: 15px 25px;
    background-color: #78ff00;
    display: inline-block;
    border-radius: 5px;
    color: black;
    font-family: satoshi;
    font-size: 18px;
   
  
  
}


/* test */
.testi{
    color: #0000fe;
    font-family: satoshi;
}
.test{
    padding: 30px 0px;
    text-align: center;
}
.testim{
        font-size: 57px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 350px;
    font-family: redactionone;
}

.ourtwoo{
    width: 50%;
}
/* scroll based image moving */
.ourtwo {
  width: 100%;
  padding: 130px 0 60px 0px;
  background: #f8f8f8;
  overflow: hidden;
  position: relative;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px; /* Space between rows */
}

/* NEW: Image container box */
.image-box {
  width: 150px;
  height: 100px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Image styling */
.image-box img {
  width: 50%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(0) contrast(1000%);
  transition: transform 1.5s ease;
}


/* cannot */
.cannot{
    display: flex;
    padding: 60px 120px;
    text-align: center;
    gap: 30px;
    
}
.cannotone{
    width: 33%;
   
}
.cannottwo{
    width: 33%;
}
.cannotthree{
    width: 33%;
}
.cannotoneone{
    background-color: #f8f8f8;
    padding: 50px;
}
.lala img{
    border: 5px solid #f8f8f8;
   
    border-radius: 100%;
    width: 100px;
    height: 100px;
  margin-bottom: -30px;
  
   
}
.cannotimg{
    display: flex;
     padding: 10px;
    justify-content: center;
    display: flex;
    
       
}
.cannotimg img{
     filter: invert();
    width: 18px;
    margin-right: 2px;
   
}
.cann{
    color: #6e6e6e;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.cannn{
    font-family: Satoshi, sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 30px 0px 10px 0px;
}
.cannnn{
        font-size: 16px;
    font-weight: 500;
    color: #6e6e6e;
    font-family: sans-serif;
}
.coree{
    font-family: satoshi;
    color: #fc1410;
}
.core{
    padding: 30px 200px;
}

.coree{
    padding-bottom: 20px;
    font-size: 18px;
}
.coreee{
        font-size: 57px;
    font-weight: 700;
    line-height: 1;
    font-family: redactionone;
}

/* hoorizontal scroll */
.dolarone{
    display: flex;
    width: 50%;
    margin-right: 200px;
    border-top: 2px solid #fc1410;
     padding: 50px 30px 50px 30px;
    gap: 60px;
    justify-content: space-between;

    
}
.dolarone:nth-child(1) {
margin-left: 100px;
}
.dolarone:nth-child(2) {
  border-top: 2px solid blue;
}
.dolarone:nth-child(3) {
  border-top: 2px solid #78ff00;
}
.dolarone:nth-child(4) {
  border-top: 2px solid #feb800;
}
.dolarone:nth-of-type(1) li::marker {
  color: #fc1410; /* Red */
}

.dolarone:nth-of-type(2) li::marker {
  color: blue; /* Blue */
}

.dolarone:nth-of-type(3) li::marker {
  color: #78ff00; /* Green */
}

.dolarone:nth-of-type(4) li::marker {
  color: #feb800; /* Green */
}




.dolaroneone{
    width: 20%;
}
.dolaronetwo{
    width: 80%;
}
.dolaroneone img{
    width: 120px;

}

.conten{
        font-family: Satoshi, sans-serif;
    font-weight: 700;
        font-size: 24px;
    line-height: 30px;
    padding-bottom: 30px;
}
.contenn{
    font-family: satoshitwo;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #6e6e6e;
    
}
.contennn{
    color: #6e6e6e;
    font-family: satoshitwo;
    font-weight: 100;
}


/* Horizontal scroll container */
/* Horizontal scroll container */
/* Horizontal scroll container */
/* Horizontal scroll container */
/* Horizontal scroll container */
/* Horizontal scroll container */
#horizontal-scroll-section {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    width: 100vw;
    height: 70vh;
    padding-left: 100px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#horizontal-scroll-section::-webkit-scrollbar {
    display: none;
}

/* Keep your existing dolarone styles but add flex-shrink */
#horizontal-scroll-section .dolarone {
    flex-shrink: 0; /* Prevent cards from shrinking */
}
/* Optional: Navigation dots */
.scroll-dots {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    background: white;
    transform: scale(1.2);
}


/* horizontal scroll over */

.fromblog{
    display: flex;
    padding: 200px;
}
.fromblogone{
    width: 50%;
}
.fromblogtwo{
    width: 50%;
}
.fromblogoneone{
    color: #0000fe;
    font-family: sans-serif;
    font-weight: 600;
}
.fromblogonetwo{
    padding: 20px 0px;
    font-family: redactionone;
   
        font-size: 57px;
    font-weight: 700;
}
.fromblogtwoone{
    font-family: satoshione;
        font-size: 25px;
    font-weight: 400;
    line-height: 30px;
    color: #424242;
    padding-bottom: 40px;

}
.fromblogtwotwo{
    color: #424242;
    background-color: #e9e9e9;
    display: inline-block;
    padding:15px 30px;
    font-family: satoshi;
    border-radius: 5px;
}


/* amazing */
.amazing{
    display: flex;
    padding: 50px 200px;
    gap: 50px;
}
.amazingone{
    width: 50%;
}
.amazingtwo{
    width: 50%;
}
.amazing img{
    width: 100%;
}
.amazingoneone{
    padding: 30px;
    background-color: #f8f8f8;
}
.feb{
    color: #6e6e6e;
    font-family: sans-serif;
    font-size: 14px;
    padding-bottom: 20px;
}
.febone{
    font-family: Satoshi, sans-serif;
    font-size: 26px;
    line-height: 32px;
    padding-bottom: 30px;

}
.febtwo{
        padding: 15px 23px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    background-color: #e9e9e9;
    color: #424242;
    display: inline-block;
    font-family: sans-serif;
}
.toone{
    
    color: #feb800;
    font-size: 17px;
    font-weight: 700;
font-family: sans-serif;
font-weight: 500;
padding-bottom: 30px;
}
.totwo{
    font-size: 57px;
    font-weight: 700;
    line-height: 1;
font-family: redactionone;
}
.totwo span{
    display: block;
}
.to{
    
    width: 100%;
   padding: 50px 200px;
}

/* subscription */
.subscription-container {
  font-family: Arial, sans-serif;
  width: max-content;
  padding: 40px 0px;
}

.subscription-box {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 50px;
  padding: 15px 10px 15px 20px;
  width: 400px;
  box-shadow: 0 0 0 1px #eee;
}

.email-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  padding: 10px;
}

.subscribe-button {
  background-color: #ff0000;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-button:hover {
  background-color: #e60000;
}

.terms-label {
  display: flex;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}

.terms-label input[type="checkbox"] {
  margin-right: 8px;
}

.terms-label a {
  color: #333;
  font-weight: 500;
  text-decoration: underline;
}



/* footer */
.black{
   background-color: black;
   color: white;

    padding: 50px 200px;
}
.blackk{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blackone{
    width: 70%;
}
.blacktwo{
    width: 30%;
    text-align: end;
}

.blackoneone{
    color:#fc1410;
    font-family: sans-serif;
    font-weight: 500;
}
.blackonetwo{
    font-family: redactionone;
    font-size: 57px;
    font-weight: 700;
    line-height: 1;
    padding: 20px 0px;
}

.blacktwoone{
    background-color: #fc1410;
    display: inline-block;
   padding: 18px 31px;
   border-radius: 5px;
    font-family: sans-serif;
}

.sitemap{
    display:flex;
    
}
.sitemapone{
    width: 30%;
}
.sitemaptwo{
    width: 60%;
}
.sitemapthree{
    width: 10%;

   
}
.sitemaponetwo{
    font-family: satoshi;
    padding:80px 0px 20px 0px;
    font-size: 20px;
}
.sitemaponeone p{
    color: rgba(255, 255, 255, .7);
    margin-bottom: 5px;
    
    font-family: Satoshione;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
}
.insta{
    text-align: end;
    display: flex;
    align-items: center;
   
    gap: 10px;
padding: 5px 0px;
    font-family: sans-serif;
     color: rgba(255, 255, 255, .7);
}
.insta img{
    width: 18px;
        filter: invert();
}
.this{
    padding-top: 40px;
    font-family: sans-serif;
     color: rgba(255, 255, 255, .7);
}
.this span{
    color: white;

}


/* flip up on scroll */

.flip-up-on-scroll-long {
  opacity: 0;
  transform: perspective(1200px) rotateX(5deg) rotateY(-4deg) translateY(20px);
  transform-origin: left bottom;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease-out;
  will-change: transform, opacity;
}

.flip-up-on-scroll-long.visible {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateY(0);
}



/* zoom out on scroll */

.zoom-out-down-on-scroll {
  opacity: 0;
  transform: scale(1.2) translateY(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-out-down-on-scroll.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.zoom-scroll-image {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* fade left */
.fade-left-on-scroll {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.fade-left-on-scroll.delay-0 {
  transition-delay: 0s;
}

.fade-left-on-scroll.delay-1 {
  transition-delay: 0.3s;
}

.fade-left-on-scroll.delay-2 {
  transition-delay: 0.6s;
}


/* fade-right */
.fade-right-on-scroll {
  opacity: 0;
  transform: translateX(40px); /* right side */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.fade-right-on-scroll.delay-0 {
  transition-delay: 0s;
}

.fade-right-on-scroll.delay-1 {
  transition-delay: 0.3s;
}

.fade-right-on-scroll.delay-2 {
  transition-delay: 0.6s;
}

/* second image */
.second-main {
  position: relative;
  margin-top: -50px;
  padding: 60px 120px;
  width: 60%;
  overflow: hidden;
}

/* Wrapper defines the fixed visual window */
.zoom-wrapper {
  width: 100%;
/* fixed height */
  overflow: hidden;
  position: relative;
}

/* Image is larger and scaled inside */
.zoom-scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s linear;
  will-change: transform;
  transform-origin: center center;
}

/* black img */.blackimg {
  padding-top: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.viewbox-clipper {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.scroll-zoom-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  will-change: transform;
}


/* beautifull  img*/
.beautifullone {
  width: 50%;
  background-color: #f8f8f8;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.zoom-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.scroll-zoom-trigger {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* fade up */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 3s ease, transform 3s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }


/* amaz */
.amaz{
    
    background-color: red;
    background-image: url(https://assets-global.website-files.com/61b1ed7124efdd3545261447/61b361021d4b106e4df3d580_zap-white.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 16px;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 10px;
    bottom: auto;
    left: auto;
    right: 10px;
}

/* hamburger */
/* Basic Reset */
.mobile-nav{
  display: none;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  margin-left: 16px;
  overflow-y: hidden;
}

.mobile-menu-toggle span {
  height: 3px;
  background: black;
  border-radius: 2px;
  transition: 0.3s;

}

.header.dark-mode .mobile-menu-toggle span {
  background: white;
}

/* Show on mobile only */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: black;
    position: fixed;
    top: 60px; /* Adjust based on your header height */
    right: 0;
    left: 0;
    padding: 20px;
    z-index: 999;
  }


  .mobile-nav p {
    margin: 10px 0;
    color: white;
  }

  .mobile-nav p a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-nav p a:hover,
  .mobile-nav .homeone a {
    color: red;
  }

  .mobile-nav.active {
    display: flex;
  }

  /* Toggle animation to X */
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Optional: Hide .home menu for mobile (if duplicated) */
  .headertwo .home {
    display: none;
  }
}

@media only screen and (min-width: 820px) and (max-width: 1180px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: black;
    position: fixed;
    top: 60px; /* Adjust based on your header height */
    right: 0;
    left: 0;
    padding: 20px;
    z-index: 999;
  }


  .mobile-nav p {
    margin: 10px 0;
    color: white;
  }

  .mobile-nav p a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .mobile-nav p a:hover,
  .mobile-nav .homeone a {
    color: red;
  }

  .mobile-nav.active {
    display: flex;
  }

  /* Toggle animation to X */
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Optional: Hide .home menu for mobile (if duplicated) */
  .headertwo .home {
    display: none;
  }
}
