.testimonial-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
  }

  .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color, #4f46e5);
    opacity: 0.6;
  }

  .testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .testimonial-author {
    margin-top: auto;
  }

  /* Decorative elements animation */
  @keyframes pulse-slow {
    0%, 100% {
      opacity: 0.05;
    }
    50% {
      opacity: 0.1;
    }
  }

  .testimonials-section .absolute {
    animation: pulse-slow 10s infinite;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .testimonial-card {
      padding: 1.5rem;
    }

    .quote-icon svg {
      height: 3rem;
      width: 3rem;
    }
  }

  @media (max-width: 640px) {
    .testimonials-section h1 {
      font-size: 2rem;
    }
  }

  /* Animation for testimonial cards */
  .testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  /* Color adjustments */
  .text-accent {
    color: var(--accent-color, #4f46e5);
  }

/* Industry showcase tab styling */
  .industry-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-medium: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .industry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Panel styling */
  .industry-panel {
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }

  .industry-panel.active {
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .industry-btn {
      padding: 0.75rem 1.25rem;
      font-size: 0.875rem;
    }

    .industry-tabs {
      justify-content: center;
      gap: 0.5rem;
    }

    .industry-panel .flex {
      flex-direction: column;
    }

    .industry-panel .w-full {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .industry-tabs {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .industry-btn {
      width: calc(50% - 0.5rem);
      text-align: center;
      padding: 0.75rem 0.5rem;
      font-size: 0.75rem;
      margin-bottom: 0.5rem;
    }
  }

  /* Blog section specific styles */
  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.5rem;
  }

  .latest-blogs-section .post-item {
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    border: 1px solid var(--accent-color, #4f46e5);
  }

  .latest-blogs-section .post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .latest-blogs-section .post-tag {
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  /* Typewriter effect with white background */
  .typewriter-effect {
    background-color: white;
    display: inline;
    padding: 0 4px;
    margin: 0 -4px;
    border-radius: 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

/* Add or modify these CSS rules */
  .smart-compute-section h1 {
    position: relative;
    z-index: 20; /* Higher z-index to ensure title stays above cards */
    margin-bottom: 80px; /* Increase bottom margin to create more space */
  }

  .carousel {
    margin-top: 60px; /* Add more top margin to push carousel down */
    position: relative;
    z-index: 10; /* Lower z-index than the title */
  }

  /* Optional: you may also want to adjust the carousel height */
  .carousel-container {
    padding-top: 50px; /* Extra padding at the top of the container */
  }

  /* 3D Carousel Styles Compatible with Tailwind */
  .perspective-1500 {
    perspective: 1500px;
  }

  .transform-style-3d {
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .carousel-card {
    position: absolute;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for proper centering */
  }

  .carousel-card.active {
    z-index: 15;
  }

  .carousel-card.active:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  .carousel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(var(--accent-color-rgb, 79, 70, 229), 0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: 0.6s;
    pointer-events: none;
    border-radius: 20px;
    overflow: hidden;
  }

  .carousel-card.active:hover::before {
    transform: translateX(100%);
  }

  .card-icon {
    height: 80px;
    width: 80px;
    background: linear-gradient(45deg, var(--accent-color, #4f46e5), var(--accent-color-dark, #4338ca));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(20px);
    color: white;
    margin: 0 auto 20px;
  }

  .card-content {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    text-align: center;
  }

  .card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-color, #4f46e5) 0%, transparent 70%);
    opacity: 0;
    top: -50%;
    left: -50%;
    transition: opacity 0.5s ease;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: -1;
  }

  .carousel-card.active:hover .card-glow {
    opacity: 0.1;
  }

  .carousel-card h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateZ(15px);
    color: var(--accent-color, #4f46e5);
  }

  .carousel-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    transform: translateZ(10px);
    color: #4b5563;
  }

  /* Make controls always visible with proper z-index */
  .controls {
    position: relative;
    z-index: 20;
    margin-top: 30px;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .carousel-card {
      width: 250px;
      height: 350px;
      padding: 20px;
    }

    .carousel-card h2 {
      font-size: 1.3rem;
    }

    .card-icon {
      height: 60px;
      width: 60px;
      font-size: 1.2rem;
    }

    .smart-compute-section h1 {
      margin-bottom: 60px;
    }
  }

  @media (max-width: 480px) {
    .carousel-card {
      width: 220px;
      height: 320px;
      padding: 15px;
    }

    .carousel-card h2 {
      font-size: 1.2rem;
    }

    .card-icon {
      height: 50px;
      width: 50px;
      font-size: 1rem;
    }

    .smart-compute-section h1 {
      margin-bottom: 40px;
    }
  }

/* Additional styles for the full-screen canvas background */
  #animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }


  .hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero-section > .mx-auto {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .bg-gray-900 {
    position: relative;
    overflow: hidden;
  }

  /* Make sure the content is above both the canvas and overlay */
  .bg-gray-900 > .mx-auto {
    position: relative;
    z-index: 3;
  }

  .card-item {
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #0003;
    border-radius: 20px;
    padding: 20px;
  }

  .card-item:hover {
    border-color: var(--faster-accent-color);
    box-shadow: inset 0 0 4px 0 var(--faster-accent-color);
  }






  .btn-gloss {
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .btn-gloss:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: all 0.5s ease;
  }

  .btn-gloss:hover:before {
    left: 150%;
  }

  .btn-gloss:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    border-radius: 4px;
    box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .btn-gloss:hover:after {
    opacity: 1;
  }

  /* Logo carousel styles */
  /* .trusted-by-section {
    background-color: #000;
  } */

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

  .logo-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
  }

  .logo-slide {
    flex: 0 0 auto;
    transition: all 0.3s ease;
  }

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

  @media (max-width: 640px) {
    .grid {
      grid-gap: 1rem;
    }

    .card-item {
      padding: 1rem;
    }
  }

  /* Brand color classes */
  .bg-accent {
    background-color: var(--accent-color, #4f46e5);
  }

  .text-accent {
    color: var(--accent-color, #4f46e5);
  }

  .border-accent {
    border-color: var(--accent-color, #4f46e5);
  }

  .hover\:bg-accent:hover {
    background-color: var(--accent-color-dark, #4338ca);
  }

  .faster-accent-color {
    color: var(--accent-color, #4f46e5);
  }

  /* Calendly modal styles */
  .calendly-modal-container {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .calendly-modal-container.active {
    opacity: 1;
    pointer-events: auto;
  }

  .modal-backdrop {
    transition: opacity 0.3s ease;
  }

  .modal-content {
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }

  .calendly-modal-container.active .modal-content {
    transform: scale(1);
  }

  @media (max-width: 640px) {
    .modal-content {
      width: 95%;
      height: 80vh;
    }
  }

  .rounded-sm {
    border-radius: 4px;
  }

  .cloud-native-section {
    position: relative;

  }
    .native-section {
       border-style: solid;
        border-color: var(--faster-accent-color);
        background-color: #fffffff2;
        padding-top: 50px;
        padding-bottom: 50px;
        box-shadow: inset 0 0 10px var(--faster-accent-color);
    }

  .cloud-native-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
  }

  /* Cloud logos container for responsive layout */
  .cloud-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .cloud-logos-container > div {
    flex: 0 0 auto;
    margin: 8px;
    width: calc(33.33% - 16px);
    max-width: 180px;
  }

  @media (max-width: 768px) {
    .cloud-logos-container > div {
      width: calc(50% - 16px);
    }
  }

  @media (max-width: 480px) {
    .cloud-logos-container > div {
      width: calc(50% - 16px);
    }
  }

canvas {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .overlay-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      display: flex;
      align-items: center;
      padding: 0 5%;
    }

    .hero-content {
      max-width: 800px;
      color: white;
    }

    .hero-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      max-width: 600px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .button {
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .primary-button {
      background-color: #0066cc;
      color: white;
    }

    .primary-button:hover {
      background-color: #0055aa;
    }

    .secondary-button {
      background-color: transparent;
      color: white;
      border: 2px solid white;
    }

    .secondary-button:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.25rem;
      }

      .hero-subtitle {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.75rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .button {
        width: 100%;
      }
    }

    :root {
      --accent-color: var(--faster-accent-color, #4f46e5);
      --accent-color-transparent: rgba(var(--accent-color-rgb, 79, 70, 229), 0.4);
      --accent-color-dark: var(--faster-accent-color-dark, #4338ca);
    }
