/* Import Neue Machina font - replace with your actual font files */
    /* === Neue Machina Font Faces === */
@font-face {
    font-family: 'Neue Machina';
    src: url('/fonts/NeueMachina-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    }
    
    @font-face {
    font-family: 'Neue Machina';
    src: url('/fonts/NeueMachina-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    }
    
    @font-face {
    font-family: 'Neue Machina';
    src: url('/fonts/NeueMachina-Ultrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    }      
  
  /* === Import fallback font === */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
  
  /* === Base font === */
  * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  /* === Use Neue Machina for headings === */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 800; /* Or 400 or 300 depending on usage */
  }
  
  /* === Utility class for Neue Machina === */
  .font-neue-machina-light {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 300;
  }
  
  .font-neue-machina-regular {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 400;
  }
  
  .font-neue-machina-bold {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 800;
  }  

     /* Zoom in animation */
    @keyframes zoomIn {
        0% {
        transform: scale(0.3);
        opacity: 0;
        }
        100% {
        transform: scale(2);
        opacity: 1;
        }
    }
    
    .animate-zoom-in {
        animation: zoomIn 1.2s ease-out forwards;
    }


    /* Zoom out animation */
    /* @keyframes zoomOut {
        from {
        transform: scale(2);
        opacity: 0;
        }
        to {
        transform: scale(5);
        opacity: 1;
        }
    }
    
    .animate-zoom-out {
        animation: zoomOut 1s ease-out forwards;
    } */

    .bg-img {
        border: none;
        outline: none;
      }
    
      .glow {
        filter: drop-shadow(0 0 60px rgba(245, 178, 27, 0.6));
      }
    
      /* Optional: smoother image rendering */
      .bg-img {
        image-rendering: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
      }

    .preloader-gradient {
        background: linear-gradient(60deg, #7c5b0f 0%, #271C02 50%, #9e7411 100%);
      }

    /* Glow effect for monkey image */
    .glow {
    filter: drop-shadow(0 0 20px #271C05) 
            drop-shadow(0 0 40px #271C05) 
            drop-shadow(0 0 80px #271C05);
    }
    
    /* Background gradient overlay */
    /* .golden-gradient {
    background: radial-gradient(ellipse at center, 
    #271C05 0%, 
        #271C05 25%, 
        #271C05 50%, 
        #271C05 75%,
        #140f02 100%);
    } */
    
    /* Navbar backdrop blur */
    .navbar-blur {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    }
    
    /* Text glow effect */
    .text-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    
    /* Enhanced Mobile menu animations */
    .mobile-menu-enter {
    animation: slideDown 0.3s ease-out forwards;
    }
    
    .mobile-menu-leave {
    animation: slideUp 0.3s ease-in forwards;
    }
    
    @keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 400px;
    }
    }
    
    @keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 400px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    }
    
    /* Mobile menu items stagger animation */
    .mobile-menu-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.3s ease-out forwards;
    }
    
    .mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
    .mobile-menu-item:nth-child(2) { animation-delay: 0.15s; }
    .mobile-menu-item:nth-child(3) { animation-delay: 0.2s; }
    .mobile-menu-item:nth-child(4) { animation-delay: 0.25s; }
    .mobile-menu-item:nth-child(5) { animation-delay: 0.3s; }
    .mobile-menu-item:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    }
    
    /* Button hover effects */
    .btn-hover {
    transition: all 0.3s ease;
    }
    
    .btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile responsive adjustments for background images */
    @media (max-width: 768px) {
    .bg-images-mobile {
        transform: scale(0.8) translateY(30px);
    }
    }
    
    @media (max-width: 480px) {
    .bg-images-mobile {
        transform: scale(0.7) translateY(50px);
    }
    }
    
    /* Logo size adjustment */
    @media (max-width: 768px) {
    .logo-mobile {
        width: 24px !important;
        height: 24px !important;
    }
    }

    /* Floating particles animation */
    .floating-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #F5B21B;
        border-radius: 50%;
        opacity: 0.6;
        animation: float 6s ease-in-out infinite;
    }

    .floating-particle:nth-child(1) {
        top: 20%;
        left: 10%;
    }

    .floating-particle:nth-child(2) {
        top: 60%;
        right: 20%;
    }

    .floating-particle:nth-child(3) {
        bottom: 30%;
        left: 30%;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px) scale(1);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-20px) scale(1.2);
            opacity: 1;
        }
    }

    /* Card hover effects */
    .group:hover .absolute {
        box-shadow: 0 20px 60px rgba(245, 178, 27, 0.2);
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .group {
            transform: none !important;
        }
        
        .group:hover {
            transform: translateY(-2px) !important;
        }
    }

    @layer utilities {
        .shadow-glow-yellow {
          box-shadow: 0 0 15px 4px rgba(234, 179, 8, 0.6);
        }
      }  
      
    @media (max-width: 1023px) {
    .responsive-gap {
        gap: 1rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes floatReverse {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(10px); }
    }
    
    .float-1 { animation: float 6s ease-in-out infinite; }
    .float-2 { animation: floatReverse 8s ease-in-out infinite; animation-delay: -2s; }
    .float-3 { animation: float 7s ease-in-out infinite; animation-delay: -1s; }
    .float-4 { animation: floatReverse 9s ease-in-out infinite; animation-delay: -3s; }
    .float-5 { animation: float 8s ease-in-out infinite; animation-delay: -4s; }
    .float-6 { animation: floatReverse 6s ease-in-out infinite; animation-delay: -1.5s; }

    /* .bg-gradient {
        background: linear-gradient(180deg, #271C02 0%, #130d01 50%, #271C02 100%);
    } */
    
    
    .form-container {
        backdrop-filter: blur(10px);
        background-color: #000000;
        border: 1px solid rgba(245, 178, 27, 0.3);
    }
    
    .input-field {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(245, 178, 27, 0.3);
        transition: all 0.3s ease;
    }
    
    .input-field:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: #F5B21B;
        box-shadow: 0 0 20px rgba(245, 178, 27, 0.3);
        outline: none;
    }
    
    .hire-button {
        background: linear-gradient(45deg, #ff4444, #ff6666);
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    }
    
    .hire-button:hover {
        background: linear-gradient(45deg, #ff3333, #ff5555);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255, 68, 68, 0.6);
    }
    
    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
        z-index: 0;
    }
    
    .floating-dot {
        position: absolute;
        background: rgba(245, 178, 27, 0.6);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }
    
    .pulse-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        border: 2px solid rgba(245, 178, 27, 0.3);
        border-radius: 50%;
        animation: pulse 4s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
        50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
        100% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    }
    
    .text-glow {
        text-shadow: 0 0 20px rgba(245, 178, 27, 0.5);
    }
    
    @media (max-width: 768px) {
        .form-container {
            margin: 1rem;
            padding: 1.5rem;
        }
    }
    
    /* .gradient-bg {
        background: linear-gradient(180deg, #130d01 0%, #F5B21B 50%, #271C02 100%);
    } */
    
    .pricing-card {
        background: rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .popular-badge {
        background: #22c55e;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.8; }
    }
    
    .get-started-btn {
        border: 1px solid #F5B21B;
        transition: all 0.3s ease;
    }
    
    .get-started-btn:hover {
        background: #F5B21B;
        color: #000;
        transform: translateY(-2px);
    }
    
    .check-icon {
        color: #F5B21B;
    }
    
    @media (max-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
        .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }
    
    @media (min-width: 1025px) {
        .pricing-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
    }

    .ripple {
        position: absolute;
        border-radius: 50%;
        background: rgba(245, 178, 27, 0.6);
        transform: scale(0);
        animation: ripple-animation 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple-animation {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    .testimonial-gradient{
        position: relative;
        background: #000;
        /* background-image: url('images/Subtract\ \(1\).png'); */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        min-height: 100vh;
        overflow: hidden;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .quote-text {
        color: #F5B21B;
        font-weight: 600;
        font-size: 1.125rem;
        line-height: 1.5;
    }
    
    .globe-icon {
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }
    
    .testimonial-card:hover .globe-icon {
        opacity: 0.6;
    }
    
    @media (max-width: 640px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }
    
    @media (min-width: 641px) and (max-width: 1024px) {
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
    }
    
    @media (min-width: 1025px) {
        .testimonials-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
    }

    .gradient-container {
        background: linear-gradient(135deg, #FD6F00 0%, #F5B21B 100%);
        position: relative;
        overflow: hidden;
    }
    
    .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(images/monkey\ head\ twitter\ pp\ \(1\).png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.3;
    }
    
    /* .gradient-overlay2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(253, 111, 0, 0.8) 0%, rgba(245, 178, 27, 0.8) 100%);
        z-index: 1;
    } */
    
    .content-wrapper {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cta-button {
        background: rgba(255, 255, 255, 0.95);
        color: #FD6F00;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .cta-button:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .cta-button:active {
        transform: translateY(0);
    }
    
    .image-placeholder {
        background: rgba(255, 255, 255, 0.1);
        border: 2px dashed rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .image-placeholder:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .image-placeholder {
        background: rgba(255, 255, 255, 0.1);
        border: 2px dashed rgba(255, 255, 255, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        text-align: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 200px;
        height: 120px;
        border-radius: 12px;
        z-index: 3;
    }

    .ripple-effect {
        position: absolute;
        border-radius: 50%;
        background: rgba(253, 111, 0, 0.3);
        transform: scale(0);
        animation: ripple-animation 0.6s linear;
        pointer-events: none;
    }

    @keyframes ripple-animation {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    .faq-item {
        transition: all 0.3s ease;
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .faq-answer.active {
        max-height: 200px;
    }
    .faq-toggle {
        transition: transform 0.3s ease;
    }
    .faq-toggle.rotated {
        transform: rotate(180deg);
    }

    .social-icon {
        transition: opacity 0.3s ease;
    }
    .social-icon:hover {
        opacity: 0.7;
    }

    .scroll-animate {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }
      
      .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
      }
      
      /* Fade Up Animation */
    @keyframes fadeUp {
        0% {
          opacity: 0;
          transform: translateY(30px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      .animate-fade-up {
        opacity: 0;
        transform: translateY(30px);
      }
  
      .animate-visible {
        animation: fadeUp 0.8s ease-out forwards;
      }

      @keyframes fade-in-up {
        0% {
          opacity: 0;
          transform: translateY(20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .animate-fade-in-up {
        animation: fade-in-up 0.8s ease-out both;
      }