/* Banner Styles - New */
.banner-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 80vh;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

/* Base Styles - Existing */
#about {
    background-color: var(--secondary-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Services Section - Existing */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--secondary-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 80px;
    height: 80px;
    background-color: var(--accent-green);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.service-title {
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Banner Media Query - New */
    .banner-desktop {
        display: none;
    }
    
    .banner-mobile {
        display: block;
        height: 100%;
    }

    /* Existing Mobile Styles */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .service-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .company-name {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .tagline {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
}