/* General styles */
body {
    font-family: 'Segoe UI',Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.breadcrumb {
    margin: 20px 0;
    padding: 10px;
    font-size: 14px;
    background-color: #f1f1f1;
    color: #666;
}

.breadcrumb a {
    color: #ed0404;
    text-decoration: none;
}

.breadcrumb span {
    color: #333;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
.header-container {
    width: 100%;
    position: relative;
    z-index: 1000;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Embedded Systems Design Section */
#embedded-systems {
    padding: 60px 0;
    background-color: #f9f9f9;
}

#embedded-systems h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

#embedded-systems h2 .highlight {
    color: #ed0404; /* Orange color for 'Systems' */
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.content .image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    animation: animate 1.5s ease-in-out;
}

.content .text {
    max-width: 600px;
    font-size: 1.1em;
    line-height: 1.6;
}

.capabilities {
    margin-top: 40px;
}

.capabilities h3 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.capabilities li {
    line-height: 2.5;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #333;
    color: white;
    font-size: 1.2em;
}

table td ul {
    padding-left: 20px;
    list-style-type: disc;
}

table td ul li {
    margin-bottom: 10px;
}

/* Animation */
@keyframes animate {
    from {
        opacity: 0;
        transform: translateY(100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .content .text, .content .image {
        max-width: 100%;
    }
}



/* Font Awesome icons for social media */
.fab {
    font-family: 'Font Awesome 5 Brands';
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 20px;
    }
}
