* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #111827 50%, #1f2937 100%);
    color: #f9fafb;
    overflow-x: hidden;
}

/* Web Development Background Animations */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Code Matrix Pattern */
.code-matrix {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    background-size: 40px 40px, 40px 40px, 500px 500px, 400px 400px;
    animation: codeScroll 30s linear infinite;
}

@keyframes codeScroll {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 40px 40px, 40px 40px, 500px 500px, -400px -400px; }
}

/* HTML/CSS Tags Floating */
.code-tags {
    position: absolute;
    width: 100%;
    height: 100%;
}

.code-tag {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(59, 130, 246, 0.3);
    animation: tagDrift 25s infinite linear;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
    white-space: nowrap;
}

@keyframes tagDrift {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(30px) rotate(5deg);
        opacity: 0;
    }
}

/* Web Icons Floating */
.web-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.web-icon {
    position: absolute;
    font-size: 20px;
    color: rgba(59, 130, 246, 0.3);
    animation: webFloat 28s infinite linear;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.25));
}

@keyframes webFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

/* Browser Window Animation */
.browser-windows {
    position: absolute;
    width: 100%;
    height: 100%;
}

.browser-window {
    position: absolute;
    width: 60px;
    height: 40px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 4px;
    animation: browserFloat 35s infinite linear;
}

.browser-window::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    right: 3px;
    height: 8px;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 2px;
}

@keyframes browserFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.8);
        opacity: 0;
    }
    15% {
        opacity: 1;
        transform: scale(1);
    }
    85% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(0.8);
        opacity: 0;
    }
}

/* Header */


/* Service Hero Section */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: heroCodeGlow 18s infinite ease-in-out;
}

@keyframes heroCodeGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

.floating-icon {
    position: absolute;
    font-size: 2.2rem;
    animation: codeFloat 14s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
    color: rgba(59, 130, 246, 0.6);
}

.floating-icon:nth-child(1) {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 65%;
    right: 18%;
    animation-delay: 3.5s;
    color: rgba(6, 182, 212, 0.6);
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 22%;
    animation-delay: 7s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 28%;
    animation-delay: 10.5s;
    color: rgba(6, 182, 212, 0.6);
}

@keyframes codeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(3deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-12px) rotate(-3deg); }
}

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

.service-hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    position: relative;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #60a5fa;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.4));
    animation: webIconPulse 4s ease-in-out infinite;
}

@keyframes webIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #f9fafb;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(45deg, #f9fafb, #3b82f6, #06b6d4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: codeTextGlow 4s ease-in-out infinite alternate;
}

@keyframes codeTextGlow {
    from { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.25)); }
    to { filter: drop-shadow(0 0 35px rgba(59, 130, 246, 0.5)); }
}

.service-hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #9ca3af;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    color: #f9fafb;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    animation: buttonShimmer 0.6s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #1e40af, #3b82f6);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3b82f6;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #3b82f6;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: #f9fafb;
    transform: translateY(-3px);
}

@keyframes buttonShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Service Overview */
.service-overview {
    padding: 6rem 0;
    background: #000000;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f9fafb;
    font-weight: 700;
}

.overview-text p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.benefit-item h3 {
    color: #f9fafb;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.benefit-item p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.overview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-animation {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 24px;
    padding: 3rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(55, 65, 81, 0.5);
    position: relative;
    overflow: hidden;
}

.web-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.04), transparent);
    animation: webRotate 45s linear infinite;
}

@keyframes webRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.web-layers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
    position: relative;
}

.web-layer {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    color: #3b82f6;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
    animation: webLayerPulse 5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.web-layer:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.05);
}

.web-layer:nth-child(2) {
    animation-delay: 1.7s;
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.web-layer:nth-child(3) {
    animation-delay: 3.4s;
}

@keyframes webLayerPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

/* Service Features */
.service-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-title {
    font-size: 2.5rem;
    color: #f9fafb;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
    animation: featureIconFloat 4s infinite;
}

@keyframes featureIconFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.feature-card h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: #d1d5db;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    transition: all 0.3s ease;
}

.feature-card li:hover {
    color: #f9fafb;
    padding-left: 2.5rem;
}

.feature-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 0.8rem;
}

/* Technology Stack */
.tech-stack {
    padding: 6rem 0;
    background: #000000;
}

.tech-categories {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-category {
    text-align: center;
}

.tech-category h3 {
    color: #f9fafb;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.tech-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.tech-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.tech-item span {
    color: #d1d5db;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.tech-item:hover span {
    color: #f9fafb;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.portfolio-item:hover::before {
    transform: scaleX(1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.6);
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

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

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: #f9fafb;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.portfolio-content p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-item:hover {
    transform: scale(1.05);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
    display: block;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out;
}

.stat-label {
    color: #d1d5db;
    font-size: 1.1rem;
}

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

/* Service CTA */
.service-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: ctaWebGlow 22s infinite ease-in-out;
}

@keyframes ctaWebGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #f9fafb;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: #9ca3af;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */


/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero p {
        font-size: 1.1rem;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .tech-items,
    .stats-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .service-icon-large {
        font-size: 3.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}