/* Base Styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
html, body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Custom Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatSlow {

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

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

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(15, 118, 110, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(15, 118, 110, 0.6);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
    }

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 4s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}


.animate-scroll-up {
    animation: scroll-up 25s linear infinite;
}

.animate-scroll-down {
    animation: scroll-down 25s linear infinite;
}

.testimonial-column:hover {
    animation-play-state: paused;
}

/* Gradient Backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 50%, #0c1821 100%);
}

.card-gradient {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Counter Animation */
.counter-value {
    display: inline-block;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); */
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Job Card Hover */
.job-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15);
}

/* Process Card */
.process-card {
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: scale(1.02);
}

.process-card.active {
    border-color: #0f766e;
    background: linear-gradient(145deg, #f0fdfa 0%, #ffffff 100%);
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Responsive Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Stats Counter Box */
.stats-box {
    background: linear-gradient(309deg, #134e4a 0%, #0f766e 100%);
}

/* Decorative Elements */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
    pointer-events: none;
}

/* Input Focus */
input:focus,
textarea:focus {
    outline: none;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* Marquee Container */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    will-change: transform;
}

.marquee-inner img {
    height: 32px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-inner img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
