body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
}

header {
    color: #333;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: #ffffff;
    transition: background 0.3s, box-shadow 0.3s;
}

.header-container.sticky {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 20px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

.carousel img {
    width: 100%;
    height: auto;
}

section {
    padding: 40px 20px;
    background: #ffffff;
    margin: 20px 0;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #007bff;
}

p {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.design-img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px;
}

li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.team-member {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.project {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.project:hover {
    background-color: #f1f1f1;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.application {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    padding: 20px;
    margin: 10px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.application i {
    color: #007bff;
    font-size: 40px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.application:hover i {
    color: #0056b3;
}

.application:hover {
    background-color: #f1f1f1;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Add to existing CSS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

#team, #projects, #applications {
    animation-delay: 1s;
}


.team-container, .projects-container, .applications-container, .contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.team-member, .project, .application, .contact-left, .contact-right {
    flex: 1 1 300px;
    margin: 10px;
    background: #f1f1f1;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.team-member img, .project img, .application img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.member-info, .project-info {
    margin-top: 10px;
}

.member-info h3, .project-info h3 {
    font-size: 20px;
    color: #007bff;
}

.member-info p, .project-info p {
    font-size: 16px;
    color: #333;
}

.project-info a {
    text-decoration: none;
    color: #007bff;
    display: block;
    margin-top: 10px;
}

.contact-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.contact-left, .contact-right {
    padding: 20px;
}

.contact-left form {
    display: flex;
    flex-direction: column;
}

.contact-left label {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.contact-left input, .contact-left textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-left button {
    padding: 10px;
    font-size: 16px;
    background: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-left button:hover {
    background: #0056b3;
}

.contact-right .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-right .contact-item i {
    margin-right: 10px;
    color: #007bff;
    font-size: 20px;
}

footer {
    background: #ffffff;
    color: #007bff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
}
