
/* For Phones (426px and below) */
@media screen and (max-width: 426px) {
    body {
        background-image: none;
    }

    .abt-container{
        width: 400px;
    }

    .footer iframe
    {
        width: 100%;
        height: auto;
    }

    .footer .icon-item label{
        display: none;
    }
}

/* Responsive Navbar */
@media screen and (max-width: 768px) {
    .hnav ul {
        flex-direction: column;
        align-items: left;
        display: none; /* Hide menu by default */
        background-color: #1ecbe1; /* Ensure the background matches navbar */
        padding: 10px;
    }

    #toggle:checked + ul {
        display: flex; /* Show menu when toggled */
    }

    .hnav li a {
        font-size: 16px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    body {
        background-image: none;
    }

    .footer .icon-item label{
        display: none;
    }
}

/* Containers */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.abt-image img {
    width: 100%;
    border-radius: 10px;
}

.abt-container {
    padding: 20px;
}

.abt-container h2 {
    font-size: 24px;
    color: #1ecbe1;
    margin-bottom: 10px;
}

.abt-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}


/* Responsive Layout: Show Image First on Phone */
@media screen and (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }

    .abt-image {
        width: 100%;
        order: 1; /* Show image first */
        margin-bottom: 10px;
    }

    .abt-container {
        order: 2;
        padding: 10px;
    }
}

/* Footer */
.footer {
    padding: 20px;

    text-align: center;
}

.footer a {
    color: #ffd700;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Button Hover Effects */
.button {
    background-color: #1ecbe1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background-color: #1ecbe1;
    color: #fff;
}
