* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff9201;
    --primary-dark: #e08201;
    --secondary: #00b1e1;
    --accent: #93a605;
    --light: #F7FFF7;
    --text-light: #6C757D;
    --accent-orange: #ff9201;
    --accent-blue: #00b1e1;
    --text-primary: #333;
    --text-secondary: #6C757D;
    --border-color: rgba(0, 0, 0, 0.1);
    --surface-color: #f4f4f4;
    --color-1: #ff9201;
    --color-2: #00b1e1;
    --color-3: #93a605;
    --color-4: #c93939;
    --color-5: #ff4b00;
    --color-6: #895193;
    --gradient-1: linear-gradient(135deg, #ff9201 0%, #ff4b00 100%);
    --gradient-2: linear-gradient(135deg, #00b1e1 0%, #895193 100%);
    --gradient-3: linear-gradient(135deg, #93a605 0%, #00b1e1 100%);
    --gradient-4: linear-gradient(135deg, #c93939 0%, #ff4b00 100%);
    --gradient-5: linear-gradient(135deg, #895193 0%, #00b1e1 100%);
    
    /* Light mode colors */
    --bg-color: #ffffff;
    --text-color: #333;
    --card-bg: rgba(255,255,255,0.8);
    --card-border: rgba(255,255,255,0.6);
    --section-bg-1: linear-gradient(135deg, rgba(147, 166, 5, 0.1) 0%, rgba(0, 177, 225, 0.1) 100%);
    --section-bg-2: linear-gradient(135deg, rgba(255, 146, 1, 0.05) 0%, rgba(201, 57, 57, 0.05) 100%);
    --section-bg-3: linear-gradient(135deg, rgba(0, 177, 225, 0.05) 0%, rgba(137, 81, 147, 0.05) 100%);
    --section-bg-4: linear-gradient(135deg, rgba(255, 75, 0, 0.05) 0%, rgba(147, 166, 5, 0.05) 100%);
    --section-bg-5: linear-gradient(135deg, rgba(147, 166, 5, 0.05) 0%, rgba(255, 75, 0, 0.05) 100%);
    --scroll-bg: rgba(255,255,255,0.6);
    --shadow-color: rgba(0,0,0,0.1);
}

/* Dark mode variables */
.dark-mode {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --card-bg: rgba(30, 30, 30, 0.8);
    --card-border: rgba(255,255,255,0.1);
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --surface-color: #1a1a1a;
    --section-bg-1: linear-gradient(135deg, rgba(147, 166, 5, 0.15) 0%, rgba(0, 177, 225, 0.15) 100%);
    --section-bg-2: linear-gradient(135deg, rgba(255, 146, 1, 0.1) 0%, rgba(201, 57, 57, 0.1) 100%);
    --section-bg-3: linear-gradient(135deg, rgba(0, 177, 225, 0.1) 0%, rgba(137, 81, 147, 0.1) 100%);
    --section-bg-4: linear-gradient(135deg, rgba(255, 75, 0, 0.1) 0%, rgba(147, 166, 5, 0.1) 100%);
    --section-bg-5: linear-gradient(135deg, rgba(147, 166, 5, 0.1) 0%, rgba(255, 75, 0, 0.1) 100%);
    --scroll-bg: rgba(30, 30, 30, 0.8);
    --shadow-color: rgba(0,0,0,0.3);
    --text-light: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--bg-color);
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #ff9201;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e08201;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px var(--shadow-color);
    border-bottom: 1px solid var(--card-border);
}

.navbar.scrolled {
    background: var(--bg-color);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 200px;
}

.logo-image-header {
    max-height: 70px;
    max-width: 240px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-image-header:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Dark mode support for logo */
.dark-mode .logo-image-header {
 filter: none; 
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Dark mode toggle */
.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    background: rgba(var(--primary), 0.1);
    transform: rotate(15deg);
}

.dark-mode .fa-sun {
    display: none;
}

.dark-mode .fa-moon {
    display: inline-block;
}

.fa-sun {
    display: inline-block;
}

.fa-moon {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255,255,255,0.3) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255,255,255,0.2) 0%, transparent 45%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.15) 0%, transparent 35%),
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 40%),
        linear-gradient(45deg, #ff9201 0%, #ffb347 25%, #ff9201 50%, #ffb347 75%, #ff9201 100%);
    padding: 0 2rem;
    margin-top: 70px;
    overflow: hidden;
}

/* Dark mode hero section */
.dark-mode .hero {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,146,1,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,177,225,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,146,1,0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,146,1,0.12) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,177,225,0.12) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

/* Dark mode hero glows */
.dark-mode .hero::before {
    background: radial-gradient(circle, rgba(255,146,1,0.25) 0%, rgba(255,146,1,0.1) 40%, transparent 70%);
    animation: float 15s infinite ease-in-out, pulse-orange 4s infinite ease-in-out;
}

.dark-mode .hero::after {
    background: radial-gradient(circle, rgba(0,177,225,0.25) 0%, rgba(0,177,225,0.1) 40%, transparent 70%);
    animation: float 20s infinite ease-in-out reverse, pulse-blue 4s infinite ease-in-out 2s;
}

@keyframes pulse-orange {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes pulse-blue {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.svg-float {
    position: absolute;
    opacity: 0.7;
    animation: float-shapes 15s infinite linear;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
    will-change: transform;
    transform: translateZ(0);
}

/* Light mode SVG styling with exact #00B2E2 color */
.svg-float-1 img, .svg-float-2 img, .svg-float-3 img, .svg-float-4 img, .svg-float-5 img, .svg-float-6 img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(4000%) hue-rotate(180deg) brightness(110%) contrast(100%) drop-shadow(0 0 8px #00B2E2) drop-shadow(0 0 4px #00B2E2);
}

.svg-float svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svg-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    loading: lazy;
}

/* Dark mode SVG styling with company colors */
.dark-mode .svg-float {
    opacity: 0.7;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.dark-mode .svg-float-1 img, .dark-mode .svg-float-3 img, .dark-mode .svg-float-5 img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(100%) saturate(3500%) hue-rotate(5deg) brightness(130%) contrast(130%) drop-shadow(0 0 20px #ff9201) drop-shadow(0 4px 8px rgba(255,146,1,0.4));
}

.dark-mode .svg-float-2 img, .dark-mode .svg-float-4 img, .dark-mode .svg-float-6 img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(4000%) hue-rotate(180deg) brightness(130%) contrast(130%) drop-shadow(0 0 20px #00b1e1) drop-shadow(0 4px 8px rgba(0,177,225,0.4));
}

.svg-float-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.svg-float-2 {
    width: 100px;
    height: 100px;
    top: 65%;
    right: 12%;
    animation-delay: -5s;
}

.svg-float-3 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 15%;
    animation-delay: -10s;
}

.svg-float-4 {
    width: 110px;
    height: 110px;
    top: 35%;
    right: 18%;
    animation-delay: -7s;
}

.svg-float-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 45%;
    animation-delay: -3s;
}

.svg-float-6 {
    width: 95px;
    height: 95px;
    bottom: 15%;
    right: 45%;
    animation-delay: -8s;
}

@keyframes float-shapes {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-subtitle {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1.2s ease;
    font-weight: 400;
}

/* Dark mode hero text */
.dark-mode .hero-subtitle {
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dark-mode .hero h1 {
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dark-mode .hero-description {
    color: rgba(255,255,255,0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--color-1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff9201;
    transform: translateY(-5px);
}

/* Dark mode button styles */
.dark-mode .btn-secondary {
    color: white;
    border: 2px solid white;
}

.dark-mode .btn-secondary:hover {
    background: white;
    color: var(--color-1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partners Section */
.partners {
    padding: 100px 2rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,146,1,0.08) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: partners-pulse 8s infinite ease-in-out;
}

@keyframes partners-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.partners-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.partners-floating-shape {
    position: absolute;
    opacity: 0.15;
    animation: partners-float 15s infinite ease-in-out;
}

.partners-shape-1 {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.partners-shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    top: 70%;
    right: 10%;
    animation-delay: -5s;
}

.partners-shape-3 {
    width: 120px;
    height: 120px;
    background: var(--gradient-3);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 15%;
    left: 8%;
    animation-delay: -10s;
}

.partners-shape-4 {
    width: 90px;
    height: 90px;
    background: var(--gradient-4);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 50%;
    right: 5%;
    animation-delay: -3s;
}

@keyframes partners-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translate(-30px, -20px) rotate(270deg);
        opacity: 0.2;
    }
}

.partners-showcase {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns */
    gap: 2.5rem;
    margin-top: 3rem;
    justify-items: center; /* Center items within their grid cells */
}

.partner-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.partner-card:hover::before {
    opacity: 0.2;
}

.partner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,146,1,0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.partner-card:hover .partner-glow {
    width: 300px;
    height: 300px;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px var(--shadow-color);
}

.partner-card img {
    max-width: 88%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    animation: partner-float 3s ease-in-out infinite;
}

.partner-card:nth-child(1) img { animation-delay: 0s; }
.partner-card:nth-child(2) img { animation-delay: -0.5s; }
.partner-card:nth-child(3) img { animation-delay: -1s; }
.partner-card:nth-child(4) img { animation-delay: -1.5s; }
.partner-card:nth-child(5) img { animation-delay: -2s; }
.partner-card:nth-child(6) img { animation-delay: -2.5s; }

@keyframes partner-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.partner-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 100px 2rem;
    background: var(--section-bg-1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,146,1,0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float-glow 18s infinite ease-in-out;
}

.about::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(137,81,147,0.15) 0%, transparent 70%);
    bottom: -175px;
    right: -175px;
    border-radius: 50%;
    animation: float-glow 22s infinite ease-in-out reverse;
}

.about-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.about-floating-shape {
    position: absolute;
    opacity: 0.4;
    animation: about-float 12s infinite ease-in-out;
}

.about-shape-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.about-shape-2 {
    width: 60px;
    height: 60px;
    background: var(--gradient-4);
    border-radius: 50%;
    top: 70%;
    left: 10%;
    animation-delay: -3s;
    animation-duration: 16s;
}

.about-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-5);
    border-radius: 20% 80% 80% 20% / 20% 20% 80% 80%;
    bottom: 30%;
    right: 8%;
    animation-delay: -6s;
    animation-duration: 13s;
}

.about-shape-4 {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 40%;
    right: 15%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.about-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-1);
    border-radius: 50%;
    opacity: 0.6;
    animation: about-particle-float 10s infinite linear;
}

.about-particle:nth-child(1) { left: 15%; animation-delay: 0s; background: var(--color-1); }
.about-particle:nth-child(2) { left: 25%; animation-delay: -2s; background: var(--color-2); }
.about-particle:nth-child(3) { left: 35%; animation-delay: -4s; background: var(--color-3); }
.about-particle:nth-child(4) { left: 45%; animation-delay: -6s; background: var(--color-4); }
.about-particle:nth-child(5) { left: 55%; animation-delay: -8s; background: var(--color-5); }
.about-particle:nth-child(6) { left: 65%; animation-delay: -1s; background: var(--color-6); }

@keyframes float-glow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.25;
    }
    66% {
        transform: translate(-30px, 40px) scale(0.8);
        opacity: 0.1;
    }
}

@keyframes about-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) rotate(120deg) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translate(-25px, 35px) rotate(240deg) scale(0.7);
        opacity: 0.3;
    }
    75% {
        transform: translate(-35px, -25px) rotate(300deg) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes about-particle-float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    z-index: 1;
    position: relative;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: underline-grow 2s ease-out;
}

@keyframes underline-grow {
    0% { width: 0; }
    100% { width: 60px; }
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.about-text p:hover {
    border-left-color: var(--color-1);
    padding-left: 1.5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.vision-card, .mission-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vision-card:hover::before {
    opacity: 0.1;
}

.mission-card::before {
    background: var(--gradient-2);
}

.mission-card:hover::before {
    opacity: 0.1;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.vision-card h3, .mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
}

.vision-card h3 i, .mission-card h3 i {
    color: var(--color-1);
    font-size: 1.5rem;
    animation: icon-pulse 2s infinite ease-in-out;
}

.mission-card h3 i {
    color: var(--color-2);
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.about-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    display: flex;
    justify-content: center;
    align-items: center;
    animation: logo-rotate 25s linear infinite;
    box-shadow: 
        0 0 30px rgba(255,146,1,0.2),
        0 0 60px rgba(0,177,225,0.1),
        inset 0 0 30px rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
}

.logo-image {
    width: 75%;
    height: 75%;
    object-fit: contain;
    border-radius: 50%;
    animation: logo-counter-rotate 25s linear infinite reverse;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.logo-placeholder {
    width: 75%;
    height: 75%;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
    font-weight: 900;
    animation: logo-counter-rotate 25s linear infinite reverse;
    box-shadow: 0 15px 40px rgba(255,146,1,0.3);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 60px rgba(255,146,1,0.4);
}

.logo-orbits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit {
    position: absolute;
    border: 2px solid rgba(255,146,1,0.3);
    border-radius: 50%;
    animation: orbit-rotate linear infinite reverse;
}

.orbit-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-duration: 30s;
    border-style: dashed;
}

.orbit-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-duration: 40s;
    border-color: rgba(0,177,225,0.3);
    border-style: dotted;
}

.orbit-3 {
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    animation-duration: 50s;
    border-color: rgba(147,166,5,0.3);
    border-style: dashed;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-2);
    border-radius: 50%;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--color-2);
    animation: dot-pulse 3s infinite ease-in-out;
}

.orbit-2 .orbit-dot {
    background: var(--color-1);
    box-shadow: 0 0 10px var(--color-1);
    animation-delay: -1s;
}

.orbit-3 .orbit-dot {
    background: var(--color-3);
    box-shadow: 0 0 10px var(--color-3);
    animation-delay: -2s;
}

@keyframes logo-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logo-counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes dot-pulse {
    0%, 100% { 
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-50%) scale(1.5);
        opacity: 0.7;
    }
}

/* Services Section */
.services {
    padding: 100px 2rem;
    background: var(--section-bg-2);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(137,81,147,0.1) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
}

.services-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    opacity: 0.6;
    animation: float-services 12s infinite ease-in-out;
}

.floating-circle {
    border-radius: 50%;
}

.floating-square {
    border-radius: 15%;
    transform: rotate(45deg);
}

.floating-triangle {
    width: 0;
    height: 0;
    border-style: solid;
}

.floating-element-1 {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.floating-element-2 {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    top: 60%;
    right: 8%;
    animation-delay: -3s;
    animation-duration: 14s;
}

.floating-element-3 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--color-3);
    top: 35%;
    left: 15%;
    animation-delay: -6s;
    animation-duration: 16s;
}

.floating-element-4 {
    width: 50px;
    height: 50px;
    background: var(--gradient-4);
    bottom: 20%;
    right: 15%;
    animation-delay: -9s;
    animation-duration: 11s;
}

.floating-element-5 {
    width: 35px;
    height: 35px;
    background: var(--gradient-5);
    top: 25%;
    right: 5%;
    animation-delay: -2s;
    animation-duration: 13s;
}

.floating-element-6 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--color-4);
    bottom: 35%;
    left: 8%;
    animation-delay: -5s;
    animation-duration: 15s;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-1);
    border-radius: 50%;
    opacity: 0.7;
    animation: particle-float 8s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -1s; }
.particle:nth-child(3) { left: 30%; animation-delay: -2s; }
.particle:nth-child(4) { left: 40%; animation-delay: -3s; }
.particle:nth-child(5) { left: 50%; animation-delay: -4s; }
.particle:nth-child(6) { left: 60%; animation-delay: -5s; }
.particle:nth-child(7) { left: 70%; animation-delay: -6s; }
.particle:nth-child(8) { left: 80%; animation-delay: -7s; }
.particle:nth-child(9) { left: 90%; animation-delay: -8s; }

.particle:nth-child(odd) { background: var(--color-2); }
.particle:nth-child(3n) { background: var(--color-3); }

@keyframes float-services {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(-40px, -20px) rotate(270deg) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(180deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-1);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 800;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* Services Packages Section */
.services-packages {
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: var(--card-bg);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.services-packages::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.05;
}

.packages-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.packages-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,146,1,0.1), transparent);
    transition: left 0.6s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--color-1);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.2) rotate(10deg);
}

.package-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.package-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.packages-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.packages-cta .btn {
    min-width: 200px;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 2rem;
    background: var(--section-bg-3);
    position: relative;
    overflow: hidden;
}

.portfolio-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.portfolio-floating-shape {
    position: absolute;
    opacity: 0.4;
    animation: portfolio-float 15s infinite ease-in-out;
}

.portfolio-shape-1 {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.portfolio-shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    top: 70%;
    right: 15%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.portfolio-shape-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 25%;
    left: 5%;
    animation-delay: -8s;
    animation-duration: 14s;
}

.portfolio-shape-4 {
    width: 60px;
    height: 60px;
    background: var(--gradient-4);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 40%;
    right: 5%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.portfolio-shape-5 {
    width: 90px;
    height: 90px;
    background: var(--gradient-5);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 20%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 13s;
}

.portfolio-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.portfolio-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), transparent);
    animation: orb-float 10s infinite ease-in-out;
}

.portfolio-orb-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, rgba(255,146,1,0.2), transparent);
    top: 15%;
    right: 10%;
    animation-delay: -3s;
}

.portfolio-orb-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 30% 30%, rgba(0,177,225,0.2), transparent);
    bottom: 20%;
    right: 30%;
    animation-delay: -7s;
}

.portfolio-orb-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(147,166,5,0.2), transparent);
    top: 50%;
    left: 5%;
    animation-delay: -1s;
}

@keyframes portfolio-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(40px, -30px) rotate(120deg) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 40px) rotate(240deg) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-20px, -40px) rotate(300deg) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(30px, -30px) scale(1.3);
        opacity: 0.8;
    }
}

.portfolio-showcase {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.portfolio-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.preview-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preview-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--color-1), transparent);
    animation: preview-border 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-item:hover::before {
    opacity: 0.3;
}

.preview-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px var(--shadow-color);
}

@keyframes preview-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.preview-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.preview-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.portfolio-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-cta:hover::before {
    opacity: 0.1;
}

.portfolio-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.portfolio-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-portfolio {
    background: var(--gradient-1);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 146, 1, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-portfolio:hover::before {
    left: 100%;
}

.btn-portfolio:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 146, 1, 0.4);
}

.btn-portfolio i {
    transition: transform 0.3s ease;
}

.btn-portfolio:hover i {
    transform: translateX(5px);
}

/* Customers Section */
.customers {
    padding: 100px 2rem;
    background: var(--section-bg-4);
    position: relative;
    overflow: hidden;
}

.customers::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,177,225,0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.customers::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,146,1,0.1) 0%, transparent 70%);
    bottom: -125px;
    left: -125px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}

.customers-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.customers-floating-icon {
    position: absolute;
    opacity: 0.3;
    color: var(--color-1);
    font-size: 2rem;
    animation: float-customers 8s infinite ease-in-out;
}

.customers-floating-icon:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.customers-floating-icon:nth-child(2) {
    top: 25%;
    right: 10%;
    animation-delay: -2s;
    color: var(--color-2);
}

.customers-floating-icon:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: -4s;
    color: var(--color-3);
}

.customers-floating-icon:nth-child(4) {
    bottom: 20%;
    right: 5%;
    animation-delay: -6s;
    color: var(--color-4);
}

.customers-floating-icon:nth-child(5) {
    top: 50%;
    left: 15%;
    animation-delay: -1s;
    color: var(--color-5);
}

@keyframes float-customers {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg) scale(1.2);
        opacity: 0.6;
    }
}

.customers-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.customers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.customers-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.customers-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.customers-scroll-container {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 0;
    background: var(--scroll-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    overflow: hidden;
    cursor: grab;
}

.customers-scroll-container:active {
    cursor: grabbing;
}

.customers-scroll {
    display: flex;
    gap: 2rem;
    padding: 0 4rem;
    width: max-content;
}

.customer-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.customer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s ease;
}

.customer-logo:hover::before {
    left: 100%;
}

.customer-logo:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.customer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.customer-logo-placeholder {
    width: 80%;
    height: 60%;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.customers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 2rem;
    background: var(--section-bg-5);
    position: relative;
    overflow: hidden;
}

.contact-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.contact-shape {
    position: absolute;
    opacity: 0.1;
    animation: contact-float 20s infinite linear;
}

.contact-shape-1 {
    width: 100px;
    height: 100px;
    background: var(--color-1);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.contact-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--color-2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.contact-shape-3 {
    width: 80px;
    height: 80px;
    background: var(--color-3);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes contact-float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: contact-card-appear 0.6s ease forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.2s; }
.contact-card:nth-child(2) { animation-delay: 0.4s; }
.contact-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes contact-card-appear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 146, 1, 0.3);
}

.contact-card:hover .contact-icon,
.contact-card:hover h3,
.contact-card:hover p,
.contact-card:hover a {
    color: white;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-1);
    transition: all 0.5s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 800;
    transition: all 0.5s ease;
}

.contact-card p,
.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.5s ease;
}

.email-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    transform: translateY(30px);
    opacity: 0;
    animation: form-appear 0.8s ease 0.8s forwards;
    box-shadow: 0 10px 30px var(--shadow-color);
}

@keyframes form-appear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    transform: translateX(-20px);
    opacity: 0;
    animation: form-group-appear 0.6s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 1s; }
.form-group:nth-child(2) { animation-delay: 1.1s; }
.form-group:nth-child(3) { animation-delay: 1.2s; }
.form-group:nth-child(4) { animation-delay: 1.3s; }

@keyframes form-group-appear {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1); /* Added border for light mode */
    border-radius: 10px;
    background: var(--card-bg);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text-color);
}

/* Dark mode adjustments */
.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    border: 2px solid rgba(255, 255, 255, 0.1); /* Lighter border for dark mode */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-1);
    box-shadow: 0 0 0 3px rgba(255, 146, 1, 0.2);
    transform: scale(1.02);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Form enhancements */
.error-message {
    color: var(--color-4);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(147, 166, 5, 0.1);
    color: var(--color-3);
    border: 1px solid var(--color-3);
    display: block;
}

.form-message.error {
    background: rgba(201, 57, 57, 0.1);
    color: var(--color-4);
    border: 1px solid var(--color-4);
    display: block;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Footer styles moved to footer-minimal.css */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px var(--shadow-color);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
        min-height: 120px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo-container {
        width: 250px;
        height: 250px;
    }

    .logo-image, .logo-placeholder {
        width: 70%;
        height: 70%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .logo-container {
        width: 200px;
        height: 200px;
    }

    .logo-image, .logo-placeholder {
        width: 65%;
        height: 65%;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bounce animation for CTA */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}