@import url(/assets/theme/theme.css);

  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
  }
  
  /* Container */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .hero-badge {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .hero h2 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
  }
  
  .hero h2 span {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-description {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .cta-primary {
    background-color: #3b82f6;
    color: #f5f5f5;
    padding: 0.9rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    position: relative;
    z-index: 10;

  }
  
  .cta-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    position: relative
    z-index: 10;
    
  }
  
  .cta-secondary {
    background-color: rgba(59, 130, 246, 0.1);
    color: #f5f5f5;
    padding: 0.9rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    z-index: 10;
    position: relative;
  }
  
  .cta-secondary:hover {
    background-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    z-index: 10;
    position: relative;
  }
  
  .trusted-by {
    margin-top: auto;
  }
  
  .trusted-by-text {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-bottom: 1rem;
  }
  
  .trusted-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .trusted-logo {
    height: 40px;
    opacity: 0.9;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s ease;
  }
  
  .trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0) brightness(1);
  }
  
  .blob {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.05);
    filter: blur(120px);
    z-index: 1;
  }
  
  .blob-1 {
    top: -300px;
    right: -300px;
  }
  
  .blob-2 {
    bottom: -400px;
    left: -200px;
  }
  
  /* Features section */ 
  .features-section {
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
  }
  
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0px auto 30px;
  }
  
  .section-badge {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .section-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
  }
  
  .section-description {
    font-size: 1.125rem;
    opacity: 0.8;
    line-height: 1.6;
  }
  
  .feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }
  
  .feature-row:last-child {
    margin-bottom: 0;
  }
  
  .feature-row:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .feature-content {
    flex: 1;
    padding: 2rem;
  }
  
  .feature-image {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 400px;
    position: relative;
  }
  
  .feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .feature-description {
    font-size: 1.125rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .feature-list {
    list-style: none;
    margin-bottom: 2rem;
  }
  
  .feature-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .feature-list-item svg {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  
  .feature-cta {
    background-color: rgba(59, 130, 246, 0.1);
    color: #f5f5f5;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .feature-cta:hover {
    background-color: #3b82f6;
  }
  
  .feature-image-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.3) 0%, rgba(18, 18, 18, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  
  .feature-image-content-deploy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background-image: url("/assets/images/One-Click App Deployments.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .feature-image-content-kuber {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background-image: url("/assets/images/Managed Kubernetes.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  
  .image-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .image-description {
    font-size: 0.875rem;
    opacity: 0.8;
  }
  
  .terminal {
    background-color: #181818;
    border-radius: 0.5rem;
    padding: 1rem;
    font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 1rem;
    color: #e2e2e2;
  }
  
  .terminal-line {
    display: flex;
    margin-bottom: 0.5rem;
  }
  
  .prompt {
    color: #3b82f6;
    margin-right: 0.5rem;
  }
  
  .command {
    color: #e2e2e2;
  }
  
  .response {
    color: #a3a3a3;
    padding-left: 1rem;
  }
  
  .blob-5 {
    top: 30%;
    right: -300px;
  }
  
  @media (max-width: 900px) {
    .feature-row, 
    .feature-row:nth-child(even) {
      flex-direction: column;
    }
    
    .feature-content,
    .feature-image {
      width: 100%;
    }
    
    .feature-image {
      margin-bottom: 2rem;
      height: 300px;
    }
    
    .feature-row:nth-child(even) .feature-image {
      order: -1;
    }
    
    .section-title {
      font-size: 2.25rem;
    }
  }
  
  /* Products Section */
  .products-section {
    padding: 40px 5%;
    position: relative;
    overflow: hidden;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
  }
  
  .product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .product-card:hover::before {
    opacity: 1;
  }
  
  .product-icon {
    background-color: rgba(59, 130, 246, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .product-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
  }
  
  .product-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .product-description {
    font-size: 0.9375rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .product-specs {
    margin-bottom: 2rem;
  }
  
  .spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }
  
  .spec-item svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    color: #3b82f6;
    flex-shrink: 0;
  }
  
  .product-cta {
    background-color: rgba(59, 130, 246, 0.1);
    color: #f5f5f5;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .product-cta:hover {
    background-color: #3b82f6;
  }
  
  .price {
    margin-bottom: 2rem;
  }
  
  .price-amount {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .price-period {
    font-size: 0.875rem;
    opacity: 0.6;
  }
  
  .blob-3 {
    top: 20%;
    right: -300px;
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.25rem;
    }
    
    .products-grid {
      grid-template-columns: 1fr;
    }
  }
  /* Testimonial Carousel Section Styles */
.testimonial-carousel-section {
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
  }
  
  .blob-carousel-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.07);
    filter: blur(100px);
    z-index: 0;
    top: -200px;
    left: 5%;
  }
  
  .blob-carousel-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.07);
    filter: blur(100px);
    z-index: 0;
    bottom: -200px;
    right: 10%;
  }
  
  .testimonial-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  /* Navigation Styles */
  .testimonial-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    background-color: rgb(19,18,19);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 8px;
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .testimonial-carousel-nav::-webkit-scrollbar {
    display: none;
  }
  
  .testimonial-carousel-nav-button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50px;
    color: rgba(245, 245, 245, 0.6);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  
  .testimonial-carousel-nav-button.active {
    background-color: #3b82f6;
    color: white;
  }
  
  .testimonial-carousel-nav-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 4px;
  }
  
  /* Content Styles */
  .testimonial-carousel-content {
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }
  
  .testimonial-carousel-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .testimonial-carousel-slide.active {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    opacity: 1;
    position: relative;
  }
  
  .testimonial-carousel-image-container {
    flex: 0 0 48%;
    max-width: 48%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16/9;
  }
  
  .testimonial-carousel-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  
  .testimonial-carousel-image:hover {
    transform: scale(1.02);
  }
  
  .testimonial-carousel-testimonial {
    flex: 0 0 48%;
    max-width: 48%;
    padding: 20px 0;
  }
  
  .testimonial-carousel-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f5f5f5;
  }
  
  .testimonial-carousel-quote p {
    position: relative;
    padding-left: 15px;
    border-left: 3px solid #3b82f6;
  }
  
  .testimonial-carousel-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .testimonial-carousel-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    background-color: #3b82f6;
  }
  
  .testimonial-carousel-author-name {
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 2px;
  }
  
  .testimonial-carousel-author-title {
    color: rgba(245, 245, 245, 0.6);
    font-size: 0.9rem;
  }
  
  .testimonial-carousel-cta {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
  }
  
  .testimonial-carousel-cta:after {
    content: ' →';
    transition: transform 0.2s ease;
    display: inline-block;
    margin-left: 4px;
  }
  
  .testimonial-carousel-cta:hover:after {
    transform: translateX(3px);
  }
  
  /* Responsive styles for carousel */
  @media (max-width: 992px) {
    .testimonial-carousel-content {
      min-height: auto;
    }
    
    .testimonial-carousel-slide.active {
      flex-direction: column;
    }
    
    .testimonial-carousel-image-container,
    .testimonial-carousel-testimonial {
      max-width: 100%;
      flex: 0 0 100%;
    }
    
    .testimonial-carousel-image-container {
      margin-bottom: 30px;
      aspect-ratio: 16/10;
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-carousel-nav {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      padding: 10px;
    }
    
    .testimonial-carousel-nav-button {
      padding: 8px 16px;
      margin: 0 2px;
      font-size: 0.85rem;
    }
    
    .testimonial-carousel-testimonial {
      padding: 15px 0;
    }
    
    .testimonial-carousel-quote {
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .testimonial-carousel-nav {
      margin-bottom: 25px;
      border-radius: 30px;
    }
    
    .testimonial-carousel-nav-button {
      padding: 6px 10px;
      font-size: 0.75rem;
      margin: 2px;
    }
    
    .testimonial-carousel-nav-logo {
      width: 16px;
      height: 16px;
      margin-right: 6px;
    }
    
    .testimonial-carousel-image-container {
      margin-bottom: 20px;
      border-radius: 0.75rem;
    }
    
    .testimonial-carousel-author-image {
      width: 40px;
      height: 40px;
    }
  }
  
  /* Blog Section Styles */
  .blog-section {
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
  }
  
  .blog-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
  }
  
  .blog-card {
    background-color: rgb(19,18,19);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .blog-image {
    width: 100%;
    height: 180px;
    background-color: #181818;
    position: relative;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(59, 130, 246, 0.9);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-date {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.6);
    margin-bottom: 0.75rem;
  }
  
  .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .blog-excerpt {
    font-size: 0.9375rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .blog-link {
    color: #3b82f6;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  
  .blog-link svg {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
  }
  
  .blog-link:hover svg {
    transform: translateX(3px);
  }
  
  .view-all-btn {
    background-color: rgba(59, 130, 246, 0.1);
    color: #f5f5f5;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin: 0 auto;
    z-index: 2;
    position: relative;
  }
  
  .view-all-btn:hover {
    background-color: #3b82f6;
  }
  
  .blob-6 {
    bottom: -200px;
    right: 10%;
  }
  /* Testimonial Section Styles */
.testimonial-section {
    padding: 0px 5%;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-tabs {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .tabs-nav {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .tabs-nav::-webkit-scrollbar {
    display: none;
  }
  
  .tab {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(245, 245, 245, 0.6);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
    background-color: transparent;
    border: none;
  }
  
  .tab button.active {
    color: #3b82f6;
  }
  
  .tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
  }
  
  .testimonial-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  
  .testimonial-header {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: center;
  }
  
  .company-logo {
    width: 120px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-right: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  .company-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .rating {
    display: flex;
  }
  
  .star {
    color: #3b82f6;
    margin-left: 0.25rem;
  }
  
  .testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -1rem;
    top: -1rem;
    color: rgba(59, 130, 246, 0.2);
    font-family: Georgia, serif;
  }
  
  .testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
  }
  
  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3b82f6;
    margin-right: 1rem;
    overflow: hidden;
  }
  
  .author-info {
    flex: 1;
  }
  
  .author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .author-title {
    font-size: 0.875rem;
    opacity: 0.6;
  }
  
  .blob-6 {
    bottom: -200px;
    right: 10%;
  }
  
  .blob-7 {
    top: -200px;
    left: 5%;
  }
  
    @media (min-width: 768px) {
        .testimonial-content {
            grid-template-columns: repeat(2, 1fr);
        }
    }
  
    @media (min-width: 768px) and (max-width: 991px) {
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 992px) and (max-width: 1199px) {
        .blog-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (min-width: 1200px) {
        .blog.grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.25rem;
    }
    
    .blog-grid {
      grid-template-columns: 1fr;
    }
    
    .testimonial-quote {
      font-size: 1.125rem;
    }
  }
  
  /* Tabcontent display for testimonials */
  .tabcontent {
    display: none;
  }
  
  /* Pre-footer CTA Section */
  .pre-footer-cta {
    background-color: rgba(59, 130, 246, 0.05);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
  }
  
  .pre-footer-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .pre-footer-cta__content {
    text-align: center;
    max-width: 800px;
    margin-bottom: 2rem;
  }
  
  .pre-footer-cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 1rem;
  }
  
  .pre-footer-cta__description {
    font-size: 1.125rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 2rem;
  }
  
  .pre-footer-cta__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
  }
  
  .pre-footer-cta__shape {
    position: absolute;
    z-index: 0;
  }
  
  .shape-1 {
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: rgba(59, 130, 246, 0.2);
    opacity: 0.1;
    border-radius: 50%;
  }
  
  .shape-2 {
    bottom: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    background-color: #3b82f6;
    opacity: 0.1;
    border-radius: 50%;
  }
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .hero h2 {
      font-size: 3.5rem;
    }
    
    .hero-description {
      font-size: 1.125rem;
    }
  }
  
  @media (max-width: 768px) {    
    .hero h2 {
      font-size: 2.75rem;
    }
    
    .hero-description {
      font-size: 1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
    
    .cta-primary, .cta-secondary {
      width: 100%;
    }
    
    .trusted-logos {
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    
    .pre-footer-cta__title {
      font-size: 2rem;
    }
    
    .pre-footer-cta__buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .pre-footer-cta__buttons .btn {
      width: 100%;
    }

    .feature-image{
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .hero h2 {
      font-size: 2.25rem;
    }
    
    .section-badge {
      font-size: 0.75rem;
    }
    
    .section-title {
      font-size: 1.75rem;
    }
    
    .section-description {
      font-size: 1rem;
    }
    
    .feature-title {
      font-size: 1.5rem;
    }
    
    .feature-description {
      font-size: 1rem;
    }
    
    .pre-footer-cta__title {
      font-size: 1.75rem;
    }
    
    .pre-footer-cta__description {
      font-size: 1rem;
    }

    .feature-image{
      display: none;
    }
  }
  
  /* Footer styles would go here */