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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #000;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.nav-tagline {
    font-size: 0.8rem;
    color: #00ffff;
    font-weight: 500;
    margin-left: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff00ff, #00ffff);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
}

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

.nav-link:focus-visible {
    outline: 2px solid #ff00ff;
    outline-offset: 4px;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ff00ff;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(128, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(0, 0, 255, 0.08) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    /* Semi-transparent black instead of opaque gradient */

    color: #ff00ff;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="100" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="300" r="150" fill="rgba(255,255,255,0.03)"/><circle cx="400" cy="700" r="120" fill="rgba(255,255,255,0.04)"/><circle cx="900" cy="800" r="80" fill="rgba(255,255,255,0.06)"/></svg>');
    background-size: 100px 100px, 100% 100%;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #0080ff, #8000ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-stats-mini {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-stat strong {
    color: #00ffff;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4), inset 0 0 20px rgba(255, 0, 255, 0.1);
    border: 2px solid #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000000;
    text-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.6);
    text-shadow: none;
}

.btn:focus-visible {
    outline: 2px solid #ff00ff;
    outline-offset: 4px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

/* Floating Cards */
.hero-image {
    position: relative;
    height: 400px;
}

.ai-visualization {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neural-network {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.neural-node {
    animation: neuralPulse 2s ease-in-out infinite;
}

.neural-connection {
    stroke-dasharray: 5, 5;
    animation: neuralFlow 3s linear infinite;
}

@keyframes neuralPulse {

    0%,
    100% {
        r: 6;
        opacity: 0.8;
    }

    50% {
        r: 10;
        opacity: 1;
    }
}

@keyframes neuralFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 20;
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    color: white;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 5%;
    left: 2%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 2%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    color: white;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.stat p {
    color: #666;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background:
        radial-gradient(circle at 25% 25%, rgba(120, 119, 198, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 119, 198, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="neural" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.2)"/><path d="M20,20 L60,20 M20,20 L20,60 M20,20 L60,60 M20,20 L-20,60" stroke="rgba(255,255,255,0.15)" stroke-width="1" fill="none"/></pattern></defs><rect width="200" height="200" fill="url(%23neural)"/></svg>');
    background-size: 80px 80px;
    opacity: 0.7;
    animation: neuralPulse 4s ease-in-out infinite;
}

.ai-architecture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.architecture-diagram {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.data-flow {
    animation: dataPulse 2s ease-in-out infinite;
}

.processing-node {
    animation: processGlow 3s ease-in-out infinite;
}

.edge-connection {
    animation: edgeFlow 4s linear infinite;
}

@keyframes dataPulse {

    0%,
    100% {
        r: 3;
        opacity: 0.6;
    }

    50% {
        r: 6;
        opacity: 1;
    }
}

@keyframes processGlow {

    0%,
    100% {
        r: 2;
        opacity: 0.7;
    }

    50% {
        r: 5;
        opacity: 1;
    }
}

@keyframes edgeFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 20;
    }
}

/* Portfolio Visual Animations */
.project-visual {
    width: 100%;
    height: 100%;
}

.ai-indicator {
    animation: aiPulse 2s ease-in-out infinite;
}

.data-stream {
    animation: dataFlow 3s linear infinite;
}

.quality-indicator {
    animation: qualityCheck 2.5s ease-in-out infinite;
}

.flight-path {
    animation: pathFlow 4s linear infinite;
}

.ai-processing {
    animation: processingGlow 2s ease-in-out infinite;
}

.abnormal-region {
    animation: abnormality 3s ease-in-out infinite;
}

.normal-region {
    animation: normalPulse 2s ease-in-out infinite;
}

.medical-ai {
    animation: medicalAnalysis 2.5s ease-in-out infinite;
}

.robot-path {
    animation: robotMove 3s ease-in-out infinite;
}

.robot-ai {
    animation: robotProcess 2s ease-in-out infinite;
}

@keyframes aiPulse {

    0%,
    100% {
        r: 6;
        opacity: 0.8;
    }

    50% {
        r: 10;
        opacity: 1;
    }
}

@keyframes dataFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 10;
    }
}

@keyframes qualityCheck {

    0%,
    100% {
        r: 8;
        opacity: 0.8;
    }

    50% {
        r: 12;
        opacity: 1;
    }
}

@keyframes pathFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 20;
    }
}

@keyframes processingGlow {

    0%,
    100% {
        r: 6;
        opacity: 0.7;
    }

    50% {
        r: 10;
        opacity: 1;
    }
}

@keyframes abnormality {

    0%,
    100% {
        r: 6;
        opacity: 0.6;
    }

    50% {
        r: 10;
        opacity: 1;
    }
}

@keyframes normalPulse {

    0%,
    100% {
        r: 4;
        opacity: 0.6;
    }

    50% {
        r: 7;
        opacity: 1;
    }
}

@keyframes medicalAnalysis {

    0%,
    100% {
        r: 6;
        opacity: 0.8;
    }

    50% {
        r: 10;
        opacity: 1;
    }
}

@keyframes sensorFlow {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 8;
    }
}

@keyframes robotMove {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 15;
    }
}

@keyframes robotProcess {

    0%,
    100% {
        r: 6;
        opacity: 0.8;
    }

    50% {
        r: 10;
        opacity: 1;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0d1117 75%, #161b22 100%);
    position: relative;
    color: white;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 0, 255, 0.3);
    border-color: rgba(255, 0, 255, 0.6);
}

.service-card:focus-visible {
    outline: 2px solid #ff00ff;
    outline-offset: 4px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ff00ff;
    font-size: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3), inset 0 0 20px rgba(255, 0, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 0, 255, 0.4);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff00ff, #00ffff, #0080ff);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.6);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1.2);
}

/* Individual service icon colors */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    color: #ff00ff;
    border-color: rgba(255, 0, 255, 0.5);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.5);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    color: #0080ff;
    border-color: rgba(0, 128, 255, 0.5);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    color: #8000ff;
    border-color: rgba(128, 0, 255, 0.5);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    color: #ff0080;
    border-color: rgba(255, 0, 128, 0.5);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    color: #00ff80;
    border-color: rgba(0, 255, 128, 0.5);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    color: white;
    border-top: 1px solid rgba(255, 0, 255, 0.15);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border-radius: 50%;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item h3 {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0d1117 50%, #000000 100%);
    color: white;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 255, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: #ff00ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info h4 {
    color: #00ffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0d1117 75%, #161b22 100%);
    position: relative;
    color: white;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

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

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 255, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 0, 255, 0.3);
    border-color: rgba(0, 255, 0, 0.4);
}

.portfolio-item:focus-within {
    outline: 2px solid #ff00ff;
    outline-offset: 4px;
}

.portfolio-image {
    position: relative;
    height: 250px;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 255, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff00ff;
    font-size: 3rem;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L20,10 M10,0 L10,20 M5,5 L15,15 M15,5 L5,15" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.6;
}

.portfolio-item:nth-child(1) .portfolio-image {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border: 2px solid rgba(255, 0, 255, 0.4);
}

.portfolio-item:nth-child(2) .portfolio-image {
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border: 2px solid rgba(0, 255, 255, 0.4);
}

.portfolio-item:nth-child(3) .portfolio-image {
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 128, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border: 2px solid rgba(0, 128, 255, 0.4);
}

.portfolio-item:nth-child(4) .portfolio-image {
    background:
        radial-gradient(circle at 30% 70%, rgba(128, 0, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border: 2px solid rgba(128, 0, 255, 0.4);
}

.portfolio-item:nth-child(5) .portfolio-image {
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 0, 128, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border: 2px solid rgba(255, 0, 128, 0.4);
}

.portfolio-item:nth-child(6) .portfolio-image {
    background:
        radial-gradient(circle at 40% 60%, rgba(0, 255, 128, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border: 2px solid rgba(0, 255, 128, 0.4);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 0, 255, 0.3);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.portfolio-overlay p {
    opacity: 0.9;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 255, 255, 0.15) 100%);
    border-top: 1px solid rgba(255, 0, 255, 0.3);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0d1117 75%, #161b22 100%);
    color: white;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff00ff;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d1117 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0d1117 75%, #161b22 100%);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(255, 0, 255, 0.3);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff00ff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 255, 0.4);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-mini {
        justify-content: center;
        gap: 1rem;
    }

    .hero-stat {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .floating-card {
        padding: 1rem;
    }

    .floating-card i {
        font-size: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Screen reader only - accessible but visually hidden */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}