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

:root {
    --dark-blue: #0a0e27;
    --darker-blue: #050815;
    --bright-blue: #00d4ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff00ff;
    --white: #ffffff;
    --light-gray: #a0a0a0;
    --card-bg: #0f1429;
    --border-color: rgba(0, 212, 255, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(176, 38, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-dots {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.logo-dots .dot {
    width: 4px;
    height: 4px;
    background: var(--bright-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.logo-dots .dot:nth-child(3) { animation-delay: 0.4s; }
.logo-dots .dot:nth-child(4) { animation-delay: 0.6s; }
.logo-dots .dot:nth-child(5) { animation-delay: 0.8s; }
.logo-dots .dot:nth-child(6) { animation-delay: 1s; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav-link.active::before {
    content: '•';
    color: var(--bright-blue);
    margin-right: 5px;
}

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

.header-utils {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--bright-blue);
}

.search-icon,
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.search-icon:hover,
.theme-toggle:hover {
    color: var(--bright-blue);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    background: var(--dark-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-text {
    z-index: 2;
}

.tagline {
    color: var(--bright-blue);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title-line {
    display: block;
    position: relative;
}

.title-subtitle {
    display: block;
    font-size: 36px;
    margin-top: 10px;
    color: var(--light-gray);
    font-weight: 400;
}

.hero-title .highlight {
    background: linear-gradient(90deg, 
        var(--bright-blue) 0%, 
        var(--neon-purple) 50%, 
        var(--bright-blue) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 10px;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-blue), var(--neon-purple));
    border-radius: 2px;
    animation: wave 2s ease-in-out infinite;
}

/* Animated Text Styles - Continuous Animation */
.animated-text {
    opacity: 0;
    transform: translateY(30px);
    display: inline-block;
    position: relative;
    color: var(--white);
    background: linear-gradient(90deg, 
        var(--white) 0%, 
        var(--bright-blue) 25%, 
        var(--neon-purple) 50%, 
        var(--bright-blue) 75%, 
        var(--white) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textSlideIn 1s ease-out forwards, gradientSweep 3s linear infinite;
}

.animated-text.delay-1 {
    animation: textSlideIn 1s ease-out forwards 0.3s, gradientSweep 3s linear infinite 0.3s;
}

.animated-text.delay-2 {
    animation: textSlideIn 1s ease-out forwards 0.6s, gradientSweep 3s linear infinite 0.6s;
}

.animated-text.delay-3 {
    animation: textSlideIn 1s ease-out forwards 0.9s, gradientSweep 3s linear infinite 0.9s;
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientSweep {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Continuous Glow Animation for Title */
.title-line.animated-text {
    animation: textSlideIn 1s ease-out forwards, gradientSweep 3s linear infinite, textPulse 2s ease-in-out infinite 1s;
}

.title-line.animated-text.delay-1 {
    animation: textSlideIn 1s ease-out forwards 0.3s, gradientSweep 3s linear infinite 0.3s, textPulse 2s ease-in-out infinite 1.3s;
}

.title-line.animated-text.delay-2 {
    animation: textSlideIn 1s ease-out forwards 0.6s, gradientSweep 3s linear infinite 0.6s, textPulse 2s ease-in-out infinite 1.6s;
}

.title-subtitle.animated-text {
    animation: textSlideIn 1s ease-out forwards 0.9s, gradientSweep 3s linear infinite 0.9s, textPulse 2s ease-in-out infinite 1.9s;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 25px rgba(176, 38, 255, 0.6));
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 30px rgba(176, 38, 255, 0.4);
    }
}

/* Special continuous animation for highlight */
.hero-title .highlight {
    animation: highlightGradient 2s linear infinite, highlightPulse 2s ease-in-out infinite, highlightShine 3s linear infinite;
}

@keyframes highlightGradient {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes highlightPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.9)) drop-shadow(0 0 30px rgba(176, 38, 255, 0.7));
    }
}

@keyframes highlightShine {
    0% {
        box-shadow: inset 0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.3);
    }
    100% {
        box-shadow: inset 0 0 0 rgba(0, 212, 255, 0);
    }
}

@keyframes wave {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

.hero-description {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--bright-blue);
    color: var(--bright-blue);
}

.btn-outline:hover {
    background: var(--bright-blue);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary {
    background: var(--bright-blue);
    color: var(--dark-blue);
    border: 2px solid var(--bright-blue);
}

.btn-primary:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.4);
}

.btn-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bright-blue);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-play:hover {
    background: var(--neon-purple);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.4);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.lightbulb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 150px;
    z-index: 2;
}

.bulb-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--bright-blue) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: glow 2s ease-in-out infinite;
    box-shadow: 
        0 0 30px var(--bright-blue),
        0 0 60px var(--bright-blue),
        0 0 90px var(--neon-purple);
}

@keyframes glow {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

.bulb-base {
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, var(--bright-blue), var(--neon-purple));
    border-radius: 0 0 20px 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.figure {
    position: absolute;
    width: 80px;
    height: 120px;
}

.figure-left {
    left: 20%;
    top: 40%;
}

.figure-right {
    right: 20%;
    top: 35%;
}

.figure-body {
    width: 60px;
    height: 100px;
    background: linear-gradient(180deg, var(--bright-blue), var(--neon-purple));
    border-radius: 30px 30px 10px 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.figure-left .figure-body {
    background: linear-gradient(180deg, var(--bright-blue), #0066cc);
}

.figure-right .figure-body {
    background: linear-gradient(180deg, var(--neon-purple), #7a1fb8);
}

.chart-float {
    position: absolute;
    left: -40px;
    top: -20px;
    width: 60px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--bright-blue);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.chart-float::before {
    content: '📊';
    font-size: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.laptop {
    position: absolute;
    left: -30px;
    top: -30px;
    width: 100px;
    height: 70px;
    background: var(--neon-purple);
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.5);
    animation: float 3s ease-in-out infinite;
}

.laptop-screen {
    width: 90%;
    height: 70%;
    background: var(--dark-blue);
    margin: 5% auto;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.laptop-screen::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, var(--bright-blue) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent 0px, rgba(0, 212, 255, 0.1) 1px, transparent 2px);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    color: var(--neon-purple);
    font-size: 24px;
    font-weight: bold;
    animation: floatAround 4s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.float-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.float-icon:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, 10px) rotate(180deg); }
    75% { transform: translate(10px, 10px) rotate(270deg); }
}

/* Animated Service Icons */
.service-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Apps Icon - Mobile Phone */
.icon-apps {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 140px;
}

.icon-apps-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bright-blue), var(--neon-purple));
    border-radius: 15px 15px 25px 25px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(176, 38, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.icon-apps-body::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--dark-blue);
    border-radius: 2px;
}

.icon-apps-body::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--dark-blue);
    border-radius: 50%;
    border: 2px solid var(--bright-blue);
}

.icon-apps-screen {
    position: absolute;
    top: 20px;
    left: 8px;
    right: 8px;
    bottom: 60px;
    background: var(--dark-blue);
    border-radius: 8px;
    padding: 10px;
    overflow: hidden;
}

.icon-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: 100%;
}

.app-dot {
    background: linear-gradient(135deg, var(--bright-blue), var(--neon-purple));
    border-radius: 6px;
    animation: appPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.app-dot:nth-child(1) { animation-delay: 0s; }
.app-dot:nth-child(2) { animation-delay: 0.5s; }
.app-dot:nth-child(3) { animation-delay: 1s; }
.app-dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes appPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Web Icon - Browser Window */
.icon-web {
    position: absolute;
    top: 60%;
    left: 5%;
    width: 120px;
    height: 90px;
    transform: perspective(500px) rotateY(15deg) rotateX(-5deg);
}

.icon-web-base {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--bright-blue), var(--neon-purple));
    border-radius: 0 0 5px 5px;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.icon-web-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 8px;
    background: linear-gradient(135deg, var(--bright-blue), var(--neon-purple));
    border-radius: 8px 8px 0 0;
    padding: 12px;
    box-shadow: 
        0 0 25px rgba(0, 212, 255, 0.6),
        0 0 50px rgba(176, 38, 255, 0.4);
}

.icon-web-screen::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 20px;
    background: var(--dark-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.icon-web-screen::after {
    content: '●●●';
    position: absolute;
    top: 14px;
    left: 12px;
    color: var(--bright-blue);
    font-size: 8px;
    letter-spacing: 2px;
}

.icon-web-content {
    position: absolute;
    top: 35px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.web-line {
    height: 8px;
    background: var(--dark-blue);
    border-radius: 4px;
    animation: webLoad 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.web-line:nth-child(1) {
    width: 100%;
    animation-delay: 0s;
}

.web-line:nth-child(2) {
    width: 80%;
    animation-delay: 0.3s;
}

.web-line:nth-child(3) {
    width: 60%;
    animation-delay: 0.6s;
}

@keyframes webLoad {
    0%, 100% { 
        opacity: 0.4;
        transform: translateX(-10px);
    }
    50% { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Graphics Design Icon - Color Palette */
.icon-graphics {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    transform: perspective(500px) rotateY(-10deg) rotateX(10deg);
}

.icon-graphics-palette {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--neon-purple), var(--bright-blue));
    border-radius: 50% 50% 50% 0;
    box-shadow: 
        0 0 30px rgba(176, 38, 255, 0.6),
        0 0 60px rgba(0, 212, 255, 0.4);
    transform: rotate(-45deg);
    padding: 15px;
}

.graphics-color {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid var(--dark-blue);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: colorPulse 2s ease-in-out infinite;
}

.graphics-color:nth-child(1) {
    top: 10px;
    left: 20px;
    background: var(--bright-blue);
    animation-delay: 0s;
}

.graphics-color:nth-child(2) {
    top: 20px;
    right: 15px;
    background: var(--neon-purple);
    animation-delay: 0.5s;
}

.graphics-color:nth-child(3) {
    bottom: 15px;
    left: 15px;
    background: var(--neon-pink);
    animation-delay: 1s;
}

.graphics-brush {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 8px;
    background: linear-gradient(90deg, var(--bright-blue), var(--neon-purple));
    border-radius: 4px;
    transform: rotate(45deg);
    animation: brushMove 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.graphics-brush::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--bright-blue);
    border-radius: 2px;
}

@keyframes colorPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes brushMove {
    0%, 100% { 
        transform: rotate(45deg) translate(0, 0);
    }
    25% { 
        transform: rotate(50deg) translate(-5px, -5px);
    }
    75% { 
        transform: rotate(40deg) translate(5px, 5px);
    }
}

@keyframes iconFloat {
    0%, 100% { 
        transform: perspective(500px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }
    50% { 
        transform: perspective(500px) rotateY(-15deg) rotateX(5deg) translateY(-15px);
    }
}

/* Preserve existing transforms for web and graphics icons */
.icon-web {
    animation: iconFloatWeb 4s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    animation-delay: 1s, 0.5s;
}

.icon-graphics {
    animation: iconFloatGraphics 4s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    animation-delay: 1.5s, 1s;
}

@keyframes iconFloatWeb {
    0%, 100% { 
        transform: perspective(500px) rotateY(15deg) rotateX(-5deg) translateY(0);
    }
    50% { 
        transform: perspective(500px) rotateY(15deg) rotateX(-5deg) translateY(-15px);
    }
}

@keyframes iconFloatGraphics {
    0%, 100% { 
        transform: perspective(500px) rotateY(-10deg) rotateX(10deg) translateY(0);
    }
    50% { 
        transform: perspective(500px) rotateY(-10deg) rotateX(10deg) translateY(-15px);
    }
}

/* Enhanced animations for service icons */
.icon-apps {
    animation: iconFloat 4s ease-in-out infinite, iconGlow 3s ease-in-out infinite;
    animation-delay: 0.5s, 0s;
}

@keyframes iconGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(176, 38, 255, 0.8));
    }
}

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

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

.section-tagline {
    color: var(--bright-blue);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white);
}

.section-description {
    font-size: 16px;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Services Section */
.services {
    background: var(--darker-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(176, 38, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

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

.service-icon {
    font-size: 40px;
    color: var(--bright-blue);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.service-link:hover {
    color: var(--bright-blue);
}

/* About Section */
.about {
    background: var(--dark-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.about-icon {
    font-size: 50px;
    color: var(--bright-blue);
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.about-card p {
    color: var(--light-gray);
    font-size: 14px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--bright-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-gray);
}

/* Packages Section */
.packages {
    background: var(--darker-blue);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.package-card.featured {
    border-color: var(--bright-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bright-blue);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.package-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--white);
}

.package-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--bright-blue);
    margin-bottom: 20px;
}

.package-description {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.package-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    background: var(--bright-blue);
    border-radius: 50%;
}

.package-extras {
    padding: 15px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 25px;
}

.package-extras p {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 5px;
}

/* Additional Services */
.additional-services {
    background: var(--dark-blue);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.additional-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.additional-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.additional-icon {
    font-size: 50px;
    color: var(--bright-blue);
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.additional-card p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.additional-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--bright-blue);
    margin-bottom: 20px;
}

/* Quick Ad Section */
.quick-ad {
    background: var(--darker-blue);
    text-align: center;
}

.quick-ad-content {
    max-width: 800px;
    margin: 0 auto;
}

.quick-ad-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.quick-ad-content > p {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.quick-ad-features {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}

.quick-ad-features li {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.quick-ad-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-blue);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.testimonial-icon {
    font-size: 50px;
    color: var(--bright-blue);
    margin-bottom: 20px;
}

.testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.testimonial-card p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background: var(--darker-blue);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--bright-blue);
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

.faq-question i {
    color: var(--bright-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 20px;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--dark-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--white);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--bright-blue);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-item p {
    font-size: 14px;
    color: var(--light-gray);
}

.contact-promise {
    margin-top: 40px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.contact-promise h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--bright-blue);
}

.contact-promise p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.8;
}

.contact-cta {
    display: flex;
    align-items: center;
}

.cta-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    width: 100%;
}

.cta-badge {
    display: inline-block;
    background: var(--bright-blue);
    color: var(--dark-blue);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-box > p {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.cta-features li {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.cta-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bright-blue);
    font-weight: bold;
}

.cta-box .btn {
    width: 100%;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--darker-blue);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: var(--light-gray);
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bright-blue);
}

.footer-links span {
    color: var(--light-gray);
}

.footer-copyright {
    font-size: 12px;
    color: var(--light-gray);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--light-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--bright-blue);
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--dark-blue);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions .btn {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-illustration {
        height: 400px;
    }
    
    .services-grid,
    .about-grid,
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s;
    }
    
    .mobile-menu-btn:hover {
        color: var(--bright-blue);
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        margin-top: 10px;
        z-index: 1000;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-utils {
        margin-left: auto;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .title-subtitle {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid,
    .about-grid,
    .additional-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .hero-illustration {
        height: 300px;
    }
    
    .figure-left,
    .figure-right {
        display: none;
    }
    
    .lightbulb {
        width: 80px;
        height: 100px;
    }
    
    .bulb-glow {
        width: 70px;
        height: 70px;
    }
    
    .icon-apps {
        width: 60px;
        height: 100px;
        top: 10%;
        right: 5%;
    }
    
    .icon-web {
        width: 90px;
        height: 70px;
        top: 55%;
        left: 2%;
    }
    
    .icon-graphics {
        width: 80px;
        height: 80px;
        bottom: 15%;
        right: 10%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .title-subtitle {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-play {
        width: 100%;
        border-radius: 5px;
    }
    
    .service-card,
    .package-card,
    .about-card,
    .testimonial-card,
    .additional-card {
        padding: 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .social-icons {
        display: none;
    }
}

