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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #F8FAFC;
    background-color: #030712;
}

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

/* Typography */
.text-primary {
    color: #06B6D4;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #06B6D4;
    color: white;
}

.btn-primary:hover {
    background-color: #0891B2;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background-color: rgba(30, 41, 59, 0.8);
    color: #F8FAFC;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(30, 41, 59, 1);
    border-color: #6366F1;
}

.btn-outline {
    background-color: transparent;
    color: #06B6D4;
    border: 2px solid #06B6D4;
}

.btn-outline:hover {
    background-color: #06B6D4;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 50;
    box-shadow: 0 1px 3px rgba(6, 182, 212, 0.1);
    border-bottom: 1px solid rgba(30, 41, 59, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

a{
    text-decoration: none;
    color: #F8FAFC;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #06B6D4;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-1, .hero-bg-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4, #6366F1);
    opacity: 0.1;
    filter: blur(60px);
}

.hero-bg-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
}

.hero-bg-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #06B6D4, #6366F1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8FAFC;
}

.stat-label {
    font-size: 0.875rem;
    color: #94A3B8;
}

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

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #06B6D4, #6366F1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.section-description {
    color: #94A3B8;
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #030712, rgba(30, 41, 59, 0.1));
}

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

.service-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(30, 41, 59, 0.6);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.service-content {
    display: flex;
    gap: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06B6D4, #6366F1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #F8FAFC;
}

.service-description {
    color: #94A3B8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    font-size: 0.75rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(99, 102, 241, 0.2));
    color: #06B6D4;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06B6D4;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.service-link:hover {
    gap: 0.75rem;
    color: #0891B2;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: #030712;
}

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

.project-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(30, 41, 59, 0.3);
    aspect-ratio: 4/3;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.project-category {
    font-size: 0.75rem;
    color: #06B6D4;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(99, 102, 241, 0.2));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
    color: #F8FAFC;
}

.project-card:hover .project-title {
    color: #06B6D4;
}

.project-description {
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    color: #94A3B8;
    background-color: rgba(30, 41, 59, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.1), #030712);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(30, 41, 59, 0.6);
    transition: box-shadow 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.team-member {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    object-fit: cover;
    flex-shrink: 0;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #F8FAFC;
}

.team-title {
    color: #06B6D4;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(30, 41, 59, 0.6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #06B6D4;
    color: white;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(30, 41, 59, 0.6);
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
}

.stat-label {
    font-size: 0.875rem;
    color: #94A3B8;
}

.stat-value {
    font-weight: 600;
    color: #F8FAFC;
}

.team-skills {
    margin-top: 1rem;
}

.skills-label {
    font-size: 0.875rem;
    color: #94A3B8;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    font-size: 0.75rem;
    background-color: rgba(30, 41, 59, 0.6);
    color: #F8FAFC;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.why-choose-us {
    background: linear-gradient(135deg, #06B6D4, #6366F1);
    border-radius: 1rem;
    padding: 3rem;
    color: white;
}

.why-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.why-item {
    text-align: center;
}

.why-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-subtitle {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.why-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #030712, rgba(30, 41, 59, 0.1));
}

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #F8FAFC;
}

.contact-description {
    color: #94A3B8;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

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

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06B6D4;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #F8FAFC;
}

.contact-link {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #06B6D4;
}

.contact-text {
    color: #94A3B8;
}

.response-time {
    padding: 1.5rem;
    background: linear-gradient(135deg, #06B6D4, #6366F1);
    border-radius: 1rem;
    color: white;
}

.response-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.contact-form-container {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(30, 41, 59, 0.6);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #F8FAFC;
}

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

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #F8FAFC;
    margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(30, 41, 59, 0.6);
    background: rgba(30, 41, 59, 0.3);
    color: #F8FAFC;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #06B6D4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    background: rgba(30, 41, 59, 0.5);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #94A3B8;
}

.form-textarea {
    resize: none;
    font-family: inherit;
}

/* Footer */
.footer {
    background-color: #030712;
    color: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
    margin-bottom: 1rem;
}

.footer-description {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(30, 41, 59, 0.6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #06B6D4;
    color: white;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F8FAFC;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 41, 59, 0.6);
}

.footer-copyright {
    color: #94A3B8;
    font-size: 0.875rem;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94A3B8;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal .footer-link {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon {
        align-self: center;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .team-avatar {
        width: 6rem;
        height: 6rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-graphic svg {
        width: 350px;
        height: 350px;
    }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    z-index: 10000;
    position: relative;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-toggle svg {
    transition: all 0.3s ease;
}

.mobile-toggle.active svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    transform-origin: center;
}

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

.mobile-toggle.active svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    transform-origin: center;
}

/* Blur effect on body content when menu is open */
body.menu-open > *:not(.header) {
    filter: blur(10px);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.menu-open .header {
    filter: none;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .portfolio {
        padding: 4rem 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .skills-list {
        justify-content: center;
    }
    
    .why-choose-us {
        padding: 2rem;
    }
    
    .why-title {
        font-size: 1.5rem;
    }
    
    .contact {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .mobile-toggle {
        display: block !important;
        background: rgba(30, 41, 59, 0.9) !important;
        border: 1px solid rgba(6, 182, 212, 0.3) !important;
        border-radius: 8px !important;
        padding: 0.75rem !important;
        box-shadow: 0 2px 8px rgba(6, 182, 212, 0.1) !important;
        color: #F8FAFC !important;
    }

    /* Mobile Navigation Logic - Full Screen Overlay */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 9999;
        
        /* Hidden by default on mobile */
        opacity: 0;
        visibility: hidden;
        transform: scale(0.9);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Shown when active class is added by JS */
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    /* Mobile nav links styling */
    .nav .nav-link {
        font-size: 1.8rem;
        font-weight: 700;
        color: #F8FAFC;
        text-decoration: none;
        padding: 1.2rem 2.5rem;
        border-radius: 16px;
        transition: all 0.3s ease;
        background: rgba(30, 41, 59, 0.6);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(6, 182, 212, 0.3);
        box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .nav .nav-link:hover {
        background: rgba(6, 182, 212, 0.2);
        color: #06B6D4;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
        border-color: rgba(6, 182, 212, 0.5);
    }
    
    .hero-graphic svg {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .team-card {
        padding: 1.25rem;
    }
    
    .why-choose-us {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .hero-graphic svg {
        width: 240px;
        height: 240px;
    }
    
    .nav .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

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

/* Additional responsive utilities */
.text-center-mobile {
    text-align: center;
}

@media (min-width: 769px) {
    .text-center-mobile {
        text-align: left;
    }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent CLS with aspect ratios */
.team-avatar {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* Optimize image loading */
    max-width: 128px;
    max-height: 128px;
    width: 128px;
    height: 128px;
}

.project-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    /* Optimize image loading */
    max-width: 400px;
    max-height: 300px;
}

/* Responsive tables */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

@media (min-width: 768px) {
    table {
        display: table;
        white-space: normal;
    }
}

/* Responsive video embeds */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive spacing utilities */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .hero-bg-1, .hero-bg-2 {
        display: none; /* Hide decorative elements on mobile for better performance */
    }
}

/* Ensure proper touch targets on mobile */
@media (max-width: 768px) {
    .btn, .nav-link, .social-link, .footer-social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-link {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Improve mobile form experience */
    .form-input, .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0.5rem;
    }
    
    /* Better mobile scrolling */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    .container {
        overflow-x: hidden;
    }
    
    /* Mobile-optimized animations */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Improve mobile navigation */
    .header {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-graphic svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .mobile-toggle {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 10001 !important;
    }
}

/* Print styles */
@media print {
    .header, .footer, .mobile-toggle, .nav {
        display: none !important;
    }
    
    .hero, .services, .portfolio, .about, .contact {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* 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;
}