/* Minimalist Black and Blue Theme */
:root {
    --primary-blue: #3a7bc8;
    --primary-dark: #121212;
    --secondary-dark: #1e1e1e;
    --text-light: #f8f8f8;
    --text-muted: #aaaaaa;
    --accent-blue: #4a90e2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* General Section Styling */
section {
    padding: 60px 20px;
    background-color: var(--primary-dark);
}

.about-section, .services-section, .clients-section, .contact-section {
    background-color: var(--primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Headings */
.about-heading, .services-heading, .clients-heading, .contact-heading,
.testimonials-heading, .footer-title {
    color: var(--text-light);
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-heading:after, .services-heading:after, .clients-heading:after, 
.contact-heading:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-subheading, .services-subheading, .clients-subheading, .contact-subheading {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Slider Redesign */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: var(--secondary-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-position: center;
    background-size: cover;
    background-color: var(--secondary-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to bottom */
    align-items: center;
    color: var(--text-light);
    text-align: center;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Controls how far up the gradient extends */
    background: linear-gradient(to top, 
                rgba(0,0,0,0.7) 0%, 
                rgba(0,0,0,0.5) 30%,
                rgba(0,0,0,0.3) 50%,
                rgba(0,0,0,0) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-title-container {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 60px; /* Space for navigation dots */
    position: relative;
    z-index: 2; /* Ensure title appears above the shadow */
}




.slide-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-title-container {
        padding: 15px 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
   
    
    .slide-title-container {
        padding: 12px 0;
        margin-bottom: 40px;
    }
}

.slide-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 4px;
    max-width: 80%;
    border-left: 3px solid var(--accent-blue);
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
}

.slide-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.slide-button {
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slide-button:hover {
    background-color: var(--accent-blue);
    transform: none;
}

.nav-button {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-button.active {
    background-color: var(--primary-blue);
}

.arrow {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.arrow:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-image: url('/api/placeholder/600/350');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--secondary-dark);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 400;
    text-decoration: none;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.service-link:hover {
    border-color: var(--primary-blue);
}

.services-cta {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    border-radius: 4px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-heading {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 400;
    padding: 12px 30px;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: var(--accent-blue);
    transform: none;
}

/* Clients Section */
.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 70px;
}

.client-logo {
    flex: 0 0 calc(33.333% - 40px);
    max-width: 180px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.logo-placeholder {
    height: 100px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-name {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonials {
    background-color: var(--secondary-dark);
    padding: 50px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-blue);
}

.author-name {
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 3px;
}

.author-position {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-dot.active {
    background-color: var(--primary-blue);
}

/* Contact Section */
.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.contact-details {
    flex: 1;
    text-align: left;
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 600px;
}



@media (max-width: 768px) {
    .contact-info {
        width: 100%;
    }
    
    .contact-content-centered {
        padding: 0 15px;
    }
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 400;
}

.contact-details p {
    color: var(--text-muted);
    margin-bottom: 5px;
    line-height: 1.5;
}

.social-icon {
    background-color: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: white;
}

.contact-form-container {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-button {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 0.9rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: var(--accent-blue);
    transform: none;
}

/* Footer Section */
.footer {
    background-color: var(--secondary-dark);
    color: var(--text-muted);
    padding: 40px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-columns {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-column {
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-button {
        padding: 10px 20px;
    }
}

/* Heading Alignment Fixes */
.about-heading, .services-heading, .clients-heading, .contact-heading {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-container, .services-container, .clients-container, .contact-container {
    text-align: center;
}

/* Navigation Fixes */
.navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Testimonial Slider Fixes */
.testimonial-slider {
    position: relative;
    height: 280px;
    margin-bottom: 20px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
}

.testimonial.active-testimonial {
    opacity: 1;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Contact Section Fixes */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    width: 100%;
    max-width: 600px;
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 600px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    margin-bottom: 15px;
}

/* Social Icons Fix */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
}

/* Form Field Fixes */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Author Image Fix */
.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333;
    margin-right: 15px;
    background-image: url('/api/placeholder/60/60');
    background-size: cover;
    background-position: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info {
    text-align: left;
}

/* Navigation Bar Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.visible {
    transform: translateY(0);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: transform 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: var(--secondary-dark);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        padding: 0;
        margin: 0;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.social-icon:hover svg {
    transform: scale(1.2);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.3s;
    background-color: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Contact Section Centered Styles */
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 600px;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-details {
    flex: 1;
    text-align: left;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-item {
        max-width: 100%;
        width: 100%;
    }
    
    .contact-content-centered {
        padding: 0 15px;
    }
}

/* Client Logo Image Styles */
.logo-image {
    height: 100px;
    background-color: var(--secondary-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.logo-image:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.logo-image img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain; /* Preserves aspect ratio */
}

.client-logo {
    flex: 0 0 calc(33.333% - 40px);
    max-width: 180px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    text-align: center;
}

@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .client-logo {
        flex: 0 0 100%;
    }
}

/* About Image Styles */
.about-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
        max-width: 100%;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px; /* Adjust based on your logo size */
    width: auto;
    display: block;
}

/* For responsive design */
@media (max-width: 768px) {
    .logo-img {
        height: 30px; /* Slightly smaller on mobile */
    }
}

/* Client Logo Image Styles with White Background */
.logo-image {
    height: 100px;
    background-color: #ffffff; /* White background */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 0; /* Remove padding */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
    overflow: hidden; /* Ensure content stays within bounds */
}

.logo-image:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo-image img {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: contain; /* Ensure logo fits without distortion */
    display: block;
}

.client-logo {
    flex: 0 0 calc(33.333% - 40px);
    max-width: 180px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    text-align: center;
}

.client-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .client-logo {
        flex: 0 0 100%;
    }
}

/* Alternative Full-Width Client Logo Implementation */
.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
}

.logo-image {
    width: 100%;
    height: 120px;
    background-color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.logo-image img {
    max-width: 95%; /* Almost full width */
    max-height: 95%; /* Almost full height */
    object-fit: contain;
    display: block;
}

.client-name {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 5px;
}