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

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #87CEEB;
    --accent-color: #2E86AB;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #87CEEB 100%);
    --gradient-secondary: linear-gradient(135deg, #87CEEB 0%, #1e3a5f 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(30, 58, 95, 0.2);
}

.navbar.scrolled {
    background: #1e3a5f;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-link:hover .logo-img {
    transform: scale(1.15);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.logo-img-desktop {
    display: block;
}

.logo-img-mobile {
    display: none;
}

/* Text fallback (shown only if image fails to load) */
.logo-text-fallback {
    display: none;
}

.logo-text-desktop {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.logo-text-mobile {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line-1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-line-2 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary-color);
    opacity: 0.9;
    margin-top: -2px;
}

/* Show text fallback if image doesn't load */
.logo-img:not([src]),
.logo-img[src=""],
.logo-img[src="assets/images/logo.webp"]:not([src*="."]) {
    display: none;
}

.logo-img:not([src]) ~ .logo-text-fallback,
.logo-img[src=""] ~ .logo-text-fallback {
    display: block;
}

.navbar.scrolled .logo-img {
    filter: brightness(1.1);
}

.navbar.scrolled .logo-link:hover .logo-img {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.navbar.scrolled .logo-text-fallback {
    color: var(--white);
}

.navbar.scrolled .logo-text-desktop {
    color: var(--white);
}

.navbar.scrolled .logo-line-1,
.navbar.scrolled .logo-line-2 {
    color: var(--white);
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    outline: none;
    border: none;
}

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

.navbar.scrolled .nav-link {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--white);
    opacity: 0.9;
}

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

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

.navbar.scrolled .nav-link::after {
    background: var(--white);
}

/* Remove any selection boxes or outlines */
.nav-link:focus,
.nav-link:active,
.nav-link:visited {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-link::-moz-focus-inner {
    border: 0;
    outline: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.navbar.scrolled .bar {
    background: var(--secondary-color);
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Fallback Gradient Background */
.hero-gradient-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.hero-gradient-fallback.hidden {
    opacity: 0;
}

.hero-gradient-fallback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 95, 0.3);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hide mobile hero title on desktop */
.hero-title-mobile {
    display: none;
}

.hero-slogan {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--accent-color);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Abstract Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.development-flow {
    position: relative;
    width: 600px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   INDIVIDUAL CONNECTING LINE CONTAINERS
   ======================================== */

/* Base styles for all line containers */
.connection-line-container {
    position: absolute;           /* Positioned absolutely within the development-flow container */
    top: 0;                      /* Start from top of container */
    height: 100%;                /* Full height of container */
    z-index: 1;                  /* Behind the stage elements (z-index: 2) */
    pointer-events: none;        /* Lines don't interfere with mouse interactions */
    animation: chainFloatSVG 8s ease-in-out infinite;  /* Floating animation for entire SVG */
}

/* Individual line container positioning */
.line-1-container {
    left: 12%;                   /* Position for line 1 */
    width: 10%;                  /* Width for line 1 */
    height: 100%;                /* Full height */
}

.line-2-container {
    left: 32%;                   /* Position for line 2 */
    width: 10%;                  /* Width for line 2 */
    height: 100%;                /* Full height */
}

.line-3-container {
    left: 52%;                   /* Position for line 3 */
    width: 10%;                  /* Width for line 3 */
    height: 100%;                /* Full height */
}

.line-4-container {
    left: 72%;                   /* Position for line 4 */
    width: 10%;                  /* Width for line 4 */
    height: 100%;                /* Full height */
}

.line-5-container {
    left: 92%;                   /* Position for line 5 */
    width: 10%;                  /* Width for line 5 */
    height: 100%;                /* Full height */
}

/* Individual connecting line properties */
.connection-line {
    stroke-linecap: round;       /* Rounded line endings */
    stroke-linejoin: round;      /* Rounded line joints */
    opacity: 0.8;                /* Semi-transparent lines */
    animation: lineGlow 3s ease-in-out infinite alternate;  /* Glowing effect */
}

/* Individual line customizations */
.line-1 {
    /* Line 1 specific styles - Green to Light Blue */
    stroke-width: 4;
    opacity: 1;
}

.line-2 {
    /* Line 2 specific styles - Light Blue to Teal */
    stroke-width: 4;
    opacity: 1;
}

.line-3 {
    /* Line 3 specific styles - Teal to Gold */
    stroke-width: 4;
    opacity: 1;
}

.line-4 {
    /* Line 4 specific styles - Gold to Orange */
    stroke-width: 4;
    opacity: 1;
}

.line-5 {
    /* Line 5 specific styles - Orange to Red */
    stroke-width: 4;
    opacity: 1;
}

/* Glowing animation for lines */
@keyframes lineGlow {
    0% { 
        opacity: 0.6;            /* Start with lower opacity */
        filter: brightness(1);   /* Normal brightness */
    }
    100% { 
        opacity: 1;              /* End with full opacity */
        filter: brightness(1.2); /* Slightly brighter */
    }
}

/* SVG container floating animation - moves entire line system up/down */
@keyframes chainFloatSVG {
    0% { transform: translateY(0px); }      /* Start at normal position */
    25% { transform: translateY(-30px); }   /* Move up 30px */
    50% { transform: translateY(-15px); }   /* Move up 15px */
    75% { transform: translateY(-40px); }   /* Move up 40px (highest) */
    100% { transform: translateY(0px); }    /* Return to normal position */
}

.abstract-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
    animation: zigzagFloat 8s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.abstract-element i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Development stages - linear positioning */
.development-stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: chainFloat 8s ease-in-out infinite;
    z-index: 2;
}

.stage-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.stage-description {
    font-size: 0.75rem;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
    max-width: 80px;
    line-height: 1.2;
}

/* Linear positioning for stages - aligned with hero content */
.stage-1 {
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
}

.stage-2 {
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.stage-3 {
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
}

.stage-4 {
    top: 50%;
    left: 60%;
    transform: translateY(-50%);
}

.stage-5 {
    top: 50%;
    left: 80%;
    transform: translateY(-50%);
}

.stage-6 {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

/* Up and down floating animation for entire chain */
@keyframes chainFloat {
    0% { 
        transform: translateY(-50%) translateY(0px);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-50%) translateY(-30px);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-50%) translateY(-15px);
        opacity: 0.7;
    }
    75% { 
        transform: translateY(-50%) translateY(-40px);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-50%) translateY(0px);
        opacity: 0.8;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-text {
    text-align: center;
    max-width: 800px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-content h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Clients Section */
.clients {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.client-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 2rem;
}

.client-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

/* Counting animation styles */
.client-number.animate {
    animation: countUp 0.5s ease-out;
}

@keyframes countUp {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.client-type {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.clients-summary {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
}

.clients-summary p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Client Logos Section */
.client-logos-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(30, 58, 95, 0.1);
    position: relative;
}

.client-logos-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 3rem;
}

/* Carousel Wrapper */
.client-logos-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Carousel Container */
.client-logos-carousel {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.client-logos-carousel::-webkit-scrollbar {
    display: none;
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
}

.client-logos-carousel-wrapper:hover .carousel-nav-btn,
.products-carousel-wrapper:hover .carousel-nav-btn {
    opacity: 1;
    visibility: visible;
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-left {
    left: -30px;
}

.carousel-nav-right {
    right: -30px;
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav-btn i {
    pointer-events: none;
}

.client-logo-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(30, 58, 95, 0.1);
    min-width: 250px;
    max-width: 250px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.client-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.client-logo-image-wrapper {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    filter: grayscale(20%);
}

.client-logo-card:hover .client-logo-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.client-logo-info {
    padding: 1.5rem;
    text-align: center;
    background: var(--white);
    border-top: 1px solid rgba(30, 58, 95, 0.05);
}

.client-logo-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.client-logo-type {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.product-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-models {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.product-content {
    padding: 2rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-category h4 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-category ul {
    list-style: none;
    padding-left: 0;
}

.feature-category li {
    color: var(--text-light);
    margin-bottom: 0.4rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Products Carousel Section */
.products-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.products-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card-new {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(30, 58, 95, 0.1);
    min-width: calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.product-card-new:hover .product-image {
    transform: scale(1.05);
}

.product-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-card-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-card-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-key-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-key-points li {
    color: var(--text-light);
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-key-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.product-learn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-top: auto;
}

.product-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partnership Section */
.partnership {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partnership-benefits h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.partnership-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnership-form h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.partnership-form p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.partnership-form .form-group {
    margin-bottom: 1.5rem;
}

.partnership-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Multi-Step Form Styles */
.form-progress {
    margin-bottom: 2.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 33.33%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 1rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}


.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    border: 3px solid transparent;
}

.step-indicator.active .step-number {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
    transform: scale(1.1);
}

.step-indicator.completed .step-number {
    background: var(--primary-color);
    color: var(--white);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

.step-indicator.active .step-label {
    color: var(--accent-color);
    font-weight: 600;
}

.step-indicator.completed .step-label {
    color: var(--primary-color);
}

.multi-step-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeInSlide 0.4s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    gap: 1rem;
}

.form-navigation .btn {
    min-width: 120px;
}

.form-navigation .btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.form-navigation .btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}


/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-text {
    flex: 1;
    min-width: 200px;
}

.footer-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* LinkedIn specific color on hover */
.social-link:hover .fa-linkedin {
    color: #0077b5;
}

/* Instagram specific color on hover */
.social-link:hover .fa-instagram {
    color: #E4405F;
}

/* Facebook specific color on hover */
.social-link:hover .fa-facebook {
    color: #1877F2;
}

/* Twitter specific color on hover */
.social-link:hover .fa-twitter {
    color: #1DA1F2;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    font-size: 1.8rem;
    position: relative;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 10px;
    z-index: 1001;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 20px;
    border: 5px solid transparent;
    border-top-color: var(--secondary-color);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .nav-menu {
        position: fixed !important;
        left: 0 !important;
        top: 70px !important;
        flex-direction: column !important;
        background-color: var(--white) !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        text-align: center !important;
        transition: transform 0.3s ease !important;
        box-shadow: var(--shadow-light) !important;
        padding: 2rem 0 !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
        list-style: none !important;
        gap: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(-100%) !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    .nav-menu li {
        margin: 0.3rem 0;
        width: 100%;
    }

    .nav-link {
        color: var(--accent-color) !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        padding: 0.8rem 1.5rem !important;
        display: block !important;
        width: 100% !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border-radius: 5px !important;
        margin: 0.2rem 0 !important;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
        background-color: rgba(30, 58, 95, 0.15) !important;
        transform: translateX(5px) !important;
    }

    .nav-link.active {
        color: var(--primary-color) !important;
        background-color: rgba(30, 58, 95, 0.2) !important;
        font-weight: 600 !important;
    }

    .nav-link:active {
        background-color: rgba(30, 58, 95, 0.3) !important;
        transform: scale(0.98) !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-text {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Section - Mobile */
    .contact-item {
        gap: 1rem;
        padding: 1.25rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Products Carousel - Tablet */
    .products-carousel-wrapper {
        padding: 0 40px;
    }

    .product-card-new {
        min-width: calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }

    .product-image-wrapper {
        height: 240px;
    }

    .product-card-name {
        font-size: 1.6rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: stretch;
    }
    
    .client-card {
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partnership-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partnership-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partnership-form-container {
        padding: 2rem;
    }

    .development-flow {
        width: 500px;
        height: 150px;
    }

    .stage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stage-description {
        font-size: 0.7rem;
        max-width: 70px;
    }

    .connection-line {
        stroke-width: 2;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Footer - Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navigation Bar - Mobile */
    .logo-img-desktop {
        display: none;
    }
    
    .logo-img-mobile {
        display: block;
        height: 40px;
        max-width: 150px;
    }
    
    .logo-text-desktop {
        display: none;
    }
    
    .logo-text-mobile {
        display: flex;
    }
    
    .logo-line-1 {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .logo-line-2 {
        font-size: 0.8rem;
        font-weight: 400;
    }
    
    /* Hero Section - Mobile */
    .hero-title-desktop {
        display: none;
    }
    
    .hero-title-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-company-line-1 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.2rem;
    }
    
    .hero-company-line-2 {
        font-size: 1.1rem;
        font-weight: 400;
        color: var(--white);
        opacity: 0.9;
    }
    
    .hero-slogan {
        font-size: 1rem;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Hide Development Flow on Mobile */
    .development-flow {
        display: none;
    }
    
    /* Center align all sections on mobile */
    .section-header {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* About Section - Mobile */
    .about-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    /* Clients Section - Mobile */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: stretch;
    }
    
    .client-card {
        text-align: center;
        width: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Client Logos Section - Mobile */
    .client-logos-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .client-logos-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .client-logos-carousel-wrapper {
        padding: 0 40px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav-left {
        left: -10px;
    }
    
    .carousel-nav-right {
        right: -10px;
    }
    
    .client-logos-carousel {
        gap: 1.5rem;
    }
    
    .client-logo-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .client-logo-image-wrapper {
        height: 150px;
    }
    
    .client-logo-info {
        padding: 1rem;
    }
    
    .client-logo-name {
        font-size: 1rem;
    }
    
    .client-logo-type {
        font-size: 0.85rem;
    }
    
    /* Products Section - Mobile */
    .products-grid {
        text-align: center;
    }
    
    .product-card {
        text-align: center;
    }

    /* Products Carousel - Mobile */
    .products-carousel-wrapper {
        padding: 0 20px;
    }

    .product-card-new {
        min-width: 85%;
        max-width: 85%;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-card-content {
        padding: 1.5rem;
    }

    .product-card-name {
        font-size: 1.4rem;
    }

    .product-card-subtitle {
        font-size: 0.9rem;
    }

    .product-card-description {
        font-size: 0.95rem;
    }

    .product-learn-more {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Services Section - Mobile */
    .services-grid {
        text-align: center;
    }
    
    .service-card {
        text-align: center;
    }
    
    /* Partnership Section - Mobile */
    .partnership-content {
        text-align: center;
    }
    
    .partnership-benefits {
        text-align: center;
    }
    
    .benefits-list {
        text-align: left;
    }
    
    /* Multi-Step Form - Mobile */
    .form-progress {
        margin-bottom: 2rem;
    }
    
    .progress-bar {
        margin-bottom: 1.5rem;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .progress-steps {
        gap: 0.5rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .partnership-form-container {
        padding: 2rem 1.5rem;
    }
    
    .multi-step-form {
        min-height: 350px;
    }
    
    /* Contact Section - Mobile */
    .contact-content {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    /* Footer - Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    /* WhatsApp Button - Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-img-mobile {
        height: 35px;
        max-width: 120px;
    }
    
    .logo-line-1 {
        font-size: 1rem;
    }
    
    .logo-line-2 {
        font-size: 0.7rem;
    }
    
    .hero-slogan {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Products Carousel - Small Mobile */
    .products-carousel-wrapper {
        padding: 0 15px;
    }

    .product-card-new {
        min-width: 90%;
        max-width: 90%;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-card-content {
        padding: 1.25rem;
    }

    .product-card-name {
        font-size: 1.3rem;
    }
    
    /* Clients Section - Small Mobile */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .client-card {
        min-height: 180px;
        padding: 1.5rem;
    }
    
    .client-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .client-number {
        font-size: 2rem;
    }
    
    .client-type {
        font-size: 1rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        max-width: 250px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .whatsapp-tooltip {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Client Logos Section - Small Mobile */
    .client-logos-carousel-wrapper {
        padding: 0 35px;
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-nav-left {
        left: -5px;
    }
    
    .carousel-nav-right {
        right: -5px;
    }
    
    .client-logos-carousel {
        gap: 1rem;
    }
    
    .client-logo-card {
        min-width: 180px;
        max-width: 180px;
    }
    
    .client-logo-image-wrapper {
        height: 120px;
    }
    
    .client-logo-info {
        padding: 0.8rem;
    }
    
    .client-logo-name {
        font-size: 0.9rem;
    }
    
    .client-logo-type {
        font-size: 0.75rem;
    }

    /* Contact Section - Small Mobile */
    .contact-item {
        gap: 0.875rem;
        padding: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
