/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden !important;
    padding-top: 0; /* No padding needed for sticky header */
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* Header Styles - handled in header.php */



/* Common Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    height: 100vh;
    overflow: hidden !important;
    background: #e6e6e6ff;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    transition: opacity 2s ease-in-out;
    z-index: 1;
    overflow: hidden !important;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slide backgrounds */
.slide1 {
    background-image: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.4)), 
                      url('img/main_slider2.jpg');
}

.slide2 {
    background-image: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.4)), 
                      url('img/slider_img.avif');
}

.slide3 {
    background-image: linear-gradient(rgba(0, 51, 102, 0.4), rgba(0, 51, 102, 0.4)), 
                      url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* Logo Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.logo:active {
    animation: pulse 0.3s ease;
}

/* Mobile Menu Animation - handled in header.php */

/* Focus States for Accessibility */

/* Print Styles */
@media print {
    .nav-menu a {
        color: #000 !important;
        background: none !important;
    }
}

/* Content overlay */
.slide-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 3;
    position: relative;
    width: 100%;
}

.slide-text {
    color: #fff;
    animation: slideInLeft 1s ease-out;
}

.slide-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text .highlight {
    color: #00bcd4;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}

.slide-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.slide-image {
    text-align: center;
    animation: fadeIn 1s ease-out 0.3s both;
    overflow: hidden;
    max-width: 100%;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.slide-image img:hover {
    transform: scale(1.02);
}

/* Navigation dots */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #00bcd4;
    border-color: #fff;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.nav-arrow:hover {
    background: rgba(0, 188, 212, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* Slide animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Progress bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #00bcd4;
    transition: width 0.1s ease;
    z-index: 10;
}

/* Common Elements */
.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #00bcd4, #0099cc);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #003366;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    border-color: #00bcd4;
    color: #00bcd4;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-rotate {
    opacity: 0;
    transform: rotate(10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-rotate.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Staggered animations */
.scroll-stagger-1 { transition-delay: 0.1s; }
.scroll-stagger-2 { transition-delay: 0.2s; }
.scroll-stagger-3 { transition-delay: 0.3s; }
.scroll-stagger-4 { transition-delay: 0.4s; }
.scroll-stagger-5 { transition-delay: 0.5s; }
.scroll-stagger-6 { transition-delay: 0.6s; }

/* About Section */
.about {
    padding: 3rem 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00bcd4, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

/* Video Section */
.video-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* About image wrapper for responsive video */
.about-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Innovative Solutions Section */
.innovative-solutions {
    padding: 2rem 0;
    background: #fff;
    position: relative;
}

.innovative-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e6ed, transparent);
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-header .badge {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(25, 118, 210, 0.1);
}

.solutions-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.solutions-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bcd4, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 188, 212, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #00bcd4, #0099cc);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.solution-card:hover .solution-icon::before {
    width: 100%;
    height: 100%;
}

.solution-icon svg,
.solution-icon i {
    font-size: 2.2rem;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-card:hover .solution-icon svg,
.solution-card:hover .solution-icon i {
    color: #fff;
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.solution-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e6ed, transparent);
}

.brands-header {
    text-align: center;
    margin-bottom: 4rem;
}

.brands-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    color: #155724;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(21, 87, 36, 0.1);
    letter-spacing: 0.5px;
}

.brands-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Slider Container */
.brands-slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.brands-slider {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.brands-row {
    display: flex;
    animation: slideRight 25s linear infinite;
    will-change: transform;
}

.brands-row:nth-child(2) {
    animation: slideLeft 25s linear infinite;
    animation-delay: -12.5s;
}

.brands-slider:hover .brands-row {
    animation-play-state: paused;
}

@keyframes slideRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Brand Item */
.brand-item {
    flex-shrink: 0;
    width: 240px;
    height: 120px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 188, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 188, 212, 0.3);
    background: #fafbfc;
}

.brand-logo {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%) opacity(0.85);
}

/* Logo image styling for uploaded images */
.logo-image {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%) opacity(0.85);
}

.brand-item:hover .brand-logo,
.brand-item:hover .logo-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Brand logos */
.brand-daikin .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23003d82" font-family="Arial" font-size="24" font-weight="bold">DAIKIN</text></svg>'); }
.brand-danfoss .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23c41e3a" font-family="Arial" font-size="20" font-weight="bold">Danfoss</text></svg>'); }
.brand-deif .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><rect width="200" height="60" fill="%23003d82"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="white" font-family="Arial" font-size="22" font-weight="bold">DEIF</text></svg>'); }
.brand-abb .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23ff6600" font-family="Arial" font-size="26" font-weight="bold">ABB</text></svg>'); }
.brand-siemens .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23009999" font-family="Arial" font-size="20" font-weight="bold">SIEMENS</text></svg>'); }
.brand-schneider .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="25%" dominant-baseline="middle" text-anchor="middle" fill="%2300b04f" font-family="Arial" font-size="16" font-weight="bold">Schneider</text><text x="50%" y="75%" dominant-baseline="middle" text-anchor="middle" fill="%2300b04f" font-family="Arial" font-size="16" font-weight="bold">Electric</text></svg>'); }
.brand-mitsubishi .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23dc143c" font-family="Arial" font-size="16" font-weight="bold">MITSUBISHI</text></svg>'); }
.brand-honeywell .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23002a5c" font-family="Arial" font-size="18" font-weight="bold">Honeywell</text></svg>'); }
.brand-yokogawa .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%230066cc" font-family="Arial" font-size="18" font-weight="bold">YOKOGAWA</text></svg>'); }
.brand-emerson .brand-logo { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%2300a651" font-family="Arial" font-size="20" font-weight="bold">Emerson</text></svg>'); }

/* Stats section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000, #0066cc);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Counter animation */
.counter {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brands-title {
        font-size: 2.5rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solutions-header h2 {
        font-size: 2rem;
    }

    .solution-card {
        padding: 2rem;
        min-height: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-container {
        height: 350px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brands-title {
        font-size: 2rem;
    }
    
    .brand-item {
        width: 200px;
        height: 100px;
    }
    
    .container {
        padding: 0 3%;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 100vh;
        margin-top: 0;
    }

    .slide {
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-content {
        padding: 5rem 1rem 2rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .slide-text {
        padding: 0 0.5rem;
    }

    .slide-text h1 {
        font-size: 1.6rem;
        margin-top: 0;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .slide-image {
        display: none;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .innovative-solutions {
        padding: 4rem 0;
    }

    .solutions-header h2 {
        font-size: 1.8rem;
    }

    .video-container {
        height: 300px;
    }

    .brands-section {
        padding: 4rem 0;
    }

    .brands-title {
        font-size: 1.8rem;
    }

    .brand-item {
        width: 180px;
        height: 90px;
    }
}

/* Fallback duplicate removed - see line 1046+ */
@media (max-width: 950px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .solutions-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .slideshow-container {
        height: 100vh;
        margin-top: 0;
    }

    .slide {
        padding-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 6rem 1rem 2rem;
        max-width: 100%;
    }

    .slide-text {
        padding: 0 1rem;
    }

    .slide-text h1 {
        font-size: 2.2rem;
    }
    
    .slide-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solutions-header h2 {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-container {
        height: 350px;
    }
    
    .brands-title {
        font-size: 2rem;
    }
    
    .brand-item {
        width: 200px;
        height: 100px;
    }
    
    .container {
        padding: 0 3%;
    }
}

/* Duplicate 480px removed - consolidated above at line 895 */