:root {
    --menu-gradient: linear-gradient(to right, rgba(26, 58, 107, 0.9), rgba(10, 27, 56, 0.9), rgba(5, 16, 42, 0.9));
    --gradient: linear-gradient(to right, #FF4500, #FF6347);
    --primary-color: #FF4500;
    --accent-color: #FF6347;
    --background-gradient: linear-gradient(135deg, #1a3a6b 0%, #0a1b38 50%, #05102a 100%);
    --text-color: white;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--background-gradient);
    background-attachment: fixed;
}

canvas {
    position: fixed;
    top: 0; /* Changed back to 0 from 50vh */
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Starfield Canvas */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Navigation Bar Styles */
.nav-bar {
    background: var(--menu-gradient);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

    .nav-links a {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: var(--text-color);
            opacity: 0.8;
        }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
    }

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--menu-gradient);
        flex-direction: column;
        padding: 1rem 0;
        align-items: center;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links a {
            padding: 0.5rem 0;
        }
}

/* Index - Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    color: var(--text-color);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#carousel {
    opacity:0;    
    transition:opacity 0.5s ease-in-out;
}

.carousel-text {
    font-size: 2rem;
    margin-bottom: 2rem;
    min-height: 60px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .carousel-text {
        font-size: 1.5rem;
    }
}


/* Index - Service Section */
.services-section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(26, 58, 107, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* editado a partir */
    cursor: pointer;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) );
        z-index: 1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .service-card:hover {
        transform: translateY(-10px) rotateY(10deg); /* original: translateY(-10px)*/
        background: rgba(26, 58, 107, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

        .service-card:hover::before {
            opacity: 1;
        }

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 69, 0, 0.2);
    transform: scale(1.1) rotate(360deg);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: #ffffff;
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.service-description {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    font-size: 1.1rem;
} 
    /* agregado desde aqui*/
.service-card:hover .service-description {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

.index-service-features {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.service-card:hover .index-service-features {
    opacity: 1;
    transform: translateY(0);
}

.service-feature-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-size: 1.2rem;
    color: white;
}

    .service-feature-item svg {
        width: 25px;
        height: 25px;
        margin-right: 10px;
        stroke: var(--accent-color);
    }
    /*fin de agregado*/

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
a.cta-buttons {
    text-decoration: none; /* Remove underline */
}


.primary-cta, .secondary-cta {
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.primary-cta {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
}

.secondary-cta {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

    .primary-cta:hover, .secondary-cta:hover {
        transform: translateY(-2px);
    }

/* Index - More than code */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.more-than-code {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.feature-item {
    background: rgba(26, 58, 107, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    position: relative;
    overflow: hidden;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

        .feature-item:hover .feature-description {
            opacity: 1;
            transform: translateY(0);
        }

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 1.5rem auto;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.feature-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-color);
    opacity: 0;
    line-height: 1.6;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 107, 0.9);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.plus-sign {
    font-size: 2.5rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .features-grid {
        flex-direction: column;
    }

    .plus-sign {
        transform: rotate(90deg);
        padding: 1rem 0;
    }
}

/* Services Section */
.services-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(to bottom, rgba(26, 58, 107, 0.3), rgba(5, 16, 42, 0.3));
}

    .services-hero h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
        color: white;
        font-weight: 700;
        line-height: 1.2;
        background: linear-gradient(to right, #ffffff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: white;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        animation: fadeInUp 1s ease-out;
    }

    .services-hero p {
        font-size: 1.4rem;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.9;
        color: white;
        line-height: 1.6;
        animation: fadeInUp 1s ease-out 0.3s both;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.main-services {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 3rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .service-section:hover {
        transform: translateY(-5px);
    }

.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-icon-large {
    width: 80px;
    height: 80px;
    stroke: white;
}

.service-header h2 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
}

.service-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.6;
    max-width: 800px;
}

.service-categories {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr); /*repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 2rem;
    justify-content: center;
}



.category {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 0 1 calc(33.33% - 2rem); /* Ensures 3 items per row with spacing */
    box-sizing: border-box; /* Includes padding and border in size */
}

    .category h3 {
        font-size: 1.4rem;
        color: white;
        margin-bottom: 1rem;
    }

    .category ul {
        list-style: none;
        padding: 0;
    }

        .category ul li {
            color: white;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

            .category ul li::before {
                content: '>';
                color: var(--primary-color);
            }

@media (max-width: 480px) {
    .service-categories {
        grid-template-columns: 1fr; /* 1 column for very small screens */
    }
}
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.advantages-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

    .advantages-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        color: white;
        position: relative;
    }

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

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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


.advantage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    fill: none;
    stroke: white;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.advantage-card p {
    color: white;
    line-height: 1.6;
}

.process-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

    .process-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 4rem;
        color: white;
    }

.process-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    padding: 2rem;
}

.process-node {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .process-node:hover {
        transform: translateY(-5px);
    }

.process-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-icon {
    width: 40px;
    height: 40px;
    stroke: white;
}

.process-node h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.process-node p {
    color: white;
    line-height: 1.6;
}

.process-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.2rem;
    }

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

    .service-item {
        padding: 1.5rem;
    }

    .advantages-section {
        padding: 2rem 1rem;
    }

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

    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-section {
        padding: 4rem 1rem;
    }

        .process-section h2 {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

    .custom-software-section {
        padding: 4rem 1rem;
    }

        .custom-software-section h2 {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

    .custom-item {
        padding: 1.5rem;
    }

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

    .tech-stack-section {
        padding: 4rem 1rem;
    }

    .team-section {
        padding: 4rem 1rem;
    }

        .team-section h2 {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

    .team-member {
        padding: 1.5rem;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.process-circle:hover {
    animation: pulse 1.5s infinite ease-in-out;
}

.tech-stack-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

    .tech-stack-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 4rem;
        color: white;
    }

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

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .tech-category:hover {
        transform: translateY(-5px);
    }

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

.tech-icon {
    width: 40px;
    height: 40px;
    stroke: white;
}

.tech-category h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

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

.tech-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

    .tech-logo:hover {
        transform: scale(1.1);
    }

.tech-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-logo-name {
    color: white;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.custom-software-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

    .custom-software-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 4rem;
        color: white;
    }

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

.custom-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .custom-item:hover {
        transform: translateY(-5px);
    }

.custom-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    stroke: white;
}

.custom-item h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.custom-item p {
    color: white;
    line-height: 1.6;
    font-size: 1.1rem;
}

.values-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    stroke: white;
}

.mission-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 2rem;
}

.quote {
    font-size: 1.8rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.team-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

    .team-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 4rem;
        color: white;
    }

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

    .team-member:hover {
        transform: translateY(-5px);
    }

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .member-avatar svg {
        width: 100%;
        height: 100%;
        stroke-width: 1.5;
    }

.member-name {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-bio {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.2rem;
    }

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

    .service-item {
        padding: 1.5rem;
    }

    .advantages-section {
        padding: 2rem 1rem;
    }

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

    .process-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-section {
        padding: 4rem 1rem;
    }

        .process-section h2 {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

    .custom-software-section {
        padding: 4rem 1rem;
    }

        .custom-software-section h2 {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

    .custom-item {
        padding: 1.5rem;
    }

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

    .tech-stack-section {
        padding: 4rem 1rem;
    }

    .team-section {
        padding: 4rem 1rem;
    }

        .team-section h2 {
            font-size: 2rem;
            margin-bottom: 3rem;
        }

    .team-member {
        padding: 1.5rem;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

    .contact-section h2 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
        color: white;
    }

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 2rem;
}

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

    .form-group label {
        display: block;
        color: white;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }

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

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

    .submit-btn:hover {
        transform: translateY(-2px);
    }

.contact-info {
    text-align: center;
    margin-top: 3rem;
    color: white;
}

    .contact-info p {
        margin: 0.5rem 0;
        font-size: 1.1rem;
    }

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-logo {
        max-width: 200px;
    }
}

/* Footer */
.footer {
    color: var(--text-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--accent-color);
        }

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

