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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #d63447;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--highlight-color);
}

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Fullscreen Slider */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0f;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 52, 96, 0.75) 50%, rgba(233, 69, 96, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid rgba(233, 69, 96, 0.5);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 25px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.hero-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-nav:hover {
    background: rgba(233, 69, 96, 0.3);
    border-color: rgba(233, 69, 96, 0.6);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.pagination-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s;
}

.pagination-dot:hover::after,
.pagination-dot.active::after {
    opacity: 1;
    width: 24px;
    height: 24px;
}

.pagination-dot.active {
    background: var(--highlight-color);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.6);
    transform: scale(1.2);
}

.hero-stats-overlay {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    padding: 25px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-stats-overlay .stat-item {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    gap: 5px;
}

.hero-stats-overlay .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5));
    min-width: auto;
}

.hero-stats-overlay .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(15px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, #e94560 0%, #d63447 50%, #e94560 100%);
    background-size: 200% 200%;
    border: 2px solid #e94560;
    color: var(--white);
    padding: 16px 35px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.4), 
                0 0 40px rgba(233, 69, 96, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: buttonGlow 3s ease-in-out infinite;
    transition: all 0.3s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.6), 
                0 0 60px rgba(233, 69, 96, 0.4),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: none;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.4), 
                    0 0 40px rgba(233, 69, 96, 0.2),
                    inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(233, 69, 96, 0.6), 
                    0 0 60px rgba(233, 69, 96, 0.4),
                    inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 14px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.btn-outline-dark::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;
}

.btn-outline-dark:hover::before {
    left: 100%;
}

.btn-outline-dark:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4),
                0 0 50px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(26, 26, 46, 0.1);
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(15, 52, 96, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(233, 69, 96, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.3));
    position: relative;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    flex: 1;
    padding-top: 8px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.05) 0%, rgba(233, 69, 96, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(15, 52, 96, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    border-color: rgba(233, 69, 96, 0.4);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.4),
                0 0 30px rgba(233, 69, 96, 0.2);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #0f3460);
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Decorative light elements */
.hero-left::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.3) 0%, rgba(15, 52, 96, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: lightFloat 8s ease-in-out infinite;
}

.hero-right::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 52, 96, 0.25) 0%, rgba(233, 69, 96, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: lightFloat 10s ease-in-out infinite 2s;
}

@keyframes lightFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.7;
    }
}

/* Additional glow effects */
.hero-content-left::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 60%);
    filter: blur(100px);
    z-index: -1;
    animation: contentGlow 6s ease-in-out infinite;
}

.hero-content-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 52, 96, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    z-index: -1;
    animation: contentGlow 8s ease-in-out infinite 3s;
}

@keyframes contentGlow {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #d63447;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section - 3D Cards with Parallax */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 52, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 
        0 20px 60px rgba(233, 69, 96, 0.3),
        0 0 40px rgba(15, 52, 96, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(233, 69, 96, 0.5);
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

.service-icon {
    width: 100%;
    height: 220px;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.3) 0%, rgba(15, 52, 96, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-icon img {
    transform: scale(1.1) rotate(2deg);
}

.service-card-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s;
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    transition: color 0.3s;
}

.service-card:hover p {
    color: var(--text-color);
}

/* Solutions Section - Neon Accordion */
.solutions {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(15, 52, 96, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.solutions .section-title,
.solutions .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.accordion {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    border: 2px solid rgba(233, 69, 96, 0.3);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.accordion-item:hover::before,
.accordion-item.active::before {
    opacity: 1;
}

.accordion-item:hover {
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
    transform: translateX(5px);
}

.accordion-item.active {
    border-color: rgba(233, 69, 96, 0.8);
    box-shadow: 
        0 0 30px rgba(233, 69, 96, 0.5),
        0 0 60px rgba(233, 69, 96, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.accordion-header:hover {
    color: #e94560;
}

.accordion-item.active .accordion-header {
    color: #e94560;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.accordion-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #e94560;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: rgba(233, 69, 96, 0.4);
    box-shadow: 0 0 25px rgba(233, 69, 96, 0.6);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.accordion-body {
    padding: 0 30px 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.accordion-body ul {
    margin-top: 15px;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 10px;
}

/* Technology Section - Glassmorphism Cards */
.technology {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.technology::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: techOrb 15s ease-in-out infinite;
}

.technology::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 52, 96, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: techOrb 20s ease-in-out infinite reverse;
}

@keyframes techOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.2);
    }
}

.technology .section-title,
.technology .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.tech-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s;
    opacity: 0;
}

.tech-item:hover::before {
    opacity: 1;
    animation: techShine 1.5s ease-in-out;
}

@keyframes techShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.tech-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(233, 69, 96, 0.3);
}

.tech-image {
    width: 100%;
    height: 280px;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tech-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(15, 52, 96, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.tech-item:hover .tech-image::after {
    opacity: 1;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.tech-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tech-item p {
    line-height: 1.8;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.85);
}

/* Process Section - Animated Timeline */
.process {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.03) 50%, transparent 100%),
        radial-gradient(circle at 50% 50%, rgba(15, 52, 96, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(233, 69, 96, 0.3) 20%,
        rgba(15, 52, 96, 0.5) 50%,
        rgba(233, 69, 96, 0.3) 80%,
        transparent 100%);
    z-index: 0;
    animation: processLine 3s ease-in-out infinite;
}

@keyframes processLine {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e94560 0%, #d63447 50%, #e94560 100%);
    background-size: 200% 200%;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 25px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(233, 69, 96, 0.5),
        0 0 60px rgba(233, 69, 96, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: stepPulse 3s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s;
}

@keyframes stepPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(233, 69, 96, 0.5),
            0 0 60px rgba(233, 69, 96, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(233, 69, 96, 0.7),
            0 0 80px rgba(233, 69, 96, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 
        0 0 50px rgba(233, 69, 96, 0.8),
        0 0 100px rgba(233, 69, 96, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #0f3460);
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: stepGlow 2s ease-in-out infinite;
}

@keyframes stepGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.process-step h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    transition: transform 0.3s;
}

.process-step:hover h3 {
    transform: scale(1.1);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
    transition: color 0.3s;
}

.process-step:hover p {
    color: var(--text-color);
}

/* Industries Section - Hover Cards with Gradient Overlays */
.industries {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(233, 69, 96, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(15, 52, 96, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.industry-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.9) 0%, rgba(15, 52, 96, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
    pointer-events: none;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(233, 69, 96, 0.3),
        0 0 40px rgba(15, 52, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.5);
}

.industry-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
    position: relative;
    z-index: 1;
}

.industry-card:hover img {
    transform: scale(1.15);
}

.industry-card-content {
    padding: 25px;
    position: relative;
    z-index: 3;
    transition: all 0.5s;
}

.industry-card:hover .industry-card-content {
    color: var(--white);
}

.industry-card h3 {
    padding: 0;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.5s;
    position: relative;
}

.industry-card:hover h3 {
    color: var(--white);
    transform: translateX(5px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.industry-card p {
    padding: 0;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    transition: all 0.5s;
}

.industry-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* About Section - Split with Animated Image */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: aboutGlow 10s ease-in-out infinite;
}

@keyframes aboutGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    position: relative;
}

.about-text::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e94560 0%, #0f3460 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.about-text p {
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.about-text p:hover {
    transform: translateX(5px);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(233, 69, 96, 0.2);
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #e94560, #0f3460);
    padding: 3px;
    transition: all 0.5s;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 1s;
    opacity: 0;
}

.about-image:hover::before {
    opacity: 1;
    animation: imageShine 1.5s ease-in-out;
}

@keyframes imageShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.about-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(233, 69, 96, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 17px;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.1);
}

/* Contact Section - Neon Form */
.contact {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 52, 96, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(233, 69, 96, 0.3);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.5s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    border-color: rgba(233, 69, 96, 0.6);
    box-shadow: 0 0 25px rgba(233, 69, 96, 0.3);
    transform: translateX(5px);
}

.contact-item h3 {
    color: #e94560;
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-item a {
    color: #e94560;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94560;
    box-shadow: 0 0 10px #e94560;
    transition: width 0.3s;
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.8);
    transform: translateX(3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(233, 69, 96, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(233, 69, 96, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    animation: formGlow 8s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(233, 69, 96, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 20px rgba(233, 69, 96, 0.3),
        inset 0 0 20px rgba(233, 69, 96, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Thanks Page Styles */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Policy Pages */
.policy-page {
    padding: 40px 0;
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.policy-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-content a {
    color: var(--highlight-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-controls {
        padding: 0 20px;
    }

    .hero-nav {
        width: 50px;
        height: 50px;
    }

    .hero-stats-overlay {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
        border-radius: 30px;
        bottom: 100px;
    }

    .hero-stats-overlay .stat-item {
        padding: 10px 0;
    }

    .hero-stats-overlay .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-controls {
        padding: 0 15px;
    }

    .hero-nav {
        width: 45px;
        height: 45px;
    }

    .hero-pagination {
        bottom: 30px;
        gap: 10px;
    }

    .hero-stats-overlay {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 15px 25px;
        bottom: 90px;
        max-width: 90%;
    }

    .hero-stats-overlay .stat-number {
        font-size: 1.8rem;
    }

    .hero-stats-overlay .stat-label {
        font-size: 0.75rem;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .section {
        padding: 60px 0;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-badge {
        padding: 6px 15px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        gap: 15px;
        max-width: 100%;
    }

    .hero-actions .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .hero-controls {
        padding: 0 10px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }

    .hero-pagination {
        bottom: 25px;
        gap: 8px;
    }

    .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .hero-stats-overlay {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        bottom: 80px;
    }

    .hero-stats-overlay .stat-number {
        font-size: 1.6rem;
    }

    .hero-stats-overlay .stat-label {
        font-size: 0.7rem;
    }

    .hero-scroll-indicator {
        bottom: 15px;
    }

    .scroll-mouse {
        width: 25px;
        height: 40px;
    }

    .scroll-text {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
}



