body { font-family: 'Inter', sans-serif; background-color: #0B0E14; color: white; }
        .teal-purple-gradient { background: linear-gradient(135deg, #48C6B2 0%, #6A4BB1 100%); }
        .teal-purple-gradient {
        background: linear-gradient(135deg, #48C6B2 0%, #6A4BB1 100%);
    }

    /* Ensure the drawer stays on top of everything */
#mobile-menu {
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

/* Optional: Add a nice active state for the links */
.mobile-link:active {
    color: #48C6B2;
}

    /* Professional Gradient Border Hover Effect */
    .service-card-gradient {
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        background: #0B0E14;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .service-card-gradient:hover {
        border-color: transparent;
        background-image: linear-gradient(#0B0E14, #0B0E14), linear-gradient(135deg, #48C6B2 0%, #6A4BB1 100%);
        background-origin: border-box;
        background-clip: content-box, border-box;
        transform: translateY(-12px);
        box-shadow: 0 20px 40px -15px rgba(72, 198, 178, 0.25);
    }

    /* Brand-Matched Gradient Button */
    .btn-gradient {
        background: linear-gradient(135deg, #48C6B2 0%, #6A4BB1 100%);
        color: white;
        transition: all 0.3s ease;
    }

    .btn-gradient:hover {
        filter: brightness(1.2);
        transform: scale(1.03);
    }
      /* Contact Form Styling */
.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #48C6B2;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(72, 198, 178, 0.1);
}

/* Footer link hover */
.footer-link:hover {
    color: #48C6B2;
    padding-left: 5px;
}
.footer-link {
    transition: all 0.3s ease;
}

/* Container mask to make logos 'emerge' from shadows */
.marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.animate-marquee {
    display: flex;
    width: max-content;
    /* Adjust '30s' to change speed (smaller = faster) */
    animation: marquee-scroll 5s linear infinite;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* This moves exactly one full set of logos out of view, 
           bringing the second identical set into its exact start position */
        transform: translateX(-10%);
    }
}

/* Pause on hover for accessibility */
.animate-marquee:hover {
    animation-play-state: paused;
}

.btn-gradient {
    background: linear-gradient(135deg, #48C6B2 0%, #6A4BB1 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(72, 198, 178, 0.5);
    filter: brightness(1.1);
}

.swiper-pagination-bullet {
    background: #48C6B2 !important;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}