* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's on top of other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 8px;
    background-color: #fff;
}


/* === HEADER === */
.logo img {
    width: 140px;
}

.navbar a {
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.navbar {
    display: flex;
    gap: 20px;
}

/* Hide the navbar on mobile view */
.menu-toggle {
    display: none;
    font-size: 26px;
    margin-top: 15px;
    background: none;
    border: none;
    color: black;
}

.navbar a {
    text-decoration: none;
    color: #003060;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #F97FAF; /* Change to pink on hover */
}

/* === ROADMAP === */
.roadmap_info_image{
    width: 100%;
}
.roadmap_info_image2{
    display: flex;
    width: 60%;
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.roadmap_img {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 59% auto;
    padding: 2px;
}
.roadmap_div_img{
    margin: 10px;
}

/* ===  ORDER ===*/

.order_text{
    font-size: 20px;
    color: #003060;
}


/* ===  card === */
.card{
    margin-top: 150px;
}
.clinical_image{
    width: 100%;
}
.clinical_title{
    margin-left: 30px;
    text-align: left;
    font-size: 45px;
    color: #22b1d9;
}
.info-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    /* max-width: 1200px; */
    margin: auto;
    padding: 10px;
}
.info-card {
    background-color: #003060;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%; /* Full width on mobile */
    text-align: center;
    margin: 10px 0; /* Add vertical spacing */
}
.info-card h2 {
    font-size: 1.2em;
    margin: 0 0 10px;
    color: white;
}
.info-card h1 {
    font-size: 1.4em;
    margin: 0 0 10px;
    color: white;
}
.info-card p {
    font-size: 0.9em;
    color: white;
    margin: 0 0 20px;
    text-align: justify;
}
.info-card a {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.info-card a:hover {
    background-color: #0056b3;
}

/* Responsive Design for Tablets and Desktops */
@media (min-width: 600px) {
    .info-card {
        width: 100%; /* Two cards per row on tablets */
    }
}

@media (min-width: 900px) {
    .info-card {
        width: 45%; /* Three cards per row on desktops */
    }
}


/* === FOOTER ===*/
footer {
    background-color: #003060;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 15px;
}
.social-icons{
    text-align: left;
}
.social-icons a{
    color: white;
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover{
    color: #F97FAF; /* Pink on hover */
}


.map-container iframe {
    width: 100%;
    border-radius: 5px;
}

h3 {
    margin-bottom: 15px;
    color: #00C1C1;
}

.footer-ending{
    margin-top: 15px;
    text-align: center;
}

/* MOBILE STYLES (Responsive) */
@media (max-width: 768px) {

    header {
        flex-direction: row;
        align-items: flex-start;
    }

    /* === NAVBAR === */
    .logo img {
        width: 100px;
    }
    .navbar {
        display: none; /* Hide initially on mobile */
        width: 100%; 
        justify-content: center;
        flex-direction: column; /* Stacked by default on mobile */
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    /* Show the navbar in a row when toggled */
    .navbar.active {
        display: flex; /* Display flex when active */
        flex-wrap: wrap; /* Allow wrapping of items */
        justify-content: center;
        gap: 10px; /* Adds space between items */
    }

    .navbar a {
        padding: 10px;
        text-align: center;
        color: #003060;
        font-weight: bold;
    }

    /* === ROADMAP === */
    .roadmap_img {
        display: inline;

    }
    .roadmap_div_img{
        margin: 10px;
    }

    /* === INFO === */
    .info{
        margin-top: 80px;
        margin-bottom: 50px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .clinical_title{
        text-align: left;
        font-size: 30px;
        color: #22b1d9;
    }
    .info_title{
        text-align: left;
        font-size: 30px;
        color: #22b1d9;
    }
    .info_text{
        font-size: 18px;
        color: #003060;
    }
    .info_social_icons a{
        color: #003060;
        font-size: 50px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .info_icon p{
        color: #003060;
        text-align: left;
        font-size: 16px;
        margin-left: 10px;
        margin-top: auto;
        margin-bottom: auto;
    }


    /* === Feature ===*/
    .footer-logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .features-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-container {
        flex-direction: column;
        align-items: column;
        text-align: left;
    }

    .footer-container p{
        text-align: center;
    }
    .footer-section {
        min-width: 100%;
    }
    .social-icons {
        margin-top: 15px;
        text-align: center;
    }
}