/* General Styles */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #FF1500 #f1f5f9;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    scroll-behavior: smooth;
    direction: ltr;
    text-align: left;
}

.hero {
    background: linear-gradient(135deg, #a80002 50%, #FF1500 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.3' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.container {
    margin: 0px 0px;
    padding: 800 800px;
}
/*
.clients-marquee {
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    animation: marquee 7s linear infinite;
}

.client-logo {
    margin: 0 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
*/
.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: "'";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 120px;
    color: #d30845;
    opacity: 0.2;
    font-family: Arial;
    transform: rotate(15deg);
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    cursor: pointer;
    padding: 20px 0;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #FF1500;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question.active+.faq-answer {
    max-height: 300px;
}

.contact-info-card {
    background: linear-gradient(135deg, #FF1500 40%, #a80002 80%);
    border-radius: 16px;
    color: white;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.logo {
    position: relative;
    display: inline-block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Mobile menu */
.mobile-menu {
    display: block;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 100;
}

.mobile-menu.active {
    display: flex;
}

.view-less {
    display: none;
}

.view-less.active {
    display: block;
}

.scroll-down-indicator {
    position: absolute;
    padding: 15px 15px;
    font-size: 0.9rem;
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}


@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }
}

.imgFooter {
    margin-bottom: 10px;
    width: 150px;
}

.more-projects {
    max-height: 0;
    overflow: hidden;
    transition: max-height 2s ease-in-out;
}

.more-projects.visible {
    max-height: 1000px;
}