/* Root Variables */
:root {
    --primary-color: #0066ff;
    --secondary-color: #00ccff;
    --accent-color: #ff6b6b;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-5: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-6: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 8px 30px rgba(0, 102, 255, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Keyframes */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 102, 255, 0.2), 0 0 10px rgba(0, 102, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 102, 255, 0.4), 0 0 20px rgba(0, 102, 255, 0.2);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    background: rgba(0, 102, 255, 0.02);
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(0, 102, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.logo:hover::before {
    opacity: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(8deg);
    filter: drop-shadow(0 6px 20px rgba(0, 102, 255, 0.4));
}

.logo i {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links li {
    position: relative;
    animation: slideInDown 0.6s ease backwards;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }

.nav-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: height 0.3s ease;
}

.nav-links li:hover::before {
    height: 60%;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 204, 255, 0.08) 100%);
    box-shadow: 0 2px 10px rgba(0, 102, 255, 0.15);
}

.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding-top: 80px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
    flex-wrap: wrap;
}

/* Animated Scroll Icons */
.hero-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 10;
    background: rgba(0, 0, 0, 0.15);
    padding: 1.2rem 0;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-icons {
    display: flex;
    gap: 4rem;
    animation: scroll 50s linear infinite;
    will-change: transform;
}

/* Duplicate icons in HTML to create seamless loop */
.scroll-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    flex-shrink: 0;
    color: white;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}

.scroll-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.scroll-icon i {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.scroll-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-140px * 10 - 4rem * 10)); 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-partner {
    background: var(--gradient-2);
    color: white;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-partner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-partner:hover::before {
    left: 100%;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: zoomInFade 1.2s ease-out;
    border: 3px solid rgba(0, 102, 255, 0.2);
}

@keyframes zoomInFade {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.preview-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(45deg);
    animation: infiniteShine 4s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes infiniteShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.preview-image-wrapper:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4);
    border-color: rgba(0, 204, 255, 0.5);
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.preview-image-wrapper:hover .preview-img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.85) 0%, rgba(0, 204, 255, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.preview-image-wrapper:hover .preview-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.preview-image-wrapper:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.8s ease-out;
}

.overlay-content p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.services-visual-frame {
    width: 100%;
    height: 650px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    animation: fadeInScale 1s ease-out;
}

.services-visual-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.services-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.services-grid-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.services-grid-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.service-visual-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.service-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-visual-card:hover::before {
    opacity: 1;
}

.service-visual-card:nth-child(1) { animation-delay: 0.1s; }
.service-visual-card:nth-child(2) { animation-delay: 0.2s; }
.service-visual-card:nth-child(3) { animation-delay: 0.3s; }
.service-visual-card:nth-child(4) { animation-delay: 0.4s; }
.service-visual-card:nth-child(5) { animation-delay: 0.5s; }
.service-visual-card:nth-child(6) { animation-delay: 0.6s; }
.service-visual-card:nth-child(7) { animation-delay: 0.7s; }
.service-visual-card:nth-child(8) { animation-delay: 0.8s; }

.service-visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.visual-icon {
    font-size: 42px;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.service-visual-card:nth-child(1) .visual-icon { animation-delay: 0s; }
.service-visual-card:nth-child(2) .visual-icon { animation-delay: 0.2s; }
.service-visual-card:nth-child(3) .visual-icon { animation-delay: 0.4s; }
.service-visual-card:nth-child(4) .visual-icon { animation-delay: 0.6s; }
.service-visual-card:nth-child(5) .visual-icon { animation-delay: 0.8s; }
.service-visual-card:nth-child(6) .visual-icon { animation-delay: 1s; }
.service-visual-card:nth-child(7) .visual-icon { animation-delay: 1.2s; }
.service-visual-card:nth-child(8) .visual-icon { animation-delay: 1.4s; }

.service-visual-card:hover .visual-icon {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 5px 15px rgba(0, 102, 255, 0.5));
    animation: none;
}

.service-visual-card h4 {
    color: #333;
    font-size: 15px;
    margin: 8px 0 5px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-visual-card:hover h4 {
    color: var(--primary-color);
    transform: scale(1.05);
}

.service-visual-card p {
    color: #666;
    font-size: 12px;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-visual-card:hover p {
    color: #333;
}

.about-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.about-image .image-placeholder::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.about-image .image-placeholder::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    animation: float 4s ease-in-out infinite reverse;
}

.about-image .image-placeholder:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
}

.about-image i {
    font-size: 150px;
    color: white;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #666;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    z-index: 5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:nth-child(odd) {
    border-top-color: #0066ff;
}

.service-card:nth-child(even) {
    border-top-color: #667eea;
}

.service-card:nth-child(3n) {
    border-top-color: #f093fb;
}

.service-card:nth-child(4n) {
    border-top-color: #4facfe;
}

.service-card:nth-child(5n) {
    border-top-color: #43e97b;
}

.service-card:nth-child(6n) {
    border-top-color: #fa709a;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 204, 255, 0.2) 100%);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Web Development Section */
.web-dev-section {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 5;
}

.web-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.web-service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.web-service-card:nth-child(odd) {
    border-top-color: #667eea;
}

.web-service-card:nth-child(even) {
    border-top-color: #0066ff;
}

.web-service-card:nth-child(3n) {
    border-top-color: #4facfe;
}

.web-service-card:nth-child(4n) {
    border-top-color: #43e97b;
}

.web-service-card:nth-child(5n) {
    border-top-color: #f093fb;
}

.web-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.web-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.web-service-card:hover .web-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
}

.web-icon i {
    font-size: 2rem;
    color: #667eea;
}

.web-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.web-service-card:hover h3 {
    color: var(--primary-color);
}

.web-service-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.6s;
    animation: rotate 3s linear infinite paused;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.partner-card:hover::before {
    opacity: 0.1;
    animation-play-state: running;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
    border-color: var(--primary-color);
}

.partner-card.featured {
    background: var(--gradient-2);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.3);
}

.partner-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 25px 70px rgba(0, 102, 255, 0.4);
}

.partner-card.featured h3,
.partner-card.featured p,
.partner-card.featured li {
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.partner-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(240, 147, 251, 0.3);
}

.partner-card:hover .partner-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 10px 40px rgba(240, 147, 251, 0.5);
}

.partner-icon i {
    font-size: 2.8rem;
    color: white;
}

.partner-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tier-master {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.tier-retail {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.tier-api {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.partner-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    text-align: center;
    margin-top: 0.5rem;
}

.partner-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.partner-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.partner-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.partner-benefits li {
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.partner-benefits li strong {
    color: var(--primary-color);
}

.partner-card.featured .partner-benefits li strong {
    color: white;
}

.partner-benefits i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.partner-card.featured .partner-benefits i {
    color: white;
}

.partner-earnings {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #2d3436;
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
}

.partner-earnings i {
    font-size: 1.5rem;
    color: #f39c12;
}

.partner-card.special {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.partner-card.special h3,
.partner-card.special p,
.partner-card.special li,
.partner-card.special .price-label {
    color: white;
}

.partner-card.special .price-value {
    color: #ffeaa7;
}

.partner-card.special .partner-benefits i {
    color: #43e97b;
}

.partner-card.special .partner-benefits li strong {
    color: #ffeaa7;
}

/* White Label Section */
.white-label-section {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 5;
}

.white-label-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wl-image-wrapper {
    width: 100%;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.wl-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(1);
}

.wl-image-wrapper:hover .wl-img {
    transform: scale(1.1) rotate(2deg);
}

.wl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3) 0%, rgba(0, 204, 255, 0.3) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wl-image-wrapper:hover .wl-overlay {
    opacity: 1;
}

.wl-overlay::before {
    content: '✨';
    font-size: 80px;
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.wl-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.white-label-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-6);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
}

.white-label-image .image-placeholder::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: pulse 4s ease-in-out infinite;
}

.white-label-image .image-placeholder:hover {
    transform: scale(1.03) rotate(-2deg);
    box-shadow: 0 20px 60px rgba(250, 112, 154, 0.4);
}

.white-label-image i {
    font-size: 150px;
    color: white;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.white-label-text {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.white-label-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.white-label-text h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    animation: expandWidth 1s ease-out 0.3s forwards;
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

.white-label-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.white-label-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.white-label-features {
    list-style: none;
    margin-bottom: 2rem;
}

.white-label-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    opacity: 0;
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.white-label-features li:nth-child(1) { animation-delay: 0.9s; }
.white-label-features li:nth-child(2) { animation-delay: 1.0s; }
.white-label-features li:nth-child(3) { animation-delay: 1.1s; }
.white-label-features li:nth-child(4) { animation-delay: 1.2s; }
.white-label-features li:nth-child(5) { animation-delay: 1.3s; }
.white-label-features li:nth-child(6) { animation-delay: 1.4s; }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.white-label-features li:hover {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.white-label-features i {
    color: #28a745;
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

.white-label-features li:hover i {
    transform: scale(1.2) rotate(360deg);
    transition: all 0.5s ease;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-4);
    opacity: 0;
    transform: rotate(45deg);
    transition: all 0.5s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    top: -10%;
    left: -10%;
    opacity: 0.1;
}

.feature-card i {
    font-size: 3.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: #666;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: all 0.4s;
}

.info-card:hover::before {
    left: 0;
    opacity: 0.1;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary-color);
}

.info-card i {
    font-size: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.info-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.info-card p,
.info-card a {
    color: #666;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid #f0f0f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 12px 18px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(0, 204, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 204, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.footer-logo .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 3px 10px rgba(0, 204, 255, 0.4));
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-logo:hover .logo-img {
    transform: scale(1.1) rotate(8deg);
    filter: brightness(1.3) drop-shadow(0 5px 20px rgba(0, 204, 255, 0.6));
}

.footer-col p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        padding: 4px 0;
        gap: 10px;
    }

    .logo-img {
        height: 38px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .footer-logo .logo-img {
        height: 45px;
    }

    .footer-logo span {
        font-size: 1.3rem;
    }

    .hero {
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-scroll {
        bottom: 0;
        padding: 1rem 0;
    }

    .scroll-icon {
        min-width: 110px;
    }

    .scroll-icon i {
        font-size: 2rem;
    }

    .scroll-icon span {
        font-size: 0.8rem;
    }
    
    @keyframes scroll {
        0% { 
            transform: translateX(0); 
        }
        100% { 
            transform: translateX(calc(-110px * 10 - 4rem * 10)); 
        }
    }

    .about-content,
    .white-label-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Partnership Benefits Section */
.partnership-benefits {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.partnership-benefits h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s;
    border-radius: 15px;
}

.benefit-item:hover {
    background: var(--light-color);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2,
    .white-label-text h2 {
        font-size: 2rem;
    }

    .services-grid,
    .web-services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .partnership-benefits {
        padding: 2rem 1.5rem;
    }
}
