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

html {
    scroll-behavior: smooth;
    color-scheme: dark; /* Force dark theme */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a !important; /* Force dark background */
    color: #e0e0e0 !important; /* Force light text */
    overflow-x: hidden;
}

/* Ensure all elements maintain dark theme */
* {
    color-scheme: dark !important;
}

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

/* Navigation */
.navbar {
    background-color: #111111;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

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

.nav-logo h2 {
    color: #00d4ff;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

.nav-link:hover {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00d4ff;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background-color: #00d4ff;
    color: #000000;
    transform: translateY(-2px);
}

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

.tech-illustration {
    font-size: 15rem;
    color: #00d4ff;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #111111;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    flex: 1;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-link-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333;
    border-radius: 15px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.portfolio-link-card:hover::before {
    left: 100%;
}

.portfolio-link-card:hover {
    transform: translateX(10px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.link-url {
    color: #00d4ff;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.link-arrow {
    font-size: 1.2rem;
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.portfolio-link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-highlight {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 2px solid #333;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.pricing-icon {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.pricing-content h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
    font-size: 1rem;
}

.feature-item i {
    color: #00d4ff;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
}

.pricing-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Pricing Benefits */
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .pricing-content h3 {
        font-size: 1.8rem;
    }
    
    .pricing-features {
        text-align: left;
    }
    
    .feature-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .pricing-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .pricing-content h3 {
        font-size: 1.6rem;
    }
    
    .pricing-icon {
        font-size: 3rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
}
.about {
    padding: 100px 0;
    background-color: #0a0a0a;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

.tech-graphic {
    font-size: 12rem;
    color: #00d4ff;
    opacity: 0.6;
}

/* Contact Section - Card Based Layout */
.contact {
    padding: 100px 0;
    background-color: #0a0a0a;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    word-wrap: break-word;
    box-sizing: border-box;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
}

.contact-card-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    position: relative;
    padding-top: 0.5rem;
}

.contact-card-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.contact-card-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.contact-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

.contact-link:hover {
    color: #ffffff;
}

/* Contact Card Overlay Animation */
.contact-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 153, 204, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    color: #000000;
    font-weight: 600;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
}

/* Specific card colors */
.email-card:hover .contact-card-overlay {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 153, 204, 0.9));
}

.phone-card:hover .contact-card-overlay {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
}

.support-card:hover .contact-card-overlay {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(147, 51, 234, 0.9));
}

/* Contact Form Card */
.contact-form-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    margin: 0 1rem;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.form-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-card-header h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-card-header p {
    color: #b0b0b0;
    font-size: 1rem;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #111111;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background-color: #1a1a1a;
}

.form-group input:focus + .input-focus-line,
.form-group select:focus + .input-focus-line,
.form-group textarea:focus + .input-focus-line {
    transform: scaleX(1);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

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

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.form-submit-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .contact-card {
        min-height: 200px;
        padding: 2.5rem 2rem;
        margin: 0 0.5rem;
    }
    
    .contact-form-card {
        padding: 2.5rem 2rem;
        margin: 0 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-card-header h3 {
        font-size: 1.8rem;
    }
    
    .contact-card-content h3 {
        font-size: 1.3rem;
    }
    
    .contact-card-content p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-grid {
        gap: 1.5rem;
        padding: 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin: 0;
        min-height: 180px;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .form-submit-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .contact-card-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-card-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
    }
    
    .contact-card-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 50px 0 20px;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

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

.social-links a {
    color: #b0b0b0;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #111111;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .tech-illustration {
        font-size: 8rem;
    }

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

    .about-stats {
        justify-content: center;
    }

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

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

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

    /* Portfolio mobile fixes */
    .portfolio-links {
        margin: 2rem 1rem 0;
    }

    .portfolio-link-card {
        padding: 1.5rem;
        margin: 0;
    }

    .portfolio-link-card:hover {
        transform: none;
    }

    .link-content {
        flex: 1;
        min-width: 0;
    }

    .link-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .link-url {
        font-size: 0.8rem;
        word-break: break-all;
    }

    /* Pricing mobile fixes */
    .feature-item {
        justify-content: flex-start;
        text-align: left;
    }

    .feature-item i {
        flex-shrink: 0;
        width: 20px;
        text-align: center;
    }
}

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

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

    .container {
        padding: 0 1rem;
    }

    .tech-illustration {
        font-size: 6rem;
    }

    /* Portfolio mobile fixes for small screens */
    .portfolio-links {
        margin: 1.5rem 0.5rem 0;
    }

    .portfolio-link-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .link-icon {
        width: 50px;
        height: 50px;
    }

    .link-icon i {
        font-size: 1.5rem;
    }

    .link-content h3 {
        font-size: 1rem;
    }

    .link-url {
        font-size: 0.75rem;
    }

    /* Pricing mobile fixes for small screens */
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .feature-item {
        gap: 0.75rem;
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1rem;
        width: 18px;
    }
}
    }

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

    .tech-illustration {
        font-size: 6rem;
    }

    .tech-graphic {
        font-size: 8rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .portfolio-item {
        animation: fadeInUp 0.6s ease-out;
    }
}

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

/* Ensure dark theme overrides any system preferences */
@media (prefers-color-scheme: light) {
    body {
        background-color: #0a0a0a !important;
        color: #e0e0e0 !important;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #0a0a0a !important;
        color: #e0e0e0 !important;
    }
}
