/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00f3ff;
    --secondary-color: #7b2ff7;
    --accent-color: #ff006e;
    --bg-dark: #0a0e27;
    --bg-darker: #050814;
    --text-light: #ffffff;
    --text-gray: #a0aec0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Stars Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/></svg>') repeat;
    animation: animateStars 50s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="100" cy="100" r="1.5" fill="white" opacity="0.6"/></svg>') repeat;
    animation: animateStars 100s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300"><circle cx="150" cy="150" r="2" fill="%2300f3ff" opacity="0.4"/></svg>') repeat;
    animation: animateStars 150s linear infinite;
}

@keyframes animateStars {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-2000px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.logo-link:hover .logo-text {
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.logo-text .accent {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    transition: all 0.3s;
}

.logo-link:hover .logo-text .accent {
    text-shadow: 0 0 20px var(--primary-color);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.logo-link:hover .logo-text {
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.logo-text .accent {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    transition: all 0.3s;
}

.logo-link:hover .logo-text .accent {
    text-shadow: 0 0 20px var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.glitch {
    position: relative;
    color: var(--text-light);
    text-shadow: 0 0 20px var(--primary-color);
}

.gradient-text {
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: var(--gradient-3);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-color);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Desktop: Rotating Laptop with Code */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.laptop-container {
    width: 400px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.laptop-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.5));
    animation: floatLaptop 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes floatLaptop {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(5deg);
    }
}

/* Code Screen Styles */
.code-screen {
    width: 100%;
    height: 100%;
    background: #050814;
    padding: 10px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.code-text {
    margin: 0;
    padding: 0;
    color: #00f3ff;
    font-size: 11px;
    line-height: 1.4;
    white-space: pre;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.8);
}

.code-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #00f3ff;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Mobile: Laptop with Keyboard */
.laptop-container-mobile {
    width: 300px;
    height: 280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-svg-mobile {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.5));
    animation: floatLaptopMobile 4s ease-in-out infinite;
}

@keyframes floatLaptopMobile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .laptop-container-mobile {
        width: 250px;
        height: 230px;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0%, 100% {
        opacity: 1;
        top: 10px;
    }
    50% {
        opacity: 0;
        top: 25px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-3d {
    font-size: 3rem;
    display: inline-block;
    transform-style: preserve-3d;
    animation: floatIcon 3s ease-in-out infinite;
}

.icon-3d-large {
    font-size: 5rem;
    display: inline-block;
    transform-style: preserve-3d;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(180deg);
    }
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(123, 47, 247, 0.4);
}

.service-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(123, 47, 247, 0.3);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 30px;
    padding: 4rem 2rem;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: rgba(5, 8, 20, 0.9);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--text-gray);
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Services Categories */
.services-categories {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.service-category-card {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.service-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.category-icon {
    font-size: 3.5rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.category-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.category-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.category-subservices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.subservice-item {
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s;
    text-align: center;
}

.subservice-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(123, 47, 247, 0.4);
    background: rgba(123, 47, 247, 0.15);
}

.subservice-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.subservice-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.subservice-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.subservice-item-link {
    text-decoration: none;
    display: block;
}

.service-detail-page {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.service-detail-card.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-detail-card.reverse .service-detail-icon {
    order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-icon {
    text-align: center;
}

.service-detail-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.process-step p {
    color: var(--text-gray);
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.floating-shapes {
    position: relative;
    height: 400px;
}

.shape {
    position: absolute;
    border: 2px solid var(--primary-color);
    background: rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation: floatShape1 4s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 150px;
    left: 20%;
    border-radius: 50%;
    animation: floatShape2 5s ease-in-out infinite;
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 200px;
    right: 20%;
    transform: rotate(30deg);
    animation: floatShape3 6s ease-in-out infinite;
}

@keyframes floatShape1 {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    50% {
        transform: translateX(-50%) translateY(-30px) rotate(45deg);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-40px);
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translateY(0) rotate(30deg);
    }
    50% {
        transform: translateY(-50px) rotate(30deg);
    }
}

/* Values Section */
.values {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(123, 47, 247, 0.4);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: rgba(0, 243, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Technologies Section */
.technologies {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.4);
    background: rgba(0, 243, 255, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-details h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* Map Wrapper */
.map-wrapper {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.map-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.yandex-map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .yandex-map {
        height: 400px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-icon,
    .service-detail-card.reverse .service-detail-content {
        order: 0;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-brand {
        z-index: 1001;
    }


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .letter-a-container {
        width: 200px;
        height: 200px;
    }

    .features-grid,
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features,
    .services-preview,
    .cta,
    .about-section,
    .values,
    .stats,
    .technologies,
    .contact-section,
    .process {
        padding: 50px 0;
    }

    .service-detail-card {
        padding: 1.5rem;
        gap: 2rem;
    }

    .service-category-card {
        padding: 2rem 1.5rem;
    }

    .category-header h2 {
        font-size: 2rem;
    }

    .category-subservices {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .subservice-item {
        padding: 1.2rem;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-content p {
        font-size: 1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-item {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact-item {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-details h3 {
        font-size: 1rem;
    }

    .contact-details p,
    .contact-details a {
        font-size: 0.95rem;
    }

    .map-wrapper {
        padding: 1.5rem;
    }

    .map-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .yandex-map {
        height: 350px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .floating-shapes {
        height: 300px;
        margin-top: 2rem;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
    }

    .shape-2 {
        width: 80px;
        height: 80px;
    }

    .shape-3 {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }


    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card,
    .service-card,
    .value-card {
        padding: 1.5rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .process-number {
        font-size: 3rem;
    }

    .yandex-map {
        height: 300px;
    }

    .laptop-container-mobile {
        width: 200px;
        height: 180px;
    }
}

