body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: #E6F0FA;
}

header {
    width: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logoimage {
    width: 150px;
}

/* Default styles for the navbar */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
}

.navbar ul li {
    font-size: 18px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hide the hamburger button by default */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto; /* Pushes the hamburger to the far right */
    padding-right: 20px; 
}

.container2 {
    display: flex;
    padding: 40px 20px;
    background-color: #A9DAF7;
}

.home{
    display: flex;
    gap: 50px;
}

.imagehome > img {
    width: 400px;
    height: 400px;
}

.imageabout > img {
   width: 500px;
   height: 300px;
}

.image-slider img {
    width: 200px;
    height: 100px;
}



.textPlusImage {
    display: flex;
    gap: 150px;
}

.section2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    max-width: 600px;
    padding: 20px;

}

.texthome {

    margin-top: 50px;
    width: 60%;
    font-size: 20px;
    padding: 20px;
}

.container3 {
    background-image: linear-gradient(to right, #008EFE, #005598);
    padding: 40px 20px;
    color: white;
}

.textabout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section1{
    font-size: 18px;
    max-width: 600px;
}

h1 {
    font-size: 24px;
    margin-bottom: 10px;
}


.container4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    background-color: #A9DAF7;
    align-items: center;
}

.item1, .item3, .item5 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    max-width: 700px;
    width: 100%;
    margin-right: 500px;
    text-align: center
}

.item2, .item4{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin-left: 500px;
}

.image-card {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #3da5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
}

.image-card img {
    width: 100%; /* Make the image fill the width of the card */
    height: auto; /* Maintain the aspect ratio */
    border-radius: 5px; /* Keep the rounded corners */
    object-fit: cover; /* Ensures the image fits nicely within the card */
}

p {
    font-size: 16px;
    color: #333;
    max-width: 600px;
}

.slider {
    width: 100%;
    max-width: 500px; /* Adjust as needed */
    margin: auto;
    overflow: hidden;
}

.slider-image {
    width: 100%;
    height: 300px; /* Set a fixed height */
    object-fit: cover; /* Ensures all images are the same size and cropped if needed */
}

.btn {
    background-color: #008EFE;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn > a {
    color: white;
    text-decoration: none;
}

.btn:hover {
    background-color: #005598;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    min-width: 150px;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* Show dropdown when active */
.dropdown.active .dropdown-content {
    display: block;
}

/*responsive*/
@media  screen and (max-width: 800px) {
    .container2 {
        flex-direction: column;
        padding: 20px;
    }

    .home{
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul {
        display: none; /* Hide the menu by default */
        flex-direction: column;
        background-color: #ffffff;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-radius: 5px;
    }

    .navbar ul.active {
        display: flex; /* Show the menu when active */
    }

    .hamburger {
        display: block; /* Show the hamburger button */
    }

    .imagehome > img {
        width: 300px;
        height: 300px;
    }

    .imageabout > img {
        width: 300px;
        height: 200px;
    }

    .textPlusImage {
        flex-direction: column;
        gap: 20px;
    }

    .section2{
        font-size: 16px;
        padding: 10px;
    }

    .texthome {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }

    .container3 {
        padding: 20px;
        align-items: center;
        justify-content: center;
    }

    .textabout {
        gap: 10px;
    }

    .section1{
        font-size: 16px;
    }

    .container4 {
        padding: 20px;
    }

    .item1, .item2, .item3, .item4, .item5 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0px;
    }

    .image-card {
        padding: 10px;
    }

    p {
        font-size: 14px;
    }
    
}
