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

*::before,
*::after {
  box-sizing: border-box;
}

p {
  font-family: Inter, sans-serif;
}

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

body {
  font-family: JetBrains Mono, monospace;
  background: linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.7),
      rgba(16, 185, 129, 0.5),
      rgba(139, 92, 246, 0.6)
    ),
    #111;
  background-blend-mode: overlay;
  color: white;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: #10b981;
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
  /* background: linear-gradient(135deg, #0a1520 0%, #132639 100%); */
  color: white;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  animation: slideInFromBottom 1s ease forwards;
}

h1,
h1 span {
  font-family: JetBrains Mono, monospace;
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  font-size: clamp(0.875rem, 3vw, 1rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.btn {
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: auto;
  white-space: nowrap;
}

.btn-primary {
  background: #10b981;
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
  background-color: white;
  color: #0f172a;
  border: none;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background-color: #f1f5f9;
}

.hero-image {
  position: relative;
  z-index: 10;
  opacity: 0;
  width: 100%;
  max-width: 400px;
  transform: translateY(100px);
  animation: slideInFromBottom 1s ease forwards;
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-decorative-element {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  opacity: 1;
  filter: blur(40px);
  z-index: -1;
}

.hero-decorative-1 {
  top: -30px;
  right: 20px;
}

.hero-decorative-2 {
  bottom: 20px;
  left: -30px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.animated-card {
  color: #222;
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  transform: translateY(20px);
  max-width: 90%;
}

.animated-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.animated-card-1 {
  top: 20%;
  right: 0;
  animation-delay: 0.3s;
}

.animated-card-1 .animated-card-icon {
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.animated-card-2 {
  top: 20%;
  left: 0;
  animation-delay: 0.6s;
}

.animated-card-2 .animated-card-icon {
  background-color: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.animated-card-3 {
  top: 20%;
  left: 40%;
  animation-delay: 0.9s;
}

.animated-card-3 .animated-card-icon {
  background-color: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.shape {
  position: absolute;
  opacity: 0.3;
  z-index: 1;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: morph1 15s linear infinite alternate,
    float1 20s ease-in-out infinite;
}

.shape-2 {
  bottom: 15%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 59% 41% 41% 59% / 37% 60% 40% 63%;
  /* background: linear-gradient(45deg, #10b981, #059669); */
  animation: morph2 20s linear infinite alternate,
    float2 25s ease-in-out infinite;
}

.shape-3 {
  bottom: 30%;
  left: 15%;
  width: 150px;
  height: 150px;
  border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
  /* background: linear-gradient(45deg, #f97316, #ea580c); */
  animation: morph3 18s linear infinite alternate,
    float3 22s ease-in-out infinite;
}

.shape-4 {
  top: 10%;
  right: 20%;
  width: 250px;
  height: 250px;
  border-radius: 45% 55% 52% 48% / 49% 51% 49% 51%;
  /* background: linear-gradient(45deg, #3b82f6, #2563eb); */
  animation: morph1 12s linear infinite alternate,
    float1 15s ease-in-out infinite;
}

@keyframes morph1 {
  0% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  }
  100% {
    border-radius: 45% 55% 52% 48% / 49% 51% 49% 51%;
  }
}

@keyframes morph2 {
  0% {
    border-radius: 59% 41% 41% 59% / 37% 60% 40% 63%;
  }
  100% {
    border-radius: 51% 49% 54% 46% / 46% 57% 43% 54%;
  }
}

@keyframes morph3 {
  0% {
    border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
  }
  100% {
    border-radius: 48% 52% 59% 41% / 38% 42% 58% 62%;
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, -40px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, -25px);
  }
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: #10b981;
  /* background: linear-gradient(90deg, #3b82f6, #10b981);
  color: transparent;
  -webkit-background-clip: text;
    background-clip: text; */
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #10b981;
  border-radius: 2px;
}

.section-subtitle {
  font-size: clamp(0.875rem, 3vw, 1rem);
  opacity: 0.8;
  margin-bottom: 3rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Additional responsiveness for even smaller screens */
@media (max-width: 380px) {
  .hero-section {
    padding: 15px;
    padding-top: 40px;
  }

  .cta-buttons {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .btn {
    margin-right: 0;
    padding: 8px 16px;
    font-size: 0.75rem;
    width: 100%;
  }

  .animated-card {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .animated-card-icon {
    width: 30px;
    height: 30px;
  }

  .shape {
    transform: scale(0.7);
  }
}

@media (max-width: 768px) {
  h1,
  h1 span {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
  }

  .hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-content p {
    font-size: clamp(0.7rem, 3vw, 0.9rem);
    margin-bottom: 1.5rem;
  }

  .hero-image {
    width: 100%;
    max-width: 250px;
    height: auto;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem auto;
  }

  .shape-1 {
    width: 120px;
    height: 120px;
  }

  .shape-2 {
    width: 160px;
    height: 160px;
  }

  .shape-3 {
    width: 80px;
    height: 80px;
  }

  .shape-4 {
    width: 200px;
    height: 200px;
  }

  .shape img {
    width: 32px;
    height: 32px;
  }

  .animated-card {
    max-width: 80%;
  }

  .animated-card-1 {
    right: 5%;
  }

  .animated-card-2 {
    left: 5%;
  }

  .animated-card-3 {
    left: 20%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 30px;
  }

  h1,
  h1 span {
    font-size: 1.4rem;
  }

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

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .btn {
    padding: 5px 10px;
    font-weight: 500;
    font-size: 0.6rem;
  }

  .hero-image {
    max-width: 150px;
  }

  .shape-1,
  .shape-4 {
    width: 80px;
    height: 80px;
  }

  .shape-2 {
    width: 120px;
    height: 120px;
  }

  .shape-3 {
    width: 60px;
    height: 60px;
  }

  .animated-card {
    padding: 0.75rem;
  }
}

/* Reset for navbar container */
.navbar-container {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 1000;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .navbar {
    width: 90%;
    max-width: 800px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 55px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    transition: all 0.4s ease, max-width 0.6s ease, border-radius 0.6s ease;
    box-sizing: border-box;
  }
  
  .navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 1200px;
    border-radius: 50px;
  }
  
  .navbar.scrolled .nav-links a {
    color: #333;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo a {
    text-decoration: none;
  }
  
  .logo-image {
    width: 150px;
    height: auto;
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    width: 0;
  }
  
  .navbar.scrolled .nav-links {
    opacity: 1;
    max-height: 70px;
    width: auto;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
  }
  
  .navbar.scrolled .nav-links a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
  }
  
  /* Make links visible in dropdown regardless of scroll state */
  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #10b981;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Menu icon styles */
  .menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
  }
  
  /* Hide icon on larger screens */
  .menu-icon .fa-solid {
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .navbar.scrolled .menu-icon i {
    color: #333;
  }
  
  .navbar.scrolled .logo a {
    color: #333;
  }
  
  /* X animation */
  .menu-icon.active i.fa-bars {
    display: none;
  }
  
  .menu-icon i.fa-xmark {
    display: none;
    transform: rotate(90deg);
  }
  
  .menu-icon.active i.fa-xmark {
    display: inline-block;
    transform: rotate(0deg);
  }
  
  .cta-button-mobile {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .navbar-container {
      top: 10px;
      padding: 0 10px;
      width: 100%;
    }
  
    .navbar {
      width: 100%;
      padding: 0 15px;
      height: 60px;
      border-radius: 18px;
      position: relative;
    }
  
    .navbar.scrolled {
      background-color: rgba(255, 255, 255, 0.95);
      height: 60px;
      border-radius: 18px;
    }
  
    .menu-icon {
      display: block;
      margin-left: 20px;
    }
  
    .menu-icon i.fa-bars {
      display: inline-block;
    }
  
    .menu-icon.active i.fa-bars {
      display: none;
    }
  
    .menu-icon.active i.fa-xmark {
      display: inline-block;
    }
  
    .nav-links {
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      width: 100%;
      background-color: transparent;
      flex-direction: column;
      align-items: center;
      border: none;
      border-radius: 0 0 8px 8px;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      box-sizing: border-box;
      margin: 0 auto;
    }
  
    .navbar.scrolled .nav-links {
      background-color: rgba(255, 255, 255, 0.95);
      max-height: 0;
      top: 60px;
      border-radius: 0 0 18px 18px;
    }
  
    .nav-links.active {
      border: 1px solid rgba(255, 255, 255, 0.1);
      max-height: 250px;
      padding: 15px 0;
      opacity: 1;
      width: 100%;
      border-top: none;
      left: 0;
      transform: none;
    }
  
    .nav-links.active a {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.1s;
    }
  
    .navbar.scrolled .nav-links.active {
      max-height: 250px;
      border-top: none;
    }
  
    .nav-links a {
      text-decoration: none;
      margin: 10px 0;
    }
  
    .navbar.mobile-menu-open {
      border-radius: 18px 18px 0 0;
    }
  
    .navbar.scrolled.mobile-menu-open {
      border-radius: 18px 18px 0 0;
    }
  
    /* Move CTA button to dropdown on mobile */
    .cta-button {
      display: none !important;
    }
  
    .cta-button-mobile {
      display: block;
    }

    .cta-button-mobile a {
      padding: 5px 20px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .navbar-container {
      top: 5px;
      padding: 0 5px;
    }
    
    .navbar {
      width: 100%;
      height: 50px;
      padding: 0 10px;
    }
  
    .navbar.scrolled {
      height: 50px;
    }
  
    .nav-links {
      top: 50px;
      font-size: 12px;
    }
  
    .navbar.scrolled .nav-links {
      top: 50px;
    }
  
    .logo-image {
      width: 100px;
    }
  }
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.businesses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.business-card {
    background-color: rgba(30, 30, 40, 0.7);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px) scale(1.02) !important;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #10B981;
    transition: height 0.3s ease;
}

.business-card:hover::before {
    height: 100%;
}

.business-card:hover .business-icon {
    transform: scale(1.2);
}

.business-icon {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    color: #10B981;
}

.business-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.business-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
    opacity: 0.1;
    filter: blur(80px);
    z-index: 1;
    animation: floatAnimation 20s infinite alternate ease-in-out;
}

.about-shape1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.about-shape2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -150px;
    background: linear-gradient(45deg, #10B981, #3B82F6);
    animation-delay: -5s;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
    100% {
        transform: translate(-50px, -30px) scale(0.9);
    }
}

.counter {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-right: 5px;
    color: #10B981;
}

.stats-container {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
}

.stat-description {
    color: #b0b0b0;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .businesses-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .business-card {
        padding: 1.5rem;
    }
    
    .business-title {
        font-size: 1.3rem;
    }
    
    .stats-container {
        margin-top: 4rem;
        gap: 3rem;
    }
    
    .counter {
        font-size: 1.6rem;
    }
}

/* Additional responsiveness for smaller screens */
@media (max-width: 480px) {
    .about-section {
        padding: 60px 1rem;
    }
    
    .businesses-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .business-card {
        padding: 1.2rem;
        transform: translateY(20px);
    }
    
    .business-icon {
        margin-bottom: 0.6rem;
        transform: scale(0.9);
    }
    
    .business-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .business-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.7rem;
    }
    
    .stats-container {
        margin-top: 3rem;
        gap: 1.5rem;
        width: 100%;
        justify-content: space-around;
    }
    
    .counter {
        font-size: 1.3rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    /* Reduce the size of the floating shapes */
    .about-shape1 {
        width: 300px;
        height: 300px;
    }
    
    .about-shape2 {
        width: 350px;
        height: 350px;
    }
}

/* Extremely small screens adjustments */
@media (max-width: 360px) {
    .about-section {
        padding: 50px 0.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .business-card {
        padding: 1rem;
    }
    
    .business-title {
        font-size: 0.9rem;
    }
    
    .business-description {
        font-size: 0.7rem;
    }
    
    .counter {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.7rem;
    }
}
.prod-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 2rem;
  overflow: hidden;
}

.prod-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.prod-shape-1 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: -100px;
  left: -100px;
  animation: float1 15s ease-in-out infinite;
}

.prod-shape-2 {
  width: 300px;
  height: 300px;
  background: #10b981;
  bottom: -50px;
  right: -50px;
  animation: float2 20s ease-in-out infinite;
}

.prod-shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #3b82f6, #10b981);
  top: 60%;
  left: 10%;
  animation: float3 25s ease-in-out infinite;
}

.prod-shape-4 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  top: 20%;
  right: 15%;
  animation: float4 18s ease-in-out infinite;
}

.prod-container {
    margin-top: 20px;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50px, 50px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, -60px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(60px, -30px);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 40px);
  }
}

.prod-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin: 0 auto;
}

.prod-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.prod-slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.prod-slide {
  min-width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.prod-slide.active {
  opacity: 1;
  transform: translateX(0);
}

/* Alternate layout for even-indexed slides */
.prod-slide:nth-child(even) {
  flex-direction: row-reverse;
}

.prod-product-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* Right tilt for odd slides (image on left) */
.prod-slide:nth-child(odd) .prod-product-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  transform: perspective(1000px) rotateY(10deg);
  transition: transform 0.5s ease;
}

/* Left tilt for even slides (image on right) */
.prod-slide:nth-child(even) .prod-product-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.prod-slide:nth-child(odd) .prod-product-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.prod-slide:nth-child(even) .prod-product-image img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.prod-product-info {
  flex: 1;
  max-width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.prod-product-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: #10b981;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  word-break: break-word;
}

.prod-product-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #d1d5db;
}

.prod-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.prod-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.prod-feature-item::before {
  content: "";
  display: inline-block;
  min-width: 8px;
  height: 8px;
  margin-right: 10px;
  margin-top: 8px;
  background: #10b981;
  border-radius: 50%;
  flex-shrink: 0;
}

.prod-nav-buttons {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.prod-nav-button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.prod-nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.prod-nav-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prod-indicators {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.prod-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prod-indicator.active {
  background: #10b981;
  width: 20px;
  border-radius: 10px;
}

/* Tablet responsiveness */
@media (max-width: 768px) {
  .prod-section {
    padding: 80px 1.5rem;
  }
  
  .prod-slide,
  .prod-slide:nth-child(even) {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 600px;
  }
  
  .prod-product-image {
    max-width: 90%;
    padding: 1rem;
  }

  .prod-slide:nth-child(odd) .prod-product-image img,
  .prod-slide:nth-child(even) .prod-product-image img {
    transform: none;
    max-width: 80%;
  }

  .prod-slide:nth-child(odd) .prod-product-image img:hover,
  .prod-slide:nth-child(even) .prod-product-image img:hover {
    transform: scale(1.05);
  }
  
  .prod-product-info {
    max-width: 100%;
    width: 100%;
    padding: 1rem;
    align-items: center;
    text-align: center;
  }

  .prod-feature-item {
    justify-content: center;
    text-align: left;
  }

  .prod-product-title {
    font-size: 2rem;
  }
  
  .prod-nav-buttons {
    padding: 0 0.5rem;
  }
  
  .prod-nav-button {
    width: 40px;
    height: 40px;
  }
}

/* Mobile responsiveness (< 480px) */
@media (max-width: 480px) {
  .prod-section {
    padding: 60px 1rem;
  }
  
  .prod-slide {
    min-height: 500px;
    padding: 0 0.5rem;
  }
  
  .prod-product-image {
    max-width: 80%;
    padding: 0.5rem;
  }
  
  .prod-slide:nth-child(odd) .prod-product-image img,
  .prod-slide:nth-child(even) .prod-product-image img {
    max-width: 85%;
  }
  
  .prod-product-info {
    padding: 0.75rem;
  }
  
  .prod-product-title {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }
  
  .prod-product-description {
    max-width: 70%;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .prod-feature-list {
    max-width: 80%;
    margin: 0 0 1.5rem 0;
  }
  
  .prod-feature-item {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
  }
  
  .prod-feature-item::before {
    min-width: 6px;
    height: 6px;
    margin-top: 7px;
    margin-right: 8px;
  }
  
  .prod-nav-buttons {
    top: auto;
    bottom: 70px;
    transform: none;
  }
  
  .prod-nav-button {
    width: 36px;
    height: 36px;
  }
  
  .prod-nav-button svg {
    width: 16px;
    height: 16px;
  }
  
  .prod-indicators {
    bottom: 15px;
  }
  
  .prod-indicator {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  
  .prod-indicator.active {
    width: 16px;
  }
  
  /* Reduce shape sizes for better mobile performance */
  .prod-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .prod-shape-2 {
    width: 200px;
    height: 200px;
  }
  
  .prod-shape-3 {
    width: 150px;
    height: 150px;
  }
  
  .prod-shape-4 {
    width: 120px;
    height: 120px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .prod-section {
    padding: 50px 0.8rem;
  }
  
  .prod-slide {
    min-height: 450px;
  }
  
  .prod-product-title {
    font-size: 1.3rem;
  }
  
  .prod-product-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .prod-feature-item {
    font-size: 0.8rem;
  }
  
  .prod-nav-button {
    width: 32px;
    height: 32px;
  }
}
/* Benefits section */
.ben-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ben-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .ben-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .ben-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  
  .ben-image-container {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .ben-image {
    max-width: 100%;
    height: auto;
  }
  
  .ben-benefits {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .ben-benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .ben-benefit-item {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
  }
  
  .ben-check {
    margin-right: 1rem;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
  }
  
  .ben-benefit-text {
    font-size: 1.125rem;
  }
  
  .ben-btn-container {
    margin-top: 3rem;
    text-align: center;
  }
  
  
  /* Animated shapes */
  .ben-shape {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  .ben-shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-name: floatAround1;
  }
  
  .ben-shape-2 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 15%;
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    animation-name: floatAround2;
  }
  
  .ben-shape-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 20%;
    border-radius: 41% 59% 41% 59% / 40% 38% 62% 60%;
    animation-name: floatAround3;
  }
  
  @keyframes floatAround1 {
    0% { transform: translate(0, 0) rotate(0); }
    25% { transform: translate(50px, 30px) rotate(90deg); }
    50% { transform: translate(20px, 80px) rotate(180deg); }
    75% { transform: translate(-30px, 30px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  @keyframes floatAround2 {
    0% { transform: translate(0, 0) rotate(0); }
    33% { transform: translate(-40px, -40px) rotate(120deg); }
    66% { transform: translate(40px, -20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  @keyframes floatAround3 {
    0% { transform: translate(0, 0) rotate(0); }
    50% { transform: translate(60px, -30px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
  
  /* Animation classes */
  .ben-visible .ben-image-container {
    opacity: 1;
    transform: translateX(0);
  }
  
  .ben-visible .ben-benefits {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .ben-content {
      flex-direction: column;
    }
    
    .ben-image-container {
      transform: translateY(-50px);
      margin-bottom: 2rem;
    }
    
    .ben-benefits {
      transform: translateY(50px);
    }
    
    .ben-visible .ben-image-container {
      transform: translateY(0);
    }
    
    .ben-visible .ben-benefits {
      transform: translateY(0);
    }
    
    .ben-benefit-text {
      font-size: 1rem;
    }
  }


  @media (max-width: 768px) {
    .ben-benefit-text {
      font-size: .8rem;
    }
  }

/* ======= Integration Section Base Structure ======= */
.integ-section {
    position: relative;
    padding: 80px 2rem;
  }
  
  .integ-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  /* ======= Background Shapes ======= */
  .integ-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }
  
  .integ-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: integFloat 20s infinite ease-in-out;
  }
  
  .integ-shape-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    left: -100px;
    top: 10%;
    animation-delay: 0s;
  }
  
  .integ-shape-2 {
    width: 300px;
    height: 300px;
    background: #10b981;
    right: -50px;
    top: 20%;
    animation-delay: -5s;
  }
  
  .integ-shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(to right, #3b82f6, #10b981);
    left: 35%;
    bottom: -150px;
    animation-delay: -10s;
  }
  
  .integ-shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(to right, #10b981, #3b82f6);
    right: 25%;
    top: -50px;
    animation-delay: -15s;
  }
  
  @keyframes integFloat {
    0% {
      transform: translate(0, 0) rotate(0deg);
    }
    33% {
      transform: translate(50px, 50px) rotate(120deg);
    }
    66% {
      transform: translate(-50px, 25px) rotate(240deg);
    }
    100% {
      transform: translate(0, 0) rotate(360deg);
    }
  }
  
  /* ======= Header Section ======= */
  .integ-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }
  
  .integ-header.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ======= Integration Animation ======= */
  .integ-animation {
    width: 90vmin;
    height: 90vmin;
    max-width: 500px;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .outer-ring {
    width: 80%;
    height: 80%;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    position: absolute;
  }
  
  .rotating-container {
    position: absolute;
    width: 80%;
    height: 80%;
    animation: integRotate 60s linear infinite;
  }
  
  @keyframes integRotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .center-logo {
    width: 30%;
    height: 30%;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: clamp(20px, 6vmin, 32px);
    font-weight: bold;
    z-index: 3;
    position: relative;
  }
  
  /* ======= Brand Logos ======= */
  .brand-logo {
    width: 16%;
    height: 16%;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .brand-logo img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }
  
  /* Position the logos around the circle */
  .brand-logo-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .brand-logo-2 {
    top: 14.65%;
    right: 14.65%;
    transform: translate(50%, -50%);
  }
  
  .brand-logo-3 {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }
  
  .brand-logo-4 {
    bottom: 14.65%;
    right: 14.65%;
    transform: translate(50%, 50%);
  }
  
  .brand-logo-5 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  
  .brand-logo-6 {
    bottom: 14.65%;
    left: 14.65%;
    transform: translate(-50%, 50%);
  }
  
  .brand-logo-7 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
  
  .brand-logo-8 {
    top: 14.65%;
    left: 14.65%;
    transform: translate(-50%, -50%);
  }
  
  /* ======= Content Section ======= */
  .integ-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  /* ======= Apps Section ======= */
  .integ-apps {
    display: flex;
    align-items: center;
    gap: 50px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
  }
  
  .integ-apps.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .integ-apps-image {
    flex: 1;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
  }
  
  .integ-apps-image img {
    width: 100%;
    display: block;
  }
  
  .integ-apps-content {
    flex: 1;
  }
  
  .integ-apps-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .integ-apps-content-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* ======= API Section ======= */
  .integ-api {
    display: flex;
    align-items: stretch;
    gap: 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
    transition-delay: 0.2s;
    margin: 20px 0;
    background-color: #0e141f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }
  
  .integ-api.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  .integ-api-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
  }
  
  .integ-api-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .integ-api-content > p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .integ-api-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    flex-grow: 1;
  }
  
  .integ-api-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .integ-api-icon {
    font-size: 24px;
    min-width: 60px;
    height: 60px;
    background: #1a2538;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .integ-api-feature h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
  }
  
  .integ-api-feature p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
  }
  
  .integ-api-cta {
    margin-top: 15px;
  }
  
 /* ======= API Code Block ======= */
.integ-api-code {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  }
  
  .integ-code-header {
    background: #252526;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
  }
  
  .integ-code-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .integ-code-header span:nth-child(1) {
    background-color: #ff5f56;
  }
  
  .integ-code-header span:nth-child(2) {
    background-color: #ffbd2e;
  }
  
  .integ-code-header span:nth-child(3) {
    background-color: #27c93f;
  }
  
  .integ-code-header div {
    margin-left: auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
  }
  
  .integ-code-block {
    background: #1e1e1e;
    padding: 16px 20px;
    overflow-x: auto;
    flex-grow: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #d4d4d4;
  }
  
  .integ-code-block code {
    display: block;
    white-space: pre;
    tab-size: 2;
    font-family: 'Consolas', 'Monaco', 'Courier Prime', monospace;
  }
  
  /* Syntax highlighting colors - VS Code-like */
  .integ-code-block .comment {
    color: #6a9955;
    font-style: italic;
  }
  
  .integ-code-block .string {
    color: #ce9178;
  }
  
  .integ-code-block .property {
    color: #9cdcfe;
  }
  
  .integ-code-block .method {
    color: #dcdcaa;
  }
  
  /* Additional syntax highlighting */
  .integ-code-block .keyword {
    color: #569cd6;
  }
  
  .integ-code-block .number {
    color: #b5cea8;
  }
  
  .integ-code-block .operator {
    color: #d4d4d4;
  }
  
  /* ======= Partners Section ======= */
  .integ-partners {
    text-align: center;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    transition-delay: 0.4s;
  }
  
  .integ-partners.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .integ-partners h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
  }
  
  .integ-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .integ-partner {
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }
  
  .integ-partner:hover {
    transform: translateY(-5px);
  }

  .integ-partner img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
  }
  
  /* ======= Responsive Styles ======= */
  @media (max-width: 1024px) {
    .integ-api {
      flex-direction: column;
    }
  
    .integ-api-features {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .integ-apps {
      flex-direction: column;
    }
  
    .integ-apps-image {
      max-width: 100%;
    }

    .integ-apps-content {
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .integ-animation {
      width: 95vmin;
      height: 95vmin;
    }
  
    .brand-logo {
      width: 18%;
      height: 18%;
    }
  }

  @media (max-width: 480px) {
    /* General section adjustments */
    .integ-section {
      padding: 50px 1rem;
    }
    
    .integ-container {
      padding: 0 10px;
    }
    
    /* Header adjustments */
    .integ-header {
      margin-bottom: 40px;
    }
    
    /* Animation section adjustments */
    .integ-animation {
      width: 90vmin;
      height: 90vmin;
      max-width: 280px;
      max-height: 280px;
      margin: 0 auto 30px auto;
    }
    
    .center-logo {
      width: 36%;
      height: 36%;
      font-size: 16px;
    }
    
    .brand-logo {
      width: 22%;
      height: 22%;
    }
    
    .brand-logo img {
      width: 70%;
      height: 70%;
    }
    
    /* Background shapes positioning */
    .integ-shape-1 {
      width: 200px;
      height: 200px;
      left: -80px;
    }
    
    .integ-shape-2 {
      width: 180px;
      height: 180px;
      right: -60px;
    }
    
    /* Content section adjustments */
    .integ-content {
      gap: 50px;
    }
    
    /* Apps section adjustments */
    .integ-apps-title {
      font-size: 22px;
      margin-bottom: 15px;
    }
    
    /* API section adjustments */
    .integ-api {
      margin: 10px 0;
    }
    
    .integ-api-content {
      padding: 30px 20px;
    }
    
    .integ-api-content h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }
    
    .integ-api-features {
      gap: 20px;
      margin-bottom: 20px;
    }
    
    .integ-api-feature {
      gap: 12px;
    }
    
    .integ-api-icon {
      font-size: 18px;
      min-width: 45px;
      height: 45px;
      border-radius: 8px;
    }
    
    .integ-api-feature h4 {
      font-size: 16px;
      margin-bottom: 5px;
    }
    
    .integ-api-feature p {
      font-size: 14px;
    }
    
    /* Code block adjustments */
    .integ-code-header {
      padding: 6px 12px;
    }
    
    .integ-code-header span {
      width: 10px;
      height: 10px;
    }
    
    .integ-code-block {
      padding: 12px 15px;
      font-size: 12px;
    }
    
    /* Partners section adjustments */
    .integ-partners {
      margin-top: 40px;
    }
    
    .integ-partners h3 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    
    .integ-partners-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .integ-partner {
      padding: 12px;
      height: 60px;
    }
    
    .integ-partner img {
      max-width: 80%;
    }
  }
.test-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    overflow: hidden;
}

.test-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.test-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 2rem 2rem;
    z-index: 10;
}

.test-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.test-card {
    flex-shrink: 0;
    width: 320px;
    padding: 1.5rem;
    margin: 0 1rem;
    background: rgba(17, 24, 39, 0.8);
    /* border: 1px solid rgba(16, 185, 129, 0.4); */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    transform: scale(0.9);
    opacity: 0.7;
}

.test-card.active {
    transform: scale(0.95);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    /* border: 1px solid rgba(16, 185, 129, 0.4); */
}

.test-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .test-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    padding: 0;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  .test-user-info {
    display: flex;
    flex-direction: column;
  }
  
  .test-user-info h4 {
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    margin-bottom: 0.25rem;
    color: white;
    line-height: 1.2;
  }
  
  .test-user-info p {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
    padding: 0;
    line-height: 1.2;
  }

.test-rating {
    display: flex;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.test-quote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.test-date {
    font-family: Courier Prime, monospace;
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: right;
}

.test-navigation {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.test-nav-dot {
    width: 50px;
    height: 4px;
    background: rgba(156, 163, 175, 0.3);
    border-radius: 2px;
    margin: 0 0.3rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.test-nav-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #10b981;
    border-radius: 2px;
    transition: width 0.3s linear;
}

.test-nav-dot.active::after {
    animation: test-fillProgress 5s linear forwards;
}

@keyframes test-fillProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.test-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.15;
}

.test-shape-1 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    top: -100px;
    left: -100px;
    animation: test-float 15s infinite alternate ease-in-out;
}

.test-shape-2 {
    width: 300px;
    height: 300px;
    background: #10b981;
    bottom: -50px;
    right: -50px;
    animation: test-float 12s infinite alternate-reverse ease-in-out;
}

.test-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    top: 50%;
    left: 10%;
    animation: test-float 18s infinite alternate ease-in-out;
}

.test-shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(-45deg, #3b82f6, #10b981);
    bottom: 20%;
    right: 15%;
    animation: test-float 20s infinite alternate-reverse ease-in-out;
}

@keyframes test-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(50px, -30px) rotate(10deg);
    }
    100% {
        transform: translate(-30px, 50px) rotate(-10deg);
    }
}

@media (max-width: 768px) {
    .test-card {
        width: 280px;
    }
    
    .test-heading h2 {
        font-size: 2rem;
    }
}

/* Enhanced responsiveness for small screens */
@media (max-width: 480px) {
    .test-container {
        padding: 2rem 0.5rem;
    }
    
    .test-heading {
        margin-bottom: 1.5rem;
    }
    
    .test-heading h2 {
        font-size: 1.5rem;
    }
    
    .test-slider-container {
        padding: 1rem 0.5rem;
    }
    
    .test-card {
        width: 240px;
        margin: 0 0.25rem;
        padding: 1.25rem;
    }
    
    .test-card-header {
        margin-bottom: 0.75rem;
    }
    
    .test-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .test-user-info h4 {
        font-size: 0.95rem;
    }
    
    .test-user-info p {
        font-size: 0.75rem;
    }
    
    .test-quote {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .test-rating {
        margin-bottom: 0.75rem;
    }
    
    .test-date {
        font-size: 0.7rem;
    }
    
    .test-navigation {
        margin-top: 1.5rem;
    }
    
    .test-nav-dot {
        width: 40px;
        height: 3px;
        margin: 0 0.2rem;
    }
    
    /* Adjust shapes for smaller screens */
    .test-shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .test-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .test-shape-3, .test-shape-4 {
        width: 120px;
        height: 120px;
    }
}

/* Extra small screens (under 360px) */
@media (max-width: 359px) {
    .test-card {
        width: 220px;
        padding: 1rem;
    }
    
    .test-avatar {
        width: 35px;
        height: 35px;
    }
    
    .test-user-info h4 {
        font-size: 0.9rem;
    }
    
    .test-user-info p {
        font-size: 0.7rem;
    }
    
    .test-quote {
        font-size: 0.85rem;
    }
    
    .test-nav-dot {
        width: 35px;
    }
}
/* FAQ Section */
.faq-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 2rem;
}

/* Container */
.faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Content */
.faq-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* Image Container */
.faq-image-container {
    flex: 1;
    position: relative;
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-image-container.visible {
    transform: translateX(0);
    opacity: 1;
}

.faq-image {
    width: 100%;
    max-width: 500px;
}

/* FAQ Items */
.faq-items {
    flex: 1;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.faq-items.visible {
    transform: translateX(0);
    opacity: 1;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
}

.faq-plus {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-plus::before,
.faq-plus::after {
    content: '';
    position: absolute;
    background-color: #10b981;
    transition: all 0.3s ease;
}

.faq-plus::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-plus::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #a3a8b8;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .faq-content {
        flex-direction: column;
        gap: 40px;
    }

    .faq-image-container,
    .faq-items {
        width: 100%;
        transform: translateY(50px);
    }

    .faq-image-container.visible,
    .faq-items.visible {
        transform: translateY(0);
    }

    .faq-image {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .faq-question {
        font-size: .9rem;
    }

    .faq-plus {
        width: 16px;
        height: 16px;
    }
}

.merchant-account {
    max-width: 1200px;
    margin: 40px auto;
    padding: 32px;
}
.cont-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cont-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cont-form-container {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.7),
            rgba(16, 185, 129, 0.5),
            rgba(139, 92, 246, 0.6)),
        #111;
    background-blend-mode: overlay;
    color: white;
    z-index: 1500;
    padding: 25px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.cont-form-container.active {
    right: 0;
}

.cont-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cont-close-btn:hover {
    transform: rotate(90deg);
    color: #10b981;
}

.cont-logo {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.cont-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cont-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #10b981;
}

.cont-form-group {
    margin-bottom: 25px;
    position: relative;
}

.cont-form-control {
    font-family: Inter, sans-serif;
    width: 100%;
    padding: 12px 15px;
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cont-form-control:focus {
    border-color: #10b981;
    outline: none;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.cont-form-label {
    font-family: Inter, sans-serif;
    position: absolute;
    left: 15px;
    top: 12px;
    color: #aaa;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 14px;
}

.cont-form-control:focus~.cont-form-label,
.cont-form-control:not(:placeholder-shown)~.cont-form-label {
    top: -20px;
    left: 5px;
    font-size: 14px;
    color: #10b981;
}

.cont-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #10b981;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cont-submit-btn:hover {
    background-color: #0d9668;
    transform: translateY(-2px);
}

.cont-contact-info {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #3d3d3d;
}

.cont-info-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #10b981;
}

.cont-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cont-info-icon {
    width: 40px;
    height: 40px;
    background-color: #252525;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #10b981;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cont-info-item:hover .cont-info-icon {
    background-color: #10b981;
    color: white;
    transform: scale(1.1);
}

.cont-info-text {
    font-family: Inter, sans-serif;
    flex: 1;
}

.cont-info-text a {
    font-family: Inter, sans-serif;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cont-info-text a:hover {
    color: #10b981;
}

.cont-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.cont-shape-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    animation: contact-float 8s infinite alternate ease-in-out;
}

.cont-shape-2 {
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    animation: contact-spin 15s infinite linear;
}

.cont-shape-3 {
    bottom: 10%;
    left: 30%;
    width: 50px;
    height: 50px;
    animation: contact-bounce 6s infinite alternate ease-in-out;
}

.cont-shape img {
    width: 32px;
    height: 32px;
}

.cont-form-container .social-contact-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.2rem;
    border-bottom: 1px solid gray;
    margin-bottom: 1rem;
}

.cont-form-container .social-contact-options button {
    padding: 0.5rem 0.5rem; 
    color:white; 
    border:none; 
    border-radius:5px; 
    cursor:pointer;
    font-size: 0.75rem;
}

.cont-form-container .social-contact-options button.telegram {
    background:#0088cc;
}

.cont-form-container .social-contact-options button.whatsapp {
    background:#25d366;
}

@keyframes contact-float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.2);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes contact-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes contact-bounce {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@media (max-width: 500px) {
    .cont-form-container {
        width: 300px;
        padding: 20px 15px;
    }
    
    .cont-close-btn {
        top: 15px;
        right: 15px;
        font-size: 20px;
    }
    
    .cont-logo {
        margin-bottom: 20px;
    }
    
    .cont-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .cont-form-group {
        margin-bottom: 18px;
    }
    
    .cont-form-control {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .cont-form-label {
        font-size: 13px;
        left: 12px;
        top: 10px;
    }
    
    .cont-form-control:focus~.cont-form-label,
    .cont-form-control:not(:placeholder-shown)~.cont-form-label {
        top: -18px;
        left: 3px;
        font-size: 12px;
    }
    
    .cont-submit-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .cont-contact-info {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .cont-info-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .cont-info-item {
        margin-bottom: 12px;
    }
    
    .cont-info-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
        font-size: 14px;
    }
    
    .cont-info-text {
        font-size: 13px;
    }
    
    .cont-shape-1, .cont-shape-2, .cont-shape-3 {
        transform: scale(0.8);
    }
    
    .cont-shape img {
        width: 24px;
        height: 24px;
    }
}

/* Additional breakpoint for very small screens */
@media (max-width: 350px) {
    .cont-form-container {
        padding: 15px 12px;
    }
    
    .cont-close-btn {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
    
    .cont-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .cont-form-group {
        margin-bottom: 15px;
    }
    
    .cont-form-control {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .cont-form-label {
        font-size: 12px;
        left: 10px;
        top: 8px;
    }
    
    .cont-form-control:focus~.cont-form-label,
    .cont-form-control:not(:placeholder-shown)~.cont-form-label {
        top: -16px;
        font-size: 11px;
    }
    
    .cont-submit-btn {
        padding: 8px;
        font-size: 13px;
    }
    
    .cont-info-title {
        font-size: 15px;
    }
    
    .cont-info-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .cont-info-text {
        font-size: 12px;
    }
}

.footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px 20px 40px;
}

.footer-cta {
  text-align: center;
  margin-bottom: 60px;
}

.footer-cta h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.footer-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #808080;
  margin-bottom: 100px;
  line-height: 1.2;
}

.footer-cta p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  background: #10b981;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-cta-button:hover {
  background: #059669;
  transform: translateY(-2px);
}

.footer-cta-button .fa-solid {
  margin-left: 10px;
}

/* New merchant account section */
.footer-merchant-info {
  text-align: center;
  margin: 50px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-merchant-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #10b981;
}

.footer-merchant-info p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cccccc;
}

.footer-merchant-info a {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-merchant-info a:hover {
  color: #059669;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 150px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #10b981;
  transform: translateY(-2px);
  display: inline-block;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #10b981;
  transform: translateY(-3px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
}

.footer-contact,
.footer-compliance {
  text-align: center;
}

.footer-contact h5,
.footer-compliance h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #10b981;
}

.footer-contact p,
.footer-compliance p {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #059669;
}

.pci-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pci-badge span img {
  width: 240px;
  height: auto;
}

.footer-copyright {
  text-align: center;
  font-size: 14px;
  color: #808080;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .footer-cta h2 {
    font-size: 36px;
  }

  .footer-cta h3 {
    font-size: 36px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-merchant-info {
    margin: 30px 0;
    padding: 100px 20px;
  }

  .footer-merchant-info h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta h3 {
    font-size: 28px;
  }

  .footer-cta p {
    font-size: 16px;
  }

  .footer-cta-button {
    width: fit-content;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-merchant-info {
    padding: 15px;
  }

  .footer-merchant-info h4 {
    font-size: 1.1rem;
  }

  .footer-merchant-info p {
    font-size: 14px;
  }
}

