* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

html,body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  background-color: #000000;
  color: white;
  overflow-x: hidden;
  overflow-y: auto;
}



/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  overflow: hidden;
}

#particles-js,
.central-swirl {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
}

.central-swirl {
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(255, 0, 255, 0.5),
    rgba(0, 119, 255, 0.5),
    rgba(255, 0, 200, 0.5),
    rgba(0, 255, 255, 0.5),
    rgba(255, 0, 255, 0.5)
  );
  border-radius: 50%;
  filter: blur(150px);
  animation: swirl 20s linear infinite;
  z-index: 1;
  opacity: 0.7;
}

@keyframes swirl {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-top: 60px;
  padding: 1rem;
}

.label {
  display: inline-block;
  background: #f6751f;
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.hero-content h1 span {
  color: #f6751f;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin: 1rem 0 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background: #f6751f;
  color: white;
}

.btn.secondary {
  background: #1a1a1a;
  border: 1px solid #f6751f;
  color: #ffffff;
}

.btn.primary:hover {
  background: #f6751f;
}

.btn.secondary:hover {
  background: #2c2c2c;
  color: #d6b0ff;
}

/* Responsive */
@media(max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .central-swirl {
    width: 600px;
    height: 600px;
  }
}

@media(max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .central-swirl {
    width: 400px;
    height: 400px;
  }
}

@media(max-width: 480px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }

  .central-swirl {
    width: 400px;
    height: 400px;
    filter: blur(60px);
  }
}

/* About Section */
.about {
  padding: 6rem 10%;
  background: #0a0a0a;
  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.about-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.about-heading h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

.highlight-bar {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f6751f, #d6b0ff);
  margin: 0 auto 1rem;
  border-radius: 20px;
}

.subhead {
  color: #cccccc;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.about-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(255, 183, 2, 0.05);
  border: 1px solid rgba(255, 247, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(255, 154, 3, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.about-text::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(143, 48, 255, 0.15), rgba(214, 176, 255, 0.1));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.about-text p {
  position: relative;
  z-index: 1;
}

.about-text:hover {
  box-shadow: 0 0 70px rgba(143, 48, 255, 0.35);
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-swirl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    rgba(143, 48, 255, 0.4),
    rgba(214, 176, 255, 0.4),
    rgba(143, 48, 255, 0.4),
    rgba(214, 176, 255, 0.4),
    rgba(143, 48, 255, 0.4)
  );
  border-radius: 50%;
  filter: blur(180px);
  animation: swirl 30s linear infinite;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  overflow: hidden;
}

.about-lottie {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  height: 300px;
}


#about-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}

#use-case-particles{
   position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}

#testimonial-particles{
 position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}


#features-particles{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}


@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-heading h2 {
    font-size: 2.2rem;
  }

  .about-lottie {
    max-width: 400px;
    margin: 0 auto;
  }

}


  .responsive-lottie {
    width: 500px;    
    height: 5500px;   
    display: block;
    margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
    .responsive-lottie {
      width: 300px;
      height: 300px;
    }
  }


 .responsive-lottie,
 .responsive-lottie {
  min-height: 300px;
  min-width: 300px;
  max-height: 300px;
  max-width: 300px;
  overflow: hidden;
}

 .abouts-lottie {
    width: 500px;    /* ⬅️ Increase this value as needed */
    height: 500px;   /* ⬅️ Same here */
    display: block;
    margin: 0 auto;
  }

  @media screen and (max-width: 768px) {
    .abouts-lottie{
      width: 300px;
      height: 300px;
    }
  }

.zigzag-services {
    /* max-width: 1200px;
    margin: auto;
    padding: 80px 20px; */
      padding: 6rem 10%;
  background: #0a0a0a;
  color: #ffffff;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 2;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .section-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 60px;
  }

  .zigzag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
  }

  .zigzag-row.reverse {
    flex-direction: row-reverse;
  }

  .zigzag-text {
    flex: 1;
    min-width: 280px;
  }

  .zigzag-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f6751f;
  }

  .zigzag-text p {
    font-size: 1.1rem;
    color: #ccc;
  }

  .zigzag-lottie {
    flex: 1;
    max-width: 400px;
    min-width: 280px;
  }

  lottie-player {
    width: 100%;
    height: auto;
  }

  @media screen and (max-width: 768px) {
    .zigzag-row,
    .zigzag-row.reverse {
      flex-direction: column;
      text-align: center;
    }
  }


  
.zigzag-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(143, 48, 255, 0.05);
  border: 1px solid rgba(214, 176, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(143, 48, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.zigzag-text::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(143, 48, 255, 0.15), rgba(214, 176, 255, 0.1));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.zigzag-text p {
  position: relative;
  z-index: 1;
}

.zigzag-text:hover {
  box-shadow: 0 0 70px rgba(143, 48, 255, 0.35);
}

/* Particle background */
#service-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
    overflow: hidden;
}


.zigzag-services {
  position: relative;
  z-index: 2;
  background: #0a0a0a;
  overflow: hidden;
}


/* Swirl effect behind each text box */
.zigzag-text {
  position: relative;
  z-index: 1;
  background: rgba(143, 48, 255, 0.05);
  border: 1px solid rgba(214, 176, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(143, 48, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.zigzag-text::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,0,200,0.15), rgba(0,255,255,0.05), transparent 70%);
  filter: blur(60px);
  z-index: 0;
  border-radius: 50%;
  animation: swirlMove 10s linear infinite alternate;
}

.zigzag-text p, .zigzag-text h3 {
  position: relative;
  z-index: 1;
}

@keyframes swirlMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 20px);
  }
}
.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #f6751f, #fa760b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtext {
  font-size: 18px;
  color: #ccc;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.5;
}

  .use-cases-row-section {
  background: #0d0d0d;
  padding: 120px 20px 80px; /* Increased top padding */
  text-align: center;
  overflow: visible; /* Ensure glow isn't clipped */
  position: relative;
  z-index: 1;
}

.use-cases-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
  padding-top: 20px;

}

.use-case-card {
  background: #1c1c1c;
  border-radius: 20px;
  padding: 40px 20px 30px;
  min-width: 280px;
  max-width: 300px;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 180, 4, 0.4), 0 0 10px rgba(255, 170, 1, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible; /* Prevent clipping */
  position: relative;
  z-index: 2;
}

.use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 198, 11, 0.6);
}

.use-case-card h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #f6751f;
}

.use-case-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

.use-case-lottie {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  margin-top: 10px; /* Push it slightly down */
  z-index: 3;
}
@media (max-width: 768px) {
  .use-cases-row {
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
  }

  .use-case-card {
    width: 90%;
    max-width: 400px;
  }
}

  .features-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 18px;
  color: #bbb;
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 25px;
  color: #f0f0f0;
  transition: 0.3s ease;
}

.feature-box h3 {
  font-size: 20px;
  color: #f6751f;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #ccc;
}

.feature-box:hover {
  background: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 0 12px rgba(255, 213, 0, 0.15);
}

.testimonial-section {
  background: #0a0a0a;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.swirl-text {
  background: linear-gradient(135deg, #f6751f, #f6751f, #f6751f);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: swirl 10s ease infinite;
}

@keyframes swirl {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.testimonial-carousel {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  opacity: 1;
}

.testimonial-item .quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #dcdcdc;
}

.testimonial-item .author {
  font-weight: 700;
  color: #fff;
}

.testimonial-item .role {
  font-size: 0.9rem;
  color: #aaa;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: #f6751f;
  color: #fff;
  border: 1px solid #333;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-controls button:hover {
  background: #333;
}


.testimonial-item {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  background: rgba(251, 215, 9, 0.05);
  border: 1px solid rgba(255, 208, 0, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 50px rgba(255, 208, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(235, 170, 72, 0.1));
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.testimonial-item p {
  position: relative;
  z-index: 1;
}

.testimonial-item:hover {
  box-shadow: 0 0 70px rgba(255, 196, 0, 0.35);
}

.testimonial-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(255, 162, 0, 0.6),
              0 0 30px rgba(252, 208, 12, 0.4),
              0 0 45px rgba(255, 250, 0, 0.2);
  transition: box-shadow 0.3s ease;
}



.testimonial-item {
  text-align: center;
  padding: 20px;
}


.blog-section {
  padding: 60px 20px;
  background-color: #0f0f0f;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blog-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.blog-section .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #aaa;
}


.blog-grid-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.blog-grid {
  margin-top:20px;
  display: flex;
  animation: scroll-left 60s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.blog-grid:hover {
  animation-play-state: paused;
}

.blog-card {
  flex: 0 0 300px;
  margin-right: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:last-child {
  margin-right: 0;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 136, 0, 0.6), 0 0 30px rgba(255, 200, 2, 0.4);
  animation: glowPulse 1.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 10px rgba(255, 238, 0, 0.3), 0 0 20px rgba(227, 185, 17, 0.2);
  }
  to {
    box-shadow: 0 0 20px rgba(239, 239, 3, 0.7), 0 0 40px rgba(221, 245, 9, 0.5);
  }
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.blog-snippet {
  color: #ccc;
  font-size: 0.95rem;
}
.read-more {
  color: #f6751f;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}
.blog-swirl {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
background: conic-gradient(
  from 0deg,
  rgba(0, 255, 255, 0.4),
  rgba(0, 128, 255, 0.4),
  rgba(0, 255, 200, 0.4),
  rgba(0, 128, 255, 0.4),
  rgba(0, 255, 255, 0.4)
);


  border-radius: 50%;
  filter: blur(180px);
  animation: swirl 30s linear infinite;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
  overflow: hidden;
}

@keyframes float-glow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}


