/* ==========================================================================
   Unicorn Technical Services - Main Stylesheet
   Theme: Industrial Orange & Navy (Wilcon Style)
   ========================================================================== */

:root {
    /* Color Palette */
    --primary-orange: #FF5E14;
    /* Safety Orange - Main Action/Accent */
    --primary-orange-hover: #E04F0E;
    --primary-navy: #111827;
    /* Midnight Navy - Headers/Footer/Bg */
    --secondary-navy: #1F2937;
    /* Lighter Navy - Cards/Secondary Bg */
    --text-dark: #333333;
    /* Main Body Text */
    --text-light: #6B7280;
    /* Muted Text */
    --text-white: #FFFFFF;
    --bg-light: #F3F4F6;
    /* Light Gray Background */
    --border-color: #E5E7EB;

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --section-spacing: 60px;
    /* Reduced from 80px */
}

/* ... existing styles ... */

/* Modern Footer */
.main-footer {
    background: linear-gradient(to bottom, #111827, #0B0F19);
    /* Deep professional gradient */
    color: #9ca3af;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Content Styling */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 40px;
    /* Simply height, auto width */
    width: auto;
    margin-bottom: 25px;
    background: transparent;
    /* Remove white box */
    padding: 0;
    /* Remove padding for perfect alignment */
    border-radius: 0;
    display: inline-block;
    filter: brightness(0) invert(1);
    /* Turns dark logo to white */
    opacity: 0.9;
}

.company-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #d1d5db;
}

.footer-title {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    margin-right: 10px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #d1d5db;
}

.contact-list i {
    color: var(--primary-orange);
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
    /* visual alignment */
}

/* Social Icons - Modern Buttons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

/* Bottom Bar */
.footer-bottom {
    padding: 25px 0;
    font-size: 0.9rem;
    color: #6b7280;
    background-color: #080C14;
    /* Slightly darker than main footer */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal a {
    color: #6b7280;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* Trusted By Section - Reduced Spacing */
.trusted-section {
    padding: 40px 0;
    /* Reduced from 60px */
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    background-color: #080C14;
    /* Match footer bottom to hide any potential gap */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.main-footer {
    margin-top: auto;
    /* Pushes footer to bottom if content is short */
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange {
    color: var(--primary-orange);
}

.text-navy {
    color: var(--primary-navy);
}

.text-white {
    color: var(--text-white);
}

.bg-navy {
    background-color: var(--primary-navy);
}

.bg-orange {
    background-color: var(--primary-orange);
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.text-center {
    text-align: center;
    justify-content: center;
    /* For flex containers */
}

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

.text-right {
    text-align: right;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--text-white);
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
}

.btn-outline-white {
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-outline-white:hover {
    background-color: var(--text-white);
    color: var(--primary-navy);
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-navy);
    /* Lighter Navy for contrast */
    padding: 6px 0;
    /* Compact Height */
    font-size: 0.85rem;
    color: #e5e7eb;
    /* Brighter text */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    margin-left: 20px;
    color: #9ca3af;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-orange);
    transform: translateY(-1px);
}

/* Main Header */
.main-header {
    background-color: var(--primary-navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo img {
    height: 60px;
    /* Slightly larger */
    width: auto;
    background-color: var(--text-white);
    /* Fix for dark header */
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

/* Hover underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-orange);
    transition: 0.3s;
}

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

/* Hero Section (Slider) */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    /* Hide overflow for slider */
}

/* Slider Container */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.5));
    /* Adjusted transparency */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    /* Slide Animation */
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
    transition-delay: 0.3s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h4 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #e5e7eb;
}

.hero-buttons .btn {
    margin-right: 15px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
    /* Allow clicking through empty space */
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    pointer-events: auto;
    /* Re-enable clicks on buttons */
}

.slider-controls button:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background-color: var(--primary-orange);
    transform: scale(1.2);
}

/* Features Overlap Section */
.features-overlap {
    position: relative;
    margin-top: -80px;
    /* Overlap effect */
    z-index: 10;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card {
    padding: 40px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 0 0 60px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
    }
}

.about-image {
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 450px;
    background-color: #ddd;
    /* Replacing with actual image later */
    border-radius: 4px;
    object-fit: cover;
}

.corner-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    z-index: -1;
}

.about-content h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-navy);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    text-align: justify;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary-navy);
}

.check-list i {
    margin-right: 15px;
}

/* Services Section */
.services-overview {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h4 {
    color: var(--primary-orange);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--text-white);
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: 0.3s;
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary-navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e5e7eb;
    /* Light gray for readability on dark bg */
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Projects Section */
.projects-section {
    padding: var(--section-spacing) 0;
    background-color: var(--text-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 300px;
    /* Fixed height for tiles */
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-item:hover .project-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-info h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.project-info p {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 500;
}

.project-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.project-link:hover {
    color: var(--primary-orange);
}

/* HSE Parallax Banner */
.hse-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 80px 0;
    background-image: url('../img/about-team.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.9));
    /* Modern gradient overlay */
    z-index: 1;
}

.hse-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    /* Constrain width for readability */
    margin: 0 auto;
}

.hse-icon-wrapper {
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    background: rgba(255, 94, 20, 0.1);
    /* Subtle orange background */
    border-radius: 50%;
    border: 1px solid rgba(255, 94, 20, 0.3);
    backdrop-filter: blur(5px);
}

.hse-content h4.tracking-wide {
    letter-spacing: 3px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-orange);
    text-transform: uppercase;
}

.hse-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hse-content h2 {
        font-size: 2rem;
    }
}

.hse-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    /* Lighter gray for better contrast */
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.hse-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge-pill {
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism effect */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.badge-pill i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.badge-pill:hover {
    background: rgba(255, 94, 20, 0.15);
    /* Orange tint on hover */
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.2);
}


/* Old footer styles removed, see new styles below */

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contact-info span {
        margin-right: 0;
    }

    .social-links {
        margin-top: 5px;
    }

    /* Header & Nav */
    .navbar {
        height: 60px;
        position: relative;
    }

    .logo img {
        height: 45px;
    }

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        margin-left: 15px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-navy);
        flex-direction: column;
        gap: 0;
        padding: 0;
        height: 0;
        overflow: hidden;
        transition: 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        height: auto;
        padding: 20px 0;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .header-cta {
        display: none;
        /* Hide CTA button in header on mobile to save space */
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        margin-right: 0;
        width: 100%;
        text-align: center;
    }

    /* Features Overlap */
    .features-overlap {
        margin-top: 0;
        /* Remove negative margin on mobile */
        margin-bottom: 40px;
    }

    .features-grid {
        gap: 15px;
        box-shadow: none;
    }

    .feature-card {
        padding: 30px 20px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Footer Mobile */
    .footer-top {
        grid-template-columns: 1fr;
        /* Stack all columns */
        gap: 40px;
        text-align: left;
        /* Keep alignment neat */
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Disable Parallax on Mobile */
    .hse-banner {
        background-attachment: scroll;
        padding: 60px 0;
    }
}

/* Trusted By Section */
.trusted-section {
    padding: 60px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
}

.client-card {
    background: white;
    height: 140px;
    /* Fixed height for uniformity */
    padding: 20px;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image Logos */
.client-logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: grayscale(100%);
    /* Start B&W */
    opacity: 0.8;
    /* Slightly increased opacity for better visibility */
    transition: 0.4s;
}

.client-card:hover .client-logo-img {
    filter: grayscale(0%);
    /* Color on hover */
    opacity: 1;
    transform: scale(1.05);
    /* Slight zoom */
}

/* Fallback Cards (for missing logos) */
.client-card.text-fallback {
    flex-direction: column;
    gap: 10px;
}

.client-card.text-fallback i {
    color: var(--text-light);
    font-size: 2rem;
    transition: 0.3s;
}

.client-card.text-fallback:hover i {
    color: var(--primary-orange);
}

.client-card .client-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

@media (min-width: 901px) {
    .mobile-toggle {
        display: none;
    }
}