/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Hide scrollbars but keep functionality */
::-webkit-scrollbar {
    display: none;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: #fcfcfc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.text-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3c4a3e;
    letter-spacing: -0.5px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #8a9a5b;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #8a9a5b;
}

.signup-btn {
    background-color: #159983;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.signup-btn:hover {
    background-color: #7a8a4b;
}

/* Hero Section */
.hero-section {
    padding: 20px;
    text-align: center;
    position: relative;
    background-color: #f9f7f2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #1E3A8A, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* For Firefox */
    color: transparent;
}


.hero-section p {
    font-size: 1.1rem;
    color: #5a6b5e;
    margin-bottom: 2.5rem;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(138, 154, 91, 0.2);
}

/* Call and WhatsApp buttons */
.call-button, .whatsapp-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-button:hover, .whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-button {
    background-color: #3c4a3e;
    color: #ffffff;
}

.whatsapp-button {
    background-color: #25D366;
    color: #ffffff;
}

/* Carousel Section */
.carousel-section {
    padding: 2rem 0;
    background-color: #ffffff;
}

.carousel-container {
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
    display: flex;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1rem 0;
}

.carousel-container article {
    min-width: 250px;
    padding: 5px;
}

.carousel-item {
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
}

.carousel-container article .img {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-container article .img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-container article .img img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #f9f7f2;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    color: #5a6b5e;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 5px;
        padding: 10px 1%;
    }
    
    .nav-links ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .auth-buttons {
        margin-top: 0.5rem;
        display: none;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .cta-container {
        align-items: center;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

/* Clients Section */
.car-containerr {
    background-color: #f9f7f2;
}

.section-heading {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    color: #3c4a3e;
    letter-spacing: -0.5px;
    background-color: #f9f7f2;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
        padding-bottom: 1.5rem;
        background-color: #f9f7f2;
    }
}