/* MARSPEC Website Styles */

/* Base Styles & Variables */
:root {
    --deep-space-blue: #0B0F2F;
    --electric-cyan: #00E6FF;
    --eco-green: #2ECC71;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 230, 255, 0.2);
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-space-blue);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(11, 15, 47, 0.8) 0%, rgba(11, 15, 47, 0.4) 50%, rgba(11, 15, 47, 0.2) 100%),
        linear-gradient(to bottom, rgba(0, 230, 255, 0.1) 0%, rgba(11, 15, 47, 0.9) 100%);
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--electric-cyan);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    position: relative;
    display: inline-block;
    color: var(--white);
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--electric-cyan);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.section-line::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--eco-green);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Glassmorphism / Neumorphism UI */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    padding: 25px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--electric-cyan);
    color: var(--deep-space-blue);
    box-shadow: 0 5px 15px rgba(0, 230, 255, 0.4);
}

.btn-primary:hover {
    background: var(--electric-cyan);
    box-shadow: 0 8px 25px rgba(0, 230, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--electric-cyan);
    box-shadow: 0 5px 15px rgba(0, 230, 255, 0.2);
}

.btn-secondary:hover {
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 230, 255, 0.4);
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

.whatsapp-link {
    background: var(--whatsapp-green);
    color: var(--white);
}

.whatsapp-link:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
}

.direct-contact {
    margin-top: 20px;
    text-align: center;
}

/* Mobile Responsiveness Improvements */
@media screen and (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .direct-contact {
        margin-top: 15px;
    }
    
    .direct-contact .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }
}

/* Glowing Text Effect */
.glowing-text {
    text-shadow: 0 0 10px rgba(0, 230, 255, 0.5),
                 0 0 20px rgba(0, 230, 255, 0.3),
                 0 0 30px rgba(0, 230, 255, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(11, 15, 47, 0.8);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(11, 15, 47, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    position: relative;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-cyan), transparent);
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list li a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-cyan);
    transition: var(--transition);
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(to bottom, rgba(11, 15, 47, 0.8), rgba(11, 15, 47, 0.6));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Satellite Animation */
.satellite {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 60px;
    background-image: url('../assets/images/satellite.svg');
    background-size: contain;
    background-repeat: no-repeat;
    animation: satelliteMove 30s linear infinite;
}

@keyframes satelliteMove {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(30px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.energy-beam {
    position: absolute;
    top: 25%;
    right: 15%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--electric-cyan), transparent);
    animation: beamGrow 3s ease-out infinite;
    opacity: 0.7;
    transform-origin: top;
}

@keyframes beamGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        height: 60vh;
        opacity: 0.7;
    }
    100% {
        height: 60vh;
        opacity: 0;
    }
}

.earth {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-image: url('../assets/images/earth.svg');
    background-size: cover;
    box-shadow: 0 0 30px rgba(0, 230, 255, 0.3);
    animation: earthRotate 60s linear infinite;
}

@keyframes earthRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 230, 255, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(0, 230, 255, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 40% 80%, rgba(0, 230, 255, 0.1) 0%, transparent 10%),
        radial-gradient(circle at 60% 20%, rgba(0, 230, 255, 0.1) 0%, transparent 10%);
    animation: particlesFade 8s ease-in-out infinite alternate;
}

@keyframes particlesFade {
    0% {
        opacity: 0.3;
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        opacity: 0.7;
        background-position: 10% 10%, -10% -10%, 5% -5%, -5% 5%;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.founder {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.founder-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--electric-cyan);
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.5);
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline {
    position: relative;
    padding: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: var(--electric-cyan);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--electric-cyan);
    box-shadow: 0 0 10px var(--electric-cyan);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 2px solid var(--electric-cyan);
}

/* Technology Section */
.tech-infographic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.tech-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: var(--transition);
}

.tech-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px 0 var(--glass-shadow);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.3);
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--electric-cyan);
}

.tech-arrow {
    width: 50px;
    height: 2px;
    background: var(--electric-cyan);
    position: relative;
    margin: 0 10px;
}

.tech-arrow::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--electric-cyan);
}

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

.benefit-card {
    padding: 30px;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 var(--glass-shadow);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--eco-green);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.solution-card {
    position: relative;
    padding: 30px;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    transition: var(--transition);
    overflow: hidden;
    height: 300px;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 var(--glass-shadow);
}

.solution-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.3);
}

.solution-icon i {
    font-size: 2rem;
    color: var(--electric-cyan);
}

.solution-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 47, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.solution-card:hover .solution-hover {
    opacity: 1;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 47, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-zoom {
    width: 50px;
    height: 50px;
    background: var(--electric-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--deep-space-blue);
    font-size: 1.2rem;
    margin-top: 15px;
    transition: var(--transition);
}

.gallery-zoom:hover {
    transform: scale(1.1);
    background: var(--white);
}

.video-container {
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Investors Section */
.investor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Benefit icon styles used in other sections */
.benefit-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--electric-cyan);
}

/* Declaration Section */
.declaration-content {
    max-width: 800px;
    margin: 0 auto;
}

.declaration-box {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.founder-declaration {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature {
    margin-top: 30px;
    text-align: right;
    font-family: 'Orbitron', sans-serif;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
}

.contact-info {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.3);
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--electric-cyan);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--electric-cyan);
    transform: translateY(-5px);
}

.social-link i {
    font-size: 1.2rem;
    color: var(--white);
}

.social-link:hover i {
    color: var(--deep-space-blue);
}

/* Footer */
.footer {
    background: rgba(11, 15, 47, 0.9);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--electric-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 47, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--electric-cyan);
    transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .tech-infographic {
        flex-direction: column;
        gap: 30px;
    }
    
    .tech-step {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tech-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
}

@media screen and (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-list {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(11, 15, 47, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    backdrop-filter: blur(10px);
}
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 20px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    

    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .tech-benefits,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .founder {
        flex-direction: column;
        text-align: center;
    }
}