* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0; 
}

.header {
    width: 100vw;
    display: flex;
    justify-content: center; 
    align-items: center;
    background-color: #555;
    padding: 20px 0;
    color: #fff;
    position: relative;
}

.header-text {
    text-align: center;
}

.header h1 {
    font-size: 30px; 
    margin: 0;
    font-weight: bold;
}

.header h2 {
    font-size: 35px;
    margin: 0;
    color: #fff;
}

.logodiv {
    height: 5rem; 
    width: 5rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 40px;
}

.logoimg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; 
}

@media (max-width: 768px) {
    .logodiv {
        padding-top: 20px;
        height: 4rem;
        width: 4rem;
        top: 5px;
        left: 10px;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .header {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logodiv {
        height: 3rem;
        width: 3rem;
        top: 5px;
        left: 10px;
    }

    .header h1 {
        font-size: 1.2rem;
    }

    .header {
        padding: 10px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .header-text {
        margin-top: 10px;
        text-align: center;
    }
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 20px 0; 
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 50px; 
    margin-bottom: 15px;
}

.image-container img {
    width: 350px; 
    height: 300px; 
    object-fit: cover;
    border-radius: 5px;
}

.input-boxes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.box {
    width: 48%;
}

h2, h3 {
    font-size: 25px;
    color: #333;
}

.description-box {
    margin-top: 10px;
}

p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

footer {
    width: 100vw; 
    background-color: #ffffff; 
    color: #393E46; 
    text-align: center;
    padding: 20px 0;
    border-top: 3px solid #00ADB5; 
    position: relative; 
    bottom: 0; 
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content a {
    color: #00ADB5; 
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #393E46; 
}

.footer-content p {
    margin: 10px 0 0;
}





