@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    /* Disable horizontal scroll */
    border: none;
    /* optional — borders sometimes cause overflow */
    width: 100%;
  }

  .navbar {
    display: none;
  }

  .name-res {
    /* visibility: visible; */
    display: block;
    color: white;
    text-align: center;
    width: 100%;
    padding: 10px 20px;

    margin-top: 0px;
    border-radius: 20px 20px 0px 0px;
    border: none;
    /* optional — can cause overflow */
    background: #9dbd3a;
  }

  .name-res span {
    color: #9dbd3a;
  }

  /* Example fix for images or containers causing overflow */
  img,
  video,
  iframe,
  .container,
  .section {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* If you have flex or grid layouts */
  .flex-container,
  .grid-container {
    flex-wrap: wrap;
    overflow-x: hidden;
  }

  .hero {
    /* border: 2px solid white; */
    padding: 0px 10px;
  }



  .hero-2 {
    display: none;
  }

  .img-res {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .img-res img {
    border-radius: 200px;
    width: 250px;
  }

  .counter-sec {
    width: 100%;

    gap: 30px;
    flex-direction: row;
  }

  .counter-sec {
    /* border: 2px solid white; */
    margin-top: 0px;
  }

  .counter {
    font-size: 30px;
  }

  .counter-txt {
    color: white;
    font-size: 10px;
  }

  .track {
    animation: scroll 3s linear infinite;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .about-section {
    width: 100%;
    /* border: 2px solid white; */
    margin-top: 0px;
    /* padding: 0; */
  }

  .about-img {
    display: none;
  }

  #about-ss {
    display: none;
  }

  #about-sss {
    display: block;
  }

  .main-vid-cnt {
    display: none;
  }

  .particles {
    display: none;
  }



  #vire-rs {
    display: block;
  }

  .hero-1 {
    padding: 0px 40px;
    margin-top: 150px;
       /* border: 2px solid white; */
    width: 100%;
    color: white;
    /* margin-top: -102px; */
    gap: 0px;
    
  }

  .hero-1 h1{
    font-size:27px;
    /* border: 2px solid white; */
    padding: 0px 0px;
    
  }
  .hero-1 p{
  line-height: 1;
  font-weight: 100;
  font-size: 9px;
  /* border: 2px solid white; */
  width: 100%;
  color: white;
}

  .hero {
    /* border: 2px solid white; */
    height: fit-content;
  }

  nav.navbars {
    width: 100%;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: fixed;
    top: 0px;

    /* overflow-y: hidden; */
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }

  #menuBtn {
    font-size: 1.8rem;
    cursor: pointer;
    display: block;
    transition: 0.3s;
  }

  #menuBtn:hover {
    color: #b278c2;
  }

  /* Sidebar menu */
  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #1c1c1c;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
  }

  .side-menu.active {
    right: 0;
  }

  /* Close button */
  #closeBtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
  }

  #closeBtn:hover {
    color: #b278c2;
  }

  /* Menu links */
  .side-menu ul {
    list-style: none;
    text-align: center;
    width: 100%;
  }

  .side-menu ul li {
    margin: 25px 0;
  }

  .side-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
  }

  .side-menu ul li a:hover {
    color: #b278c2;
  }
.logo span{
color: #9dbd3a;
}

.pricing-grid{
  flex-direction: column;
}
/* .pricing-card{
height: 1000px;
}
.pricing-grid{
  height: 2000px;
} */
#cta--button{
display: block;
padding: 10px 0px ;
}
 .cta-buttons{
  display: none;
}
#about-sss{
  line-height: 1.4;
}
#about-sss {
  font-weight: 100;
  
}
 .cta-button {
      background:linear-gradient(130deg, #5e7119, #9dbd3a);
      color: white;
      border: none;

      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(10, 15, 60, 0.4);
      position: relative;
      overflow: hidden;
      text-decoration: none;
      /* width: 100px; */
      /* border-radius: 2px solid black; */
  }

  .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px #5e7119;
  }

  .cta-button::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -60%;
      width: 200%;
      height: 200%;
      background: linear-gradient(to right,
              rgba(255, 255, 255, 0) 0%,
              rgba(255, 255, 255, 0.2) 50%,
              rgba(255, 255, 255, 0) 100%);
      transform: rotate(30deg);
      animation: shine 3s infinite;
  }

  @keyframes shine {
      0% {
          left: -60%;
      }

      20% {
          left: 100%;
      }

      100% {
          left: 100%;
      }
  }
.section-header p{
  color: white;
}
.about-sss{
  text-align: left;
  padding: 0;
}
.txt--{
  /* border: 2px solid white; */
}
.about-text{
  padding: 30px 20px;
  margin: 0;
}
.about-text h1{
  font-size: 25px;
}

.cta-buttons{
  padding: 50px 120px;
}
.cta-button{
  padding: 14px 20px;
  font-size: 13px;
}
*{
   font-family: 'Satoshi', sans-serif;
}


}