html {
  scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  :root {
      --primary:#9dbd3a   ;
      --primary-light: #333f08;
      --dark: #05071F;
      --darker: #030515;
      --light: #C8DAF9;
      --lighter: #E6F0FF;
      --accent: #2C5DA9;
      --animation-speed: 1s;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      
  }

  body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    
      background-color: rgb(17, 17, 17);
      color:#9dbd3a;
      overflow-x: hidden;
      position: relative;
      width: 100%;
      overflow-x: hidden;
  }



  /* Animated Particles Background */
  .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100%;
      z-index: -1;
      overflow: hidden;
  }

  .particle {
      position: absolute;
      background: rgba(200, 218, 249, 0.3);
      border-radius: 50%;
      pointer-events: none;
  }

  /* Audio Controls */
  .audio-controls {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50px;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .audio-controls button {
      background: var(--primary);
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
  }

  .audio-controls button:hover {
      background: var(--primary-light);
      transform: scale(1.1);
  }

  .audio-controls span {
      color: var(--light);
      font-size: 0.9rem;
      margin-right: 10px;
  }

  /* Navigation with Animation */
 
  nav {
      display: flex;
      position: relative;
      padding: 1rem 5%;
      z-index: 10;
      justify-content: center;
      gap: 250px;
      align-items: center;
      animation: fadeInDown 1s ease-out;
      height: 100px;
      width: 100vw;
  }

  @keyframes fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--lighter);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: transform 0.3s;
     animation: slideIn 1s ease-out forwards;
}
 .logo-prt img {
      width: 150px;
  }

  .logo-prt {
      display: flex;
  }


@keyframes slideIn {
    from {
        transform: translateX(-200px);
        /* start from left off-screen */
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /* move to center */
        opacity: 1;
    }
}

  .logo:hover {
      transform: scale(1.05);
  }

  .logo-prt span {
      color: #9dbd3a;

  }
  .nav-links {
      display: flex;
      gap: 2rem;
     animation: navLinks 1s ease-out forwards;
}

@keyframes navLinks {
    from {
        transform: translatey(-100px);
        /* start from left off-screen */
        opacity: 0;
    }

    to {
        transform: translatey(0);
        /* move to center */
        opacity: 1;
    }
}

  .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      position: relative;
  }

  .nav-links a:hover {
      color: #9dbd3a;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: #9dbd3a;
      transition: width 0.3s;
  }

  .nav-links a:hover::after {
      width: 100%;
  }
  

  .cta-buttons {
      background:linear-gradient(130deg, #5e7119, #9dbd3a);
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      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;
  }
  .cta-buttons 

  .cta-buttons:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px #5e7119;
  }

  .cta-buttons::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%;
      }
  }
  .cta-button {
      background:linear-gradient(130deg, #5e7119, #9dbd3a);
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      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;
  }
  .cta-button 

  .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%;
      }
  }

  /* Hero Section */
  .hero {
      padding: 0px 60px;
      padding-top: 60px;
      padding-bottom: 50px;
      text-align: center;
      position: relative;
      z-index: 5;
      opacity: 1;
      animation: fadeInUp 1s ease-out 0.3s forwards;
      display: flex;
      height: 750px;
      gap: 50px;
  }
  .hero-1{
    width: 50%;
    /* border: 2px solid white; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
  }
  .hero-2{
    width: 50%;
    /* border: 2px solid white; */
    padding: 20px -20px;
  }

  .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      background: white;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
  }

  .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 3rem;
      color: rgba(200, 218, 249, 0.8);
      line-height: 1.6;
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 3rem;
  }

  .secondary-button {
      background: rgba(200, 218, 249, 0.1);
      color: var(--light);
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(200, 218, 249, 0.1);
  }

  .secondary-button:hover {
      background: rgba(200, 218, 249, 0.2);
      border-color: rgba(200, 218, 249, 0.3);
  }
 
  .img-1{
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    top:50px;
    left: -130px;
    /* z-index: 1; */
  }
  .img-1 img{
    width: 250px;
    border-radius: 20px;

  }
  .img-2{
    border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    top: -100px;
    z-index: 21;
  }
  .img-2 img{
    width: 200px;
    border-radius: 20px;
  }
  .img-3{
       border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    top: -380px;
    left: 100px;
    z-index: 1;
  }
  .img-3 img{
      width: 350px;
    border-radius: 20px;
  }
.img-4{
          border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    top: -350px;
    left: 100px;
    z-index: -1;
}
.img-4 img{
      width: 300px;
    border-radius: 20px;
}
.img-5{
       border-radius: 20px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    top: -600px;
    left: -100px;
}

.img-5 img{
      width: 350px;
    border-radius: 20px;
}
  /* counter section  */
  .counter-sec {
      position: relative;
      top: 0px;
      display: flex;
      width: 100vw;
      justify-content: center;
      gap: 100px;
      text-align: center;
  }

  .counter {
      font-size: 4rem;
      font-weight: bold;
      /* text-shadow: 0 0 20px rgba(255,255,255,0.5); */
  }


  /* CTA Section */
  .cta-section {
      padding: 6rem 5%;
      text-align: center;
      background: #9cbd3a1f;
      position: relative;
      z-index: 4;
      border-top: 1px solid rgba(200, 218, 249, 0.1);
      border-bottom: 1px solid rgba(200, 218, 249, 0.1);
  }

  .cta-section h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--lighter);
  }

  .cta-section p {
      color: rgba(200, 218, 249, 0.7);
      max-width: 600px;
      margin: 0 auto 3rem;
      line-height: 1.6;
  }

  /* Footer */
  footer {
      padding: 4rem 5%;
      background: linear-gradient(103deg ,#000000,#2c3804);
      position: relative;
      z-index: 2;
      height: 400px;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
  }

  .footer-column h4 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: var(--lighter);
  }

  .footer-column ul {
      list-style: none;
  }

  .footer-column ul li {
      margin-bottom: 0.8rem;
  }

  .footer-column ul li a {
      color: rgba(200, 218, 249, 0.7);
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-column ul li a:hover {
      color: #9dbd3a;
  }

  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(200, 218, 249, 0.1);
  }

  .social-links {
      display: flex;
      gap: 1rem;
  }

  .social-links a {
      color: rgba(200, 218, 249, 0.7);
      text-decoration: none;
      transition: all 0.3s;
  }

  .social-links a:hover {
      color: #9dbd3a;
      transform: translateY(-2px);
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.5rem;
      }

      .hero-buttons {
          flex-direction: column;
          align-items: center;
      }

      .showcase-item,
      .showcase-item:nth-child(even) {
          flex-direction: column;
      }

      nav {
          flex-direction: column;
          gap: 1.5rem;
      }

      .nav-links {
          flex-direction: column;
          align-items: center;
          gap: 1rem;
      }
  }

  .bg-3d {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
      overflow: hidden;
      background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, var(--primary) 100%);
  }

  @keyframes gradientAnimation {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  .bg-3d {
      /* ... existing styles ... */
      background: linear-gradient(135deg, var(--darker), var(--dark), var(--primary-light));
      background-size: 400% 400%;
      animation: gradientAnimation 15s ease infinite;
  }

  .shape-1 {
      /* ... existing styles ... */
      background: radial-gradient(circle, rgba(10, 15, 60, 0.5) 0%, rgba(10, 15, 60, 0) 70%);
  }

  .shape-2 {
      /* ... existing styles ... */
      background: radial-gradient(circle, rgba(44, 93, 169, 0.4) 0%, rgba(44, 93, 169, 0) 70%);
  }

  .shape-3 {
      /* ... existing styles ... */
      background: linear-gradient(45deg, var(--primary), var(--accent));
      opacity: 0.1;
  }

  .particle {
      background: rgba(230, 240, 255, 0.95);
      /* ... rest of the styles ... */
  }

  :root {
      /* ... existing variables ... */
      --darkest: #010208;
      /* Adding a very deep dark blue/black */
  }

  .bg-3d {
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
      overflow: hidden;
      background: linear-gradient(135deg,
              var(--darkest) 0%,
              var(--darker) 30%,
              var(--dark) 60%,
              var(--primary) 100%);
      background-size: 400% 400%;
      animation: gradientAnimation 15s ease infinite;
  }

  @keyframes gradientAnimation {
      0% {
          background-position: 0% 0%;
      }

      50% {
          background-position: 100% 100%;
      }

      100% {
          background-position: 0% 0%;
      }
  }

  .shape-1 {
      /* ... existing styles ... */
      background: radial-gradient(circle,
              rgba(1, 2, 8, 0.6) 0%,
              rgba(1, 2, 8, 0) 70%);
  }

  .shape-2 {
      /* ... existing styles ... */
      background: radial-gradient(circle,
              rgba(44, 93, 169, 0.3) 0%,
              rgba(1, 2, 8, 0) 70%);
  }

  .particle {
      background: rgba(200, 218, 249, 0.6);
      /* More subtle particles */
  }

  .navbar {
      max-height: 100px;
      /* border: 2px solid white; */
      background: rgb(17, 17, 17);
      position: sticky;
      top: 0px;

  }

  .main-vid-cnt {
      /* margin-left: 13px; */
      padding: 0;
      /* background: #05071F; */
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      width: 100%;
      overflow: hidden;
  }

  .slider {
      position: relative;
      width: 100%;
      height: 350px;
      /* box height + little padding */
      overflow: hidden;
      display: flex;
      align-items: center;
  }

  .track {
      display: flex;
      gap: 10px;
      border-radius: 20px;
      animation: scroll 15s linear infinite;
  }

  .box {
      /* width:300px; */

      height: 350px;
      background: #58a6ff;
      /* flex-shrink: 0; */

      border-radius: 22px;
  }
  .track video{
    scale: 1;
  }


  @keyframes scroll {
      from {
          transform: translateX(0);
      }

      to {
          transform: translateX(-50%);
      }
  }




  /* Subscription Deals Section */
  .subscription-deals {
      padding: 80px 5%;
      /* background: linear-gradient(135deg, #9dbd3a,#293304 100%); */
      position: relative;
      z-index: 2;
  }

  .pricing-grid {
display: flex;
/* border: 2px solid white; */
justify-content: space-between;
gap: 30px;
margin-top: 50px;

  }

  .pricing-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      position: relative;
      width: 100%;
  }

  .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .pricing-card.featured {
      background: linear-gradient(135deg, #9cbd3a50 100%);
      border: 1px solid rgba(54, 169, 44, 0.3);
  }

  .popular-badge {
      position: absolute;
      top: -12px;
      right: 20px;
      background: #2C5DA9;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
  }

  .pricing-header {
      text-align: center;
      margin-bottom: 25px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pricing-header h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: white;
  }

  .price {
      font-size: 40px;
      font-weight: bold;
      color: white;
  }

  .pricing-features {
      margin-bottom: 30px;
  }

  .pricing-features ul {
      list-style: none;
      padding: 0;
  }

  .pricing-features li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.8);
  }

  .pricing-features li:last-child {
      border-bottom: none;
  }

  .pricing-card .cta-button {
      width: 100%;
      text-align: center;
      justify-content: center;
      padding: 7px 10px;
  }
  .pricing-card a{
    text-decoration: none;
  }
  
    
    /* ---- About Section ---- */
    .about-section {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      padding: 100px 8%;
      backdrop-filter: blur(10px);
      /* transform: translatex(-500px); */
    }
   
    

    .about-text {
      flex: 1;
      background: rgba(255, 255, 255, 0.05);
      border-left: 4px solid #9dbd3a;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 0 40px rgba(157, 189, 58, 0.15);
     
    }

    .about-text h1 {
      font-size: 17px;
      font-weight: 700;
      color: #9dbd3a;
      text-shadow: 0 0 25px #9dbd3a;
      margin-bottom: 20px;
    }

    .about-text h1 span {
      color: #fff;
      font-weight: 600;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #eaeaea;
    }

    .highlight {
      /* color: #9dbd3a; */
      font-weight: 600;
    }

    /* ---- Image Box ---- */
    .about-img {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1000px;
      border-radius: 200px;
    }

    .about-img img {
      width: 100%;
      max-width: 400px;
      border-radius: 200px;
      box-shadow: 0 0 40px rgba(157, 189, 58, 0.5);
      transform-style: preserve-3d;
      transform: rotateY(10deg);
      /* transition: transform 0.8s ease, box-shadow 0.8s ease; */
      border: 3px solid rgba(157, 189,a58, 0.2);
      transition: all;
      transition-duration: 1s;
    }
    
    .about-img img:hover {
      transition: all;
      transition-duration: 1s;
      transform: rotateY(0deg) scale(1.05);
      box-shadow: 0 0 70px rgba(157, 189, 58, 0.8);
    }
    .about-img img{
        border-radius: 200px;
    }

   
    /* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap'); */

  
  
    .services-section{
      padding: 72px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-head{
      text-align: center;
      margin-bottom: 36px;
    }

    .services-head h2{
      margin: 0 0 10px;
      font-size: 2.6rem;
      color: var(--light);
      letter-spacing: -0.02em;
      animation: fadeInDown var(--animation-speed) ease both;
    }

    .services-head p{
      margin: 0 auto;
      max-width: 720px;
      color: var(--lighter);
      font-size: 1.05rem;
      opacity: .95;
      animation: fadeInUp var(--animation-speed) ease both;
    }

    .services-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
      gap: 22px;
      margin-top: 34px;
    }

    .service-card{
      background: linear-gradient(130deg,#9dbd3a,#333f08);
      padding:22px;
      border-radius:14px;
      min-height:150px;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
      box-shadow: 0 6px 18px rgba(2,6,23,0.5);
      position:relative;
      overflow:hidden;
      color: var(--lighter);
      /* hidden before reveal */
      opacity: 0;
      transform: translateY(20px);
        transition: all;
        transition-duration: 1s;
    }

    .service-card.revealed{
      opacity: 1;
      transform: translateY(0);
      transition: opacity var(--animation-speed) ease, transform var(--animation-speed) cubic-bezier(.2,.9,.2,1);
    }

    .service-card:hover{
        transition: all;
        transition-duration: 1s;
        /* transition-property: ; */
      transform: translateY(-12px);
      background: linear-gradient(130deg ,#9dbd3a,#293304)  ;
      cursor: pointer;
      box-shadow: 0 9px 40px 1px #9dbd3a;
    }

    .icon-wrap{
      width:70px;
      height:70px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:14px;
      color: var(--lighter); /* svg uses currentColor */
      transition: transform 0.35s ease;
    }

    .service-card:hover .icon-wrap{ transform: scale(1.08); }

    .service-title{
      margin:0 0 8px;
      font-size:1.25rem;
      color: var(--lighter);
    }

    .service-desc{
      margin:0;
      color: var(--light);
      font-size:0.96rem;
    }

    /* small accent circle */
    .service-accent{
      position:absolute;
      right:-40px;
      top:-40px;
      width:120px;
      height:120px;
      border-radius:50%;
      background: radial-gradient(circle at 30% 30%, #5e7119, transparent 40%);
      pointer-events:none;
      transform: rotate(12deg);
    }

    /* Animations */
    @keyframes fadeInDown{
      from{opacity:0; transform: translateY(-12px)}
      to{opacity:1; transform: translateY(0)}
    }
    @keyframes fadeInUp{
      from{opacity:0; transform: translateY(12px)}
      to{opacity:1; transform: translateY(0)}
    }

    /* Responsive heading scale */
    @media (max-width:640px){
      .services-head h2{font-size:1.9rem}
    }

    /* ensure SVGs scale nicely */
    .icon-wrap svg{ width:56px; height:56px; display:block; }
    @keyframes bgShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .feedback-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      text-align: center;
    }

    .feedback-section h2 {
      font-size: 2.6rem;
      margin-bottom: 15px;
      color: var(--light);
      animation: fadeInDown var(--animation-speed) ease both;
    }

    .feedback-section p {
      font-size: 1.1rem;
      margin-bottom: 50px;
      opacity: 0.9;
      animation: fadeInUp var(--animation-speed) ease both;
    }

    /* Slider container */
    .feedback-slider {
      display: flex;
      gap: 24px;
      overflow: hidden;
      position: relative;
    }

    .feedback-card {
      flex: 0 0 340px;
      margin-top: 50px;
      background: #b7df491f;
      border-radius: 16px;
      padding: 24px;
      /* box-shadow: 0 10px 28px rgba(120, 245, 18, 0.5); */
      position: relative;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      opacity: 0;
      transform: translateY(30px);
    }

    .feedback-card.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    .feedback-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 16px 40px #9cbd3a8f;
    }

    .client-pic {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid var(--accent);
    }

    .client-name {
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--lighter);
      margin-bottom: 5px;
    }

    .client-role {
      font-size: 0.9rem;
      color: var(--light);
      margin-bottom: 14px;
    }

    .client-feedback {
      font-size: 1rem;
      color: var(--lighter);
      line-height: 1.5;
      position: relative;
    }

    .client-feedback::before {
      content: "“";
      font-size: 2rem;
      color: var(--accent);
      position: absolute;
      left: -12px;
      top: -10px;
    }

    /* Animations */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Scroll reveal */
    @keyframes slideShow {
      0% { transform: translateX(0); }
      33% { transform: translateX(-360px); }
      66% { transform: translateX(-720px); }
      100% { transform: translateX(0); }
    }

    .feedback-slider.animate {
      animation: slideShow 20s infinite ease-in-out;
    }

    @media (max-width: 768px) {
      .feedback-slider {
        flex-direction: column;
        align-items: center;
        animation: none !important;
      }
      .feedback-card {
        width: 90%;
      }
    }
    
    /* responsive items  */
    .name-res{
      display: none;
    }
    /* Base fix for all screens */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Ensure all elements respect box-sizing */
*, *::before, *::after {
  box-sizing: inherit;
}
.img-res{
  display: none;
}
#about-sss{
  display: none;
}
#vire-rs{
  display:  none;
}
.navbars{
  display: none;
}

#cccct{
  padding: 10px 20px;
}
body{
    font-family: 'Satoshi', sans-serif;
}