@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:wght@400;700&family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MuseoModerno', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    scroll-behavior: smooth;
}

header {
    background: linear-gradient(135deg, #000000, #0d47a1);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 50px; /* Adjust height as needed */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00bcd4;
}

.hero {
    background: url('../images/purple-and-indigo-halftone-patterned-background.jpg') center / cover no-repeat;
    color: #fff;
    height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-left {
    flex: 1;
    padding-right: 2rem;
}

.hero-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-left p {
    font-size: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-right {
    flex: 1;
    text-align: center;
}

.hero-right img {
    max-width: 100%;
    height: auto;
    max-height: 55vh;
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-button {
    background: linear-gradient(145deg, #00bcd4, #0097a7);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 1s both;
}

.cta-button:hover {
    background: linear-gradient(145deg, #0097a7, #00695c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,188,212,0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(ppx);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-help {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

section {
    padding: 0;
}

#contact {
    padding-top: 0;
    padding-bottom: 0;
}

footer {
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 2rem;
}

.robot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.robot-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(42,42,42,0.9));
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.robot-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/lucosalam.png') center / cover no-repeat;
    opacity: 0.1;
    z-index: 1;
    border-radius: 10px;
}

.robot-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/lucodoc.png') center / cover no-repeat;
    opacity: 0.1;
    z-index: 1;
    border-radius: 10px;
}

.robot-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/lucochotu.png') center / cover no-repeat;
    opacity: 0.1;
    z-index: 1;
    border-radius: 10px;
}

.robot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,255,255,0.5);
}

.robot-card h3,
.robot-card p {
    position: relative;
    z-index: 2;
}

.robot-card h3 {
    margin-bottom: 1rem;
    color: #00bcd4;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,255,255,0.5);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #00bcd4;
}

.team-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 2rem;
    align-items: flex-start;
}

.team-left {
    flex: 1;
    padding: 2rem 0;
}

.team-left h2 {
    margin-bottom: 1rem;
}

.team-left hr {
    border: none;
    height: 2px;
    background: #00bcd4;
    margin: 1rem 0;
}

.team-right {
    flex: 2;
    padding: 2rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,255,255,0.5);
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-bottom: 2px solid #00bcd4;
    background: #f5f5f5; /* light bg if needed */
}

.team-member h4 {
    margin: 1rem 0 0.5rem;
    color: #00bcd4;
}

.team-member p {
    color: #fff;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.team-member .social-links {
    padding: 1rem;
    margin-top: auto;
}

.testimonials-bg {
    background: url('../images/female-it-technician-in-server-room.jpg') center / cover no-repeat;
    color: #fff;
    padding: 0;
    position: relative;
}

.testimonials-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.testimonials-bg .container {
    position: relative;
    z-index: 2;
}

.testimonials-bg h2 {
    margin-bottom: 0.5rem;
}

.testimonials-bg p {
    margin-bottom: 1rem;
}

.testimonials-bg hr {
    border: none;
    height: 2px;
    background: #00bcd4;
    margin: 1rem 0 2rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonials-grid-alt {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial-item {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    border: 1px solid #333;
    flex: 1;
    min-width: 250px;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item img {
    width: auto;
    height: auto;
    max-width: 150px;
    margin: 0 auto 1rem;
    display: block;
}

.testimonial-item h4 {
    margin-bottom: 1rem;
    color: #00bcd4;
}

.testimonial-item p {
    margin-bottom: 1rem;
    text-align: left;
}

.about {
    background: linear-gradient(135deg, #000000, #1976d2);
    padding: 0;
}

.about-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-left {
    position: relative;
    flex: 1;
    margin-right: 2rem;
}

.about-left img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    text-align: center;
    color: #fff;
}

.counter .number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.counter .title {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.about-right {
    flex: 1;
}

.about-right h2 {
    margin-bottom: 1rem;
}

.about-right hr {
    border: none;
    height: 2px;
    background: #00bcd4;
    margin: 1rem 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    border: 1px solid #333;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: auto;
    max-width: 100px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.feature-item h3 {
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.video-bg {
    background: url('../images/robotic-arms-along-assembly-line-in-modern-factory-.jpg') center / cover no-repeat;
    color: #fff;
    padding: 0;
    position: relative;
}

.video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.video-bg .container {
    position: relative;
    z-index: 2;
}

.video-bg h2 {
    margin-bottom: 0.5rem;
    text-align: center;
}

.video-bg p {
    text-align: center;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.video-item {
    text-align: center;
}

.video-item iframe {
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
}

.video-item p {
    margin-top: 1rem;
    text-align: left;
}

#events-gallery {
    background: url('../images/female-it-technician-in-server-room.jpg') center / cover no-repeat;
    color: #fff;
    padding: 0;
    position: relative;
}

#events-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#events-gallery .container {
    position: relative;
    z-index: 2;
}

#events-gallery h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-row {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.gallery-item {
    flex: 1;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.gallery-item p {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 0.5rem;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.partner-item {
    flex: 1 1 300px;
    max-width: 300px;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    border: 1px solid #333;
    overflow: hidden;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-background {
    padding: 2rem;
    position: relative;
}

.partner-background img {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}

.partner-background h3 {
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.partner-background p {
    color: #fff;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #00bcd4;
    text-decoration: none;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0097a7;
}

.inquiry-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    gap: 2rem;
    align-items: flex-start;
}

.inquiry-left {
    flex: 1;
}

.inquiry-left h2 {
    margin-bottom: 0.5rem;
}

.inquiry-left hr {
    border: none;
    height: 2px;
    background: #00bcd4;
    margin: 1rem 0 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-right: 1rem;
    color: #00bcd4;
    font-size: 1.5rem;
}

.contact-item a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
}

.contact-item a:hover {
    text-decoration: underline;
}

.inquiry-right {
    flex: 1;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .inquiry-container {
        flex-direction: column;
    }
    .partner-grid {
        flex-direction: column;
    }
}

#contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

#contact form input:nth-child(3),
#contact form select,
#contact form textarea {
    grid-column: span 2;
}

#contact form button {
    grid-column: span 2;
    justify-self: center;
    width: fit-content;
    padding: 1rem 2rem;
}

#contact .container {
    text-align: center;
}

#contact input,
#contact select,
#contact textarea {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #1e1e1e;
    color: #fff;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #aaa;
}

#contact button {
    background: linear-gradient(145deg, #1976d2, #0d47a1);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}

#contact button:hover {
    background: linear-gradient(145deg, #0d47a1, #001122);
    transform: scale(1.05);
}

footer {
    background: linear-gradient(135deg, #000000, #033670);
    color: #fff;
    text-align: center;
    padding: 0.2rem 0;
    margin-top: 0;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem 2rem;
    }
    .nav-links {
        margin-top: 1rem;
    }
    .nav-links li {
        margin-left: 1rem;
    }
    .tech-help {
        display: none;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .hero-left h2 {
        font-size: 2rem;
    }
    .hero-left p {
        font-size: 1rem;
    }
    .about-container {
        flex-direction: column;
    }
    .about-left {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .team-container {
        flex-direction: column;
    }
    .team-row {
        flex-direction: column;
        gap: 1rem;
    }
    .gallery-row {
        flex-direction: column;
    }
    .video-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid, .testimonials-grid-alt {
        flex-direction: column;
    }
    .testimonial-item {
        margin-bottom: 1rem;
    }
    #contact form {
        grid-template-columns: 1fr;
        gap: 0;
    }
    #contact form input:nth-child(3),
    #contact form textarea,
    #contact form button {
        grid-column: span 1;
    }
}
