:root {
    --primary-green: #00ff88;
    --secondary-green: #00cc6a;
    --dark-green: #003d26;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-glow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 30px currentColor;
    --transition-fast: all 0.3s ease;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #000;
}

::-webkit-scrollbar-thumb {
    background-color: #00ff88;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #000;
}

::-webkit-scrollbar-y {
    width: 5px;
}
::-webkit-scrollbar-x {
    width: 5px;
}
::-webkit-scrollbar-thumb:vertical {
    background-color: #00ff88;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* RTL adjustments */
[dir="rtl"] {
    text-align: right;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.1);
    z-index: 1000;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #000;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Above navbar */
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 3px;
}

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

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

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

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.03) 0%, 
        rgba(0, 204, 106, 0.02) 50%,
        transparent 100%);
    padding-top: 80px; /* Space for fixed navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(0.5px);
}

/* Enhanced gradient orbs with glow effects */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
    opacity: 0.6;
    will-change: transform, opacity;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, var(--primary-green), rgba(0, 255, 136, 0.3), transparent);
    top: -250px;
    right: -200px;
    animation: floatOrb1 8s infinite ease-in-out;
    box-shadow: 0 0 100px rgba(0, 255, 136, 0.3);
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 70% 70%, var(--secondary-green), rgba(0, 204, 106, 0.2), transparent);
    bottom: -200px;
    left: -150px;
    animation: floatOrb2 10s infinite ease-in-out -2s;
    box-shadow: 0 0 80px rgba(0, 204, 106, 0.4);
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 50% 50%, var(--dark-green), rgba(0, 61, 38, 0.4), transparent);
    top: 20%;
    right: 10%;
    animation: floatOrb3 12s infinite ease-in-out -4s;
    box-shadow: 0 0 120px rgba(0, 61, 38, 0.3);
}

/* Enhanced floating animations */
@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 40px) scale(0.9) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -20px) scale(1.05) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(-40px, 30px) scale(1.15);
        opacity: 0.7;
    }
    66% {
        transform: translate(25px, -25px) scale(0.85);
        opacity: 0.3;
    }
}

@keyframes floatOrb3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    40% {
        transform: translate(35px, -35px) scale(1.2);
        opacity: 0.6;
    }
    80% {
        transform: translate(-15px, 15px) scale(0.9);
        opacity: 0.2;
    }
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeInUp 1s ease-out;
    z-index: 2;
    position: relative;
}

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

/* Enhanced title with typewriter effect */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.title-line {
    display: block;
    min-height: 1.2em; /* Prevent layout shift during typing */
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced subtitle with fade-in */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 2s ease-out 0.8s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transition: var(--transition-fast);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transition: left 0.5s;
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--bg-dark);
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Enhanced floating cards with orbital animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-logo {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2) 0%, 
        rgba(0, 204, 106, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4),
                inset 0 0 30px rgba(0, 255, 136, 0.2);
    animation: centralPulse 4s ease-in-out infinite;
    will-change: transform, box-shadow;
}

@keyframes centralPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(0, 255, 136, 0.4),
                   inset 0 0 30px rgba(0, 255, 136, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 80px rgba(0, 255, 136, 0.6),
                   inset 0 0 40px rgba(0, 255, 136, 0.3);
    }
}

.logo-glow {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
    animation: rotateSlow 20s linear infinite;
}

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 0.75rem;
    text-align: center;
    transition: var(--transition-fast);
    animation: orbit 15s linear infinite;
    width: 120px;
    height: auto;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    will-change: transform, border-color, box-shadow;
}

.card-1 {
    width: 115px;
    height: 95px;
    top: 50px;
    left: 20px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.card-2 {
    width: 105px;
    height: 85px;
    top: 20px;
    right: 30px;
    animation-duration: 14s;
    animation-delay: -2s;
}

.card-3 {
    width: 125px;
    height: 100px;
    bottom: 30px;
    left: 10px;
    animation-duration: 16s;
    animation-delay: -4s;
}

.card-4 {
    width: 100px;
    height: 80px;
    bottom: 60px;
    right: 20px;
    animation-duration: 13s;
    animation-delay: -1s;
}

.card-5 {
    width: 110px;
    height: 90px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 11s;
    animation-delay: -3s;
}

.card-6 {
    width: 115px;
    height: 95px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation-duration: 15s;
    animation-delay: -5s;
}

.card-7 {
    width: 108px;
    height: 88px;
    top: 30%;
    left: -40px;
    animation-duration: 13s;
    animation-delay: -2.5s;
}

.card-8 {
    width: 118px;
    height: 98px;
    top: 30%;
    right: -40px;
    animation-duration: 14s;
    animation-delay: -1.5s;
}

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

.floating-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3),
                inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.floating-card h3 {
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-top: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive adjustments for floating cards */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem 0;
    }
    
    .hero-visual {
        margin-top: 3rem;
        height: 400px;
        transform: scale(0.9);
    }
}

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

/* Features Section */
.features {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.05), transparent);
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: -2rem auto 3rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.2),
                inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--bg-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-card);
}

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

.about-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.feature-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: bold;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.tech-item:hover i {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Services Detailed */
.services-detailed {
    padding: 8rem 0;
}

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

.service-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-fast);
}

.service-category:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    font-size: 2.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
    border-bottom: none;
}

/* Portfolio */
.portfolio {
    padding: 8rem 0;
    background: var(--bg-card);
}

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

.portfolio-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.portfolio-image {
    height: 200px;
    background: rgba(0, 255, 136, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.portfolio-tags span {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Team */
.team {
    padding: 8rem 0;
}

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

.team-member {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-fast);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.member-role {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: var(--bg-card);
}

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

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

.contact-icon {
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3),
                inset 0 0 10px rgba(0, 255, 136, 0.1);
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 32px rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-green), 
        var(--secondary-green), 
        var(--primary-green), 
        transparent);
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--primary-green);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px var(--primary-green), 0 0 30px var(--primary-green);
    }
}

.footer-content {
    padding: 36px;
    border-radius: 20px;
    background-image: radial-gradient(at 47% 33%, #003d26 0, transparent 59%), radial-gradient(at 82% 65%, rgb(0 0 0 / 80%) 0, transparent 55%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

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

.footer-section ul li {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.1);
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.monthly-services {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content, .contact-content {
        gap: 2rem;
    }
}

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

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.9);
        backdrop-filter: blur(15px);
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: var(--text-primary);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 60px;
    }

    .hero-content {
        padding: 2rem 1.5rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }

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

    .about-visual {
        margin-top: 2rem;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .tech-item {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .team-member,
    .portfolio-item,
    .portfolio-service-card {
        padding: 2rem;
    }
}

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

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

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

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

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

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

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

    .social-links {
        justify-content: center;
    }
}

/* Responsive glassmorphism */
@media (max-width: 768px) {
    .feature-card,
    .team-member,
    .portfolio-item,
    .portfolio-service-card {
        backdrop-filter: blur(10px);
        margin: 0 1rem;
    }
}

/* Add particle effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 204, 106, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 136, 0.4), transparent);
    background-size: 100px 100px;
    animation: sparkle 15s linear infinite;
    opacity: 0.6;
    will-change: transform;
}

@keyframes sparkle {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(360deg);
    }
}

/* Minimal portfolio services */
.portfolio-services {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.portfolio-services .section-subtitle {
    margin-bottom: 4rem;
}

.portfolio-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-fast);
    text-align: center;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.portfolio-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.portfolio-service-card .service-image {
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%, 
        rgba(0, 204, 106, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-service-card .service-placeholder {
    font-size: 3rem;
    filter: grayscale(0.3);
}

.portfolio-service-card .service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.portfolio-service-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: auto;
}

.portfolio-service-card .service-btn {
    width: auto;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    border-radius: 25px;
}

/* Remove service tags and tech tags from minimal cards */
.service-tags,
.portfolio-service-card .service-tags {
    display: none;
}

/* Responsive for portfolio services */
@media (max-width: 768px) {
    .portfolio-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-service-card .service-content h3 {
        font-size: 1.25rem;
    }
    
    .portfolio-service-card .service-content p {
        font-size: 0.875rem;
    }
}