* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}




html {
  background-color: transparent;
  /* This creates the smooth scrolling animation */
  scroll-behavior: smooth;
  overflow-x: hidden;

  /* This adds a top margin when scrolling, so the section isn't hidden by the navbar. */
  /* Adjust this value if your navbar height changes. */
  scroll-padding-top: 135px;
}


body {
  min-height: 100vh;
  background-color: rgb(18, 18, 18);
  color: white;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  margin: 0;
}



#container {
  /* --- CHANGED --- */
  position: absolute;
  /* Takes the container out of the document flow */
  top: 0;
  /* Aligns it to the top of the page */
  left: 0;
  /* Aligns it to the left of the page */
  z-index: 10;
  /* Places it above the content but below the header */

  width: 100%;
  /* <-- FIX IS HERE: Changed from 100vw */
  height: 100vh;
  pointer-events: none;
  /* Allows clicks to go "through" the container */
}


.floating {
  pointer-events: auto;
  /* Re-enables clicks only for the floating images */
  z-index: 20;
  /* Ensure above all content */
  position: absolute;
  width: 250px;
  height: auto;
  user-select: none;
  touch-action: none;
  cursor: grab;
  will-change: transform;
}

.floating:active {
  cursor: grabbing;
}

/* Media query for phones */
@media (max-width: 768px) {
  .floating {
    width: 100px;
    /* Adjust this value to your liking */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .floating {
    width: 120px;
    /* Adjust this value to your liking */
  }
}

/* Content section */
.content {
  position: relative;
  z-index: 5;
  margin-top: 180px;
  padding: 40px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  text-align: center;
  margin-bottom: 100px;
}



.hero h1 {
  font-size: 3.5rem;
  font-weight: 750;
  margin-top: 0;
  background: rgb(255, 255, 255);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ddd;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  /* Add these two lines to match the navbar */
  font-weight: 550;
  letter-spacing: 2.25px;
}

#contact-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  /* Add these two lines to match the navbar */
  font-weight: 550;
  letter-spacing: 2.25px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(177, 255, 8, 0.501);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 30px;
  width: 320px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2); */
  /* border-color: rgb(176, 255, 8); */
  background: linear-gradient(45deg, rgb(0, 0, 0), rgba(255, 255, 255, 0.2));
}

.feature-icon {
  margin-bottom: 20px;
  background: linear-gradient(to right, #00ffff, #ff00ff);
  /* -webkit-text-fill-color: transparent; */
  -webkit-background-clip: text;
}

.feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #bbb;
  line-height: 1.6;
}


.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}











canvas#starCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  display: block;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

#smokey-wrap {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  /* page clicks pass-through */
  z-index: 9999;
}

#fluid {
  display: block;
  width: 100vw;
  height: 100vh;
}




/* Animated Border Effect */
nav {
  /* Baki saari properties waise hi rakhein... */
  font-weight: 250;
  letter-spacing: 2.25px;
  width: 50%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: rgba(34, 34, 34, 0.7);
  border-radius: 999px;
  backdrop-filter: blur(35px);
  border: 2px solid rgba(72, 72, 72, 0.5);
  box-shadow: none;
  /* Shadow hata dein */
  position: relative;
  /* Yeh zaroori hai */
  transition: all 0.3s ease;
}

/* Glowing line ke liye pseudo-element banayein */
nav::after {
  content: '';
  position: absolute;
  bottom: -2px;
  /* Line ko border ke neeche rakhein */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background-color: rgb(176, 255, 8);
  border-radius: 2px;
  box-shadow: 0 0 10px rgb(176, 255, 8), 0 0 20px rgb(176, 255, 8)f;
  transition: width 0.4s ease-out;
  /* Smooth animation */
}

nav:hover {
  border-color: rgba(177, 255, 8, 0.147);
  box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(177, 255, 8, 0.588);
}

nav:hover::after {
  width: 90%;
  /* Hover par line ki chaudai badhayein */
}

nav .logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo img {
  width: 120px;
  height: auto;
  /* ऊंचाई अपने आप एडजस्ट हो जाएगी */
  display: block;
  /* अतिरिक्त स्पेस हटाने के लिए */
  margin-top: 6px;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

nav ul li a:hover {
  color: rgb(176, 255, 8);
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  nav {
    width: 80%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    border-radius: 20px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
  }

  .about-text {
    color: rgba(255, 255, 255, 0.2);
    /* Base color for the whole paragraph */
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.2 !important;
    font-size: 1.2rem !important;
    /* Increased from 1.1rem for better visibility */
  }

  .strategy-button {
    /* Centering Rules: */
    display: flex;
    width: fit-content;
    /* Make the container only as wide as its content */
    margin-left: 0 !important;
    /* Center the container horizontally */
    /* margin-right: auto; */
    /* Center the container horizontally */

    /* Spacing & Styling Rules: */
    margin-top: 40px;
    align-items: center;
    background-color: #000000;
    border: 1px solid #444;
    border-radius: 999px;
    padding: 4px !important;
    cursor: default;
  }

  .strategy-label {
    background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
    ;
    color: #000000;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.6rem !important;
    letter-spacing: 0.5px;
  }

  .strategy-action {
    color: #a0a0a0;
    margin-left: 16px;
    margin-right: 16px;
    font-weight: 500;
    font-size: 0.8rem !important;
  }

  #service-btn {
    font-size: 0.8rem !important;
    font-weight: 550;
    letter-spacing: 2.25px;
  }


}

#service-btn {
  background: rgb(26, 26, 26);
  color: white;
  border: 2px solid rgba(72, 72, 72, 0.5);


  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  /* Add these two lines to match the navbar */
  font-weight: 550;
  letter-spacing: 2.25px;
}

#service-btn:hover {
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  color: black;
  border: #000;
}


.cta-container {
  display: flex;
  justify-content: center;
  gap: 20px;

  text-align: center;
  /* ADD THIS: This will center the buttons */

  margin-top: 50px;
  margin-bottom: 100px;
  white-space: nowrap;
}


@media (max-width: 768px) {

  /* Navbar container ko aakar dein */
  nav {
    width: 90%;
    flex-wrap: nowrap;
    /* Yeh logo aur hamburger icon ko ek line mein rakhega */
    padding: 10px 20px;
    /* Chhote screens ke liye padding adjust karein */
  }

  /* Hamburger menu icon ko dikhayein */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    border-radius: 2px;
  }

  /* Dropdown menu ko style karein */
  nav ul {
    /* Isse menu ek overlay ban jaayega */
    position: absolute;
    top: calc(100% + 15px);
    /* Navbar ke theek neeche position karein */
    left: 0;

    /* Baaki styling */
    width: 100%;
    display: none;
    /* Default roop se chhupaayein */
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    background: rgba(20, 20, 20, 0.9);
    /* Thoda behtar contrast ke liye */
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    /* Puraana margin-top hata dein */
  }

  /* Click karne par menu dikhaane ke liye */
  nav ul.active {
    display: flex;
  }

  .content {
    margin-top: 120px;
    /* Reduce top margin for smaller screens */
    padding: 20px 20px;
    /* Adjust padding to create side margins */
    width: 100%;
    /* ADD THIS: Ensure it uses the full width */
    max-width: 100%;
    /* ADD THIS: Override the desktop max-width */
  }

  .hero {
    margin-bottom: 60px;
    /* Reduce margin */
  }

  .hero h1 {
    margin-top: 65px;
    font-size: 2.5rem;
    /* Smaller font size for heading */
    margin-bottom: 20px;
    /* Adjust spacing */
    letter-spacing: normal;
    /* Remove negative letter spacing */
    text-align: left;
    font-weight: 600;
  }

  .hero p {
    font-size: 1.1rem;
    /* Smaller font size for paragraph */
    margin-bottom: 30px;
    /* Adjust spacing */
    text-align: left;
  }

  .about-container {
    max-width: 800px;
    /* margin: 30px auto 0; Centered with top margin */
    text-align: left;
    margin: 30px auto -30px !important;
    padding-left: 0 !important;
  }

  .cta-button {
    /* --- NEW SMALLER VALUES --- */
    padding: 15px 22px !important;
    font-size: 0.75rem !important;
  }


  /* Is code ko apni style.css file me add karein */

  .cta-container {
    max-width: 700px;
    /* Paragraph ke max-width se match karega */
    width: 100%;
    margin: 0 auto;
    /* Upar, left/right auto, aur neeche margin */
    text-align: left;
    justify-content: start;
  }

  .timeline-heading {
    text-align: left !important;
  }

  .timeline-container {
    margin: 0 !important;
    padding: 0 !important;
  }


  .timeline-section {
    margin-top: -30px;
    padding: 0 !important;
    text-align: left !important;
  }



  .features {
    margin-top: 40px;
    gap: 20px;
    /* Reduce gap between cards */
  }

  .feature-card {
    width: 100%;
    /* This makes the card take the full width of its container */
    padding: 30px 20px;
    /* Adjust padding */
  }

  .feature-icon {
    font-size: 2.5rem;
    /* Smaller icons */
  }

  .feature-card h3 {
    font-size: 1.5rem;
    /* Smaller heading */
  }

  html {
    scroll-padding-top: 115px;
  }

  #scroll-animation {
    max-width: 100% !important;
  }

}

/* NAYA: Is block ko add karein */
@media (min-width: 769px) and (max-width: 1200px) {
  nav {
    width: 80%;
  }
}

@media (min-width: 1201px) {
  nav {
    width: 50%;
    /* Or any percentage you prefer for larger screens */
    max-width: 1400px;
    /* An optional max-width to prevent it from getting too wide */
  }
}

/* RESTORED: Newsletter Section Styles */
.footer-content {
  text-align: center;
  margin: 0px auto 40px;
  padding: 30px 20px;
  width: 100% !important;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  /* box-shadow: 0 0 25px rgba(255, 255, 255, 0.1); */
  color: white;
}

.footer-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-content input {
  padding: 10px 15px;
  width: 60%;
  max-width: 300px;
  border: none;
  border-radius: 20px;
  outline: none;
  font-size: 14px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-content button {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  color: black;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(177, 255, 8, 0.501);
}

/* RESTORED: Footer Styles */
footer {
  margin-top: 35px;
  padding: 60px 20px 40px;
  text-align: center;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.2);

}

.footer-buttons {
  background: rgb(13, 13, 13);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 25px;
  border-radius: 50px;
  /* box-shadow: 0 0 40px rgba(255, 255, 255, 0.1); */
  display: inline-flex;
  gap: 20px;
  backdrop-filter: blur(12px);
}

.footer-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  /* box-shadow: 0 0 10px #fff2, 0 0 20px #fff1; */
}

.footer-button:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px #fff4, 0 0 30px #fff3;
}

.footer-bottom {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

.footer-links {

  margin-top: 30px;
  font-size: 13px;
  color: #888;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: normal !important;
  font-style: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}






/* --- Strategy Label Styles --- */
.strategy-button {
  display: flex;
  width: fit-content;
  align-items: center;
  background-color: #000000;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 6px;
  cursor: default;
  /* UPDATED MARGINS */
  margin-left: 0;
  /* Was 100px */
  margin-top: 0;
  margin-bottom: 35px;
  /* Adds space between button and text */
}

.strategy-label {
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  ;
  color: #000000;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.strategy-action {
  color: #a0a0a0;
  margin-left: 16px;
  margin-right: 16px;
  font-weight: 500;
  font-size: 1rem;
}





/* Container for the animated text */
.about-container {
  max-width: 800px;
  margin: 30px auto 120px;
  /* Centered with top margin */
  padding: 0 20px;
}

.about-text {
  color: rgba(255, 255, 255, 0.2);
  /* Base color for the whole paragraph */
  text-align: left;
  line-height: 1.15;
  font-size: 2.0rem;
}

/* Individual word spans that will be animated */
.about-text span {
  color: rgba(255, 255, 255, 0.2);
  /* Initial low-alpha white for each word */
  transition: color 0.4s ease;
  /* Smooth transition for the color change */
}

/* Class to make the word visible */
.about-text span.visible {
  color: rgba(255, 255, 255, 0.85);
  /* Final, higher-alpha white */
}





/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#lottie-animation {
  width: 300px;
  height: 300px;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}







/* --- FINAL Timeline Styles --- */
.timeline-section {
  padding: 20px 0;
}

.timeline-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline-item {
  display: flex;
  position: relative;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-left {
  flex-shrink: 0;
  width: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-number {
  color: rgba(255, 255, 255, 0.2);
  font-size: 3rem;
  font-weight: 800;
  transition: color 0.5s ease;
  font-family: sans-serif;
}

/* This now syncs the number highlight with the content fade-in */
.timeline-item.content-visible .timeline-number {
  color: rgb(255, 255, 255);
}

.timeline-line {
  width: 3px;
  background-color: rgb(176, 255, 8);
  /* Line is now yellow by default */
  flex-grow: 1;
  margin-top: 5px;
  /* Creates space below the number */
  margin-bottom: 0px;
  transform: scaleY(0);
  /* Starts hidden, controlled by JS */
  transform-origin: top;
  /* NO transition property here, to allow JS to control it smoothly */
}

/* --- Timeline Heading Style --- */
.timeline-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  /* Adds space above the timeline steps */
  background: rgb(255, 255, 255);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

@media (max-width: 768px) {
  .timeline-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
}

.timeline-content {
  padding-left: 5px !important;
  padding-bottom: 80px;
  /* Make content hidden by default */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* This new class will be added by JavaScript to trigger the animation */
.timeline-item.content-visible .timeline-content {
  opacity: 1;
  transform: translateY(0);
}

.timeline-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.timeline-content p {
  color: #bbb;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-left {
    width: 80px;
    align-items: flex-start;
  }

  .timeline-left .timeline-line {
    align-self: center;
    transform: translateX(-10px);
    /* This nudges the line to the left */
  }



  .timeline-number {
    font-size: 2.5rem;
  }

  .timeline-content {
    padding-left: 20px;
  }

  .timeline-content h3 {
    font-size: 1.5rem;
  }

  .timeline-content p {
    font-size: 1rem;
  }
}

/* --- END of FINAL Timeline Styles --- */












/* ========== FAQ Section Styles ========== */
.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: -50px auto;
  text-align: center;
}

.faq-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(34, 34, 34, 0.7);
  border: 1px solid rgba(72, 72, 72, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(177, 255, 8, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: rgb(176, 255, 8);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.faq-answer p {
  padding: 0 25px 0px;
}


/* ADD THIS NEW RULE BELOW */
.faq-container .strategy-button {
  margin-left: auto;
  margin-right: auto;
}

#services .strategy-button {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

#services {
  margin-bottom: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {


  #services .strategy-button {
    margin-left: auto !important;
    margin-right: auto !important;
  }


  .faq-heading {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .testimonial-section {
    padding: 0px 0 !important;
    width: auto;
    max-width: 100%;
    margin: 40px 0px !important;
    overflow-x: hidden;
    /* This correctly prevents a horizontal scrollbar on the body */
    position: relative;
  }
}















/* ========== Testimonials Section Styles ========== */
.testimonial-section {
  padding: 60px 0;
  max-width: 100%;
  width: 100%;
  /* The !important is removed as it's not necessary */
  margin: 40px 0;
  /* FIXED: Horizontal margin removed */
  text-align: center;
  overflow-x: hidden;
  /* This correctly prevents a horizontal scrollbar on the body */
  position: relative;
  /* Added for pseudo-elements */
}




/* Fading edges for a cleaner look */
.testimonial-section::before,
.testimonial-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  /* Width of the fade effect */
  z-index: 2;
  pointer-events: none;
  /* Allows clicking through the fade */
}

.testimonial-section::before {
  left: 0;
  background: linear-gradient(to right, rgb(18, 18, 18) 20%, transparent);
}

.testimonial-section::after {
  right: 0;
  background: linear-gradient(to left, rgb(18, 18, 18) 20%, transparent);
}


.testimonial-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  /* background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text; */
  color: white;
}

.heading-footer {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 100px;
  /* background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text; */
  color: white;
  text-align: center;
}

.scroller {
  max-width: 100%;
  /* Ensure it doesn't overflow the viewport */
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 30s;
}

/* Add this corrected CSS in its place */

.scroller .testimonial-list {
  padding-block: 1rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* NEW RULE: This targets the <li> and is crucial for the height fix */
.scroller .testimonial-list li {
  display: flex;
  flex: 0 0 auto;
  /* Prevents the list item from shrinking */

}


/* UPDATED RULE: Ensures card fills the <li> and manages its internal content */
.testimonial-card {
  width: 380px;
  background: rgba(34, 34, 34, 0.7);
  border: 1px solid rgba(72, 72, 72, 0.5);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Allows the card to grow and fill the stretched <li> */
}


.testimonial-card:hover {
  border-color: rgba(177, 255, 8, 0.3);
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: rgb(176, 255, 8);
}


/* Responsive Styles */
@media (max-width: 768px) {
  .testimonial-heading {
    font-size: 2.2rem;
    /* text-align: left; */
  }

  .testimonial-card {
    /* On phones, make cards slightly narrower than the screen width */
    width: 80vw;
    max-width: 300px;
    /* Set a max-width for consistency */
  }

  .testimonial-section::before,
  .testimonial-section::after {
    /* Reduce the fade width on smaller screens */
    width: 50px;
  }
}



.heading-footer-last {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 100px;
  color: white;
  text-align: center;
}

.footer-contact p {
  font-size: 1.5rem;
}

.footer-contact {
  text-align: center;
}


@media (max-width: 768px) {

  .footer-contact .cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .heading-footer-last {
    text-align: center;
    font-size: 2.0rem;
    margin-bottom: 20px;
    margin-top: 100px;
  }

  .footer-contact p {
    font-size: 1rem;
    margin-bottom: 20px;
  }



}



/* =================================== */
/* == FINAL IMAGE SLIDER STYLES ====== */
/* =================================== */

/* Main container for the slider, arrows, and dots */
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* Space between arrows and image section */
  width: 100%;
  margin: 60px 0;
  /* Vertical margin */
}

/* In style.css, replace the existing .image-slider-section rule with this one */

/* The image section itself */
.image-slider-section {
  position: relative;
  flex-grow: 1;
  /* Allows it to take up space */
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  /* CRITICAL: keeps sliding effect contained */
  border-radius: 20px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Wrapper for the sliding mechanism */
.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  /* ADD THIS: This will create the smooth sliding effect */
  transition: transform 0.7s ease-in-out;
}

/* Individual slides */
.slide {
  min-width: 100%;
  height: 100%;
  /* REMOVED opacity, transition, and display properties */
}

/* The .slide.active rule is no longer needed and can be deleted */

.slide.active {
  display: block;
  /* Show active slide */
  opacity: 1;
}

/* The image inside the slide */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* THIS IS THE FIX: Makes image fill the container */
  display: block;
  border-radius: 20px;
}

/* Navigation arrow buttons */
.slider-nav-button {
  background-color: rgba(34, 34, 34, 0.7);
  border: 1px solid rgba(72, 72, 72, 0.5);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, border-color 0.3s;
  flex-shrink: 0;
  /* Prevents arrows from shrinking */
  z-index: 10;
}

.slider-nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
  border-color: #fff;
}

/* Container for the navigation dots below the slider */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -100px;
  /* Pulls the dots up closer to the image */
  padding-bottom: 30px;
  /* Adds some space below the dots */
  position: relative;
  z-index: 5;
}

/* Individual dots */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}

/* Hides navigation arrows on mobile devices */
@media (max-width: 768px) {
  .slider-nav-button {
    display: none;
  }

  .slider-container {
    margin: 120px 0;
    /* Vertical margin */
    gap: 0;
  }
}











/* This container ensures the canvas is positioned correctly */
#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
  /* Allows clicks to go "through" the canvas */
  cursor: none;
  /* Hides the default mouse cursor */
}

/* The canvas itself, which will be rendered on */
#fluid-canvas {
  width: 100vw;
  height: 100vh;
  display: block;
}




















/* --- Modern Popup (Modal) Styles --- */

.modal-overlay {
  position: fixed;
  /* Sits on top of all other content */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* Semi-transparent black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;

  /* --- For the smooth fade animation --- */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* This class will be added by JavaScript to show the modal */
.modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #1c1c1c;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(72, 72, 72, 0.5);
  text-align: center;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* --- For the smooth slide-in animation --- */
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.visible .modal-content {
  transform: translateY(0);
}

.modal-icon {
  width: 60px;
  height: auto;
  margin-bottom: 20px;
}

.modal-content h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-content p {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.modal-close-button {
  display: inline-block;
  padding: 12px 35px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(45deg, rgb(255, 255, 255), rgb(176, 255, 8));
  color: black;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-close-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(177, 255, 8, 0.4);
}





/* --- Responsive Adjustments for Modal on Mobile --- */
@media (max-width: 480px) {
  .modal-content {
    padding: 30px 25px;
    /* Vert/Horiz padding reduced for smaller screens */
  }

  .modal-icon {
    width: 50px;
    /* Slightly smaller icon */
    margin-bottom: 15px;
  }

  .modal-content h2 {
    font-size: 1.5rem;
    /* More appropriate heading size for mobile */
  }

  .modal-content p {
    font-size: 0.9rem;
    /* Slightly smaller paragraph text for readability */
    margin-bottom: 25px;
  }

  .modal-close-button {
    padding: 12px 30px;
    /* Adjust button padding */
    font-size: 0.9rem;
  }
}





.lottie-responsive-container {
  width: 90%;
  max-width: 1400px;
  /* You can adjust this max-width */
  margin: 100px auto;
}

/* By default, show the desktop animation and hide the mobile one */
.lottie-desktop {
  display: block;
}

.lottie-mobile {
  display: none;
}

/* On screens 768px or less (mobile devices) */
@media (max-width: 768px) {
  .lottie-responsive-container {
    margin: 60px auto;
    /* Reduce margin on mobile */
  }

  .lottie-desktop {
    display: none;
    /* Hide on mobile */
  }

  .lottie-mobile {
    display: block;
    /* Show on mobile */
  }
}











/* --- NEW: Fade-in on Scroll Animation --- */

/* This is the initial state of the elements before they are visible */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  /* Start 30px down */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* This class will be added by JavaScript when the element is in view */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}