/* General styling */
/* Large devices (laptops/desktops, 992px and up) */
.main-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.socials-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.socials-button-container img{
    max-height:70%;
    object-fit: contain;
}

.mobile-nav, .cta-button {
    display: none;
}    

.mobile-menu-icon {
    display: none;
}

.cta-button {
    display: block;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #001158;
    color: #fff;
    padding: 0px 0;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    margin: 0;
    font-size: 18px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.cta-button a {
    background-color: #fff;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button a:hover {
    background-color: #fff;
}

/* Main container and section banners */

.grant-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Text should take available space */
.grant-text {
    flex: 1;
    text-align: justify;
}
.grant-text.ul {
    /* Remove browser's default padding/margin */
    margin: 0;
    padding: 0;
    font-size: 11px;
  
    /* Place bullets inside the text box (instead of outside) */
    list-style-position: inside;
  }

.grant-paragraph {
    text-align: justify;
}

/* Image to the right */
.grant-image {
    max-width: 300px;
    height: auto;
}

/* Image to the right */
.grant-image-wide {
    max-height: 150px;
    width: auto;
    align-items: center;
}

.section-banner {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section-banner h1 {
    margin: 0;
    font-size: 1.8em;
}

/* Team members section */
.team-members {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.team-member {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
    width: 200px; /* Smaller size to fit 3 in a row */
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: contain;
    margin-bottom: 7px;
}

.team-member h2 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.team-member h3 {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.8em;
    color: #333;
    text-align: justify;
}

/* Publications section */
#publications ul {
    list-style-type: none;
    padding: 0;
}

#publications ul li {
    margin-bottom: 10px;
}

#publications ul li a {
    text-decoration: none;
    color: #0033cc;
    font-weight: bold;
}

#publications ul li a:hover {
    text-decoration: underline;
}

/* Footer styling */
footer {
    background: #001158;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* Buttons */
.main-button {
    background-color: #001158;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-button:hover {
    background-color: #001158;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -20px;
}

/* Contact Form Page Styling */
.contact-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form-container h1 {
    font-size: 2em;
    color: #001158;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1em;
    color: #333;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #001158;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 17, 88, 0.5);
}

.contact-form-container textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-container button[type="submit"] {
    background-color: #001158;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-container button[type="submit"]:hover {
    background-color: #0033cc;
}

.pub-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Ensure all list items start at the same point */
.pub-container ul {
    list-style-position: inside; /* Keeps bullet points inside */
    padding-left: 0; /* Removes default extra padding */
    text-align: left; /* Align text properly */
}

.pub-container ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 15px; /* Ensures consistent indentation */
}

/* Make links look cleaner */
.pub-container ul li a {
    text-decoration: none;
    color: #001158;
    font-style:normal;
    font-size: 16px;
}


/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
        margin: 20px;
    }

    .contact-form-container h1 {
        font-size: 1.5em;
    }

    .contact-form-container input,
    .contact-form-container textarea {
        font-size: 0.9em;
    }

    .contact-form-container button[type="submit"] {
        padding: 10px;
        font-size: 0.9em;
    }
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border: 2px solid green;
    color: green;
    text-align: center;
    font-size: 1.2em;
}

.success-message.show {
    display: block;
}

.success-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: green;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.main-container-project {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project {
    width: 95%;
    display: inline-flex;
    align-items:center;
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}



.project img {
    max-width: 300px;
    max-height: 300px;
    margin-right: 20px;
    border-radius: 5px;
}

.project-details {
    flex: 1;
}

.project-details h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.project-details p {
    margin: 0;
    text-align: justify;
    font-size: 16px;
    color: #555;
}


.update {
    width: 95%;
    display: inline-flex;
    align-items:center;
    text-align: left;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}


.update img {
    max-width: 200px;
    margin-right: 20px;
    border-radius: 5px;
}

.update-details {
    flex: 1;
}

.update-details h2 {
    margin: 0 0 10px;
    font-size: 18px;
}

.update-details p {
    margin: 0;
    font-size: 16px;
    color: #555;
}


ul {
    /* Remove browser's default padding/margin */
    margin: 0;
    padding: 0;
    font-size: 16px;
  
    /* Place bullets inside the text box (instead of outside) */
    list-style-position: inside;
  }

.dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button styles (you could also style it like a normal nav link) */
.dropbtn {
  background-color: #001158;   font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 1em;font-family: Arial, sans-serif;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Hover state for the dropdown button */
.dropbtn:hover {
  background-color: #0033cc; 
}

/* The dropdown menu (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #001158; /* Matches your nav background */
  min-width: 160px; 
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  z-index: 999; /* Ensure dropdown appears on top */
}

/* Dropdown links */
.dropdown-content a {
  color: #fff;                /* White text to match the header */
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Hover state for dropdown links */
.dropdown-content a:hover {
  background-color: #0033cc;  /* Slightly lighter/darker than #001158 */
  color: #fff;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


#introduction p {
    text-align: justify;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 0;
}

/* Logo and text container */
.logo-container {
    display: flex;
    align-items: center;
    float: left;
}

/* Logo styling */
.header-container img {
    max-height: 50px; /* Adjust size as needed */
    width: auto;
    margin-right: 0x; /* Adds spacing between logo and text */
}

/* Align text next to the logo */
.logo {
    font-size: 1.2em;
    font-weight: bold;
    white-space: nowrap; /* Prevents text from wrapping */
}

.main-image {
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
}

/* Flexbox container for text and image */
.content-container {
    display: flex;
    align-items: center; /* Align text and image vertically */
    justify-content: space-between; /* Spread them apart */ /* Adds spacing between text and image */
}

/* Ensure text takes up most of the space */
.text-container {
    flex: 1; /* Allows text to take available space */
    text-align: justify; /* Justifies text */
    max-width: 50%; /* Prevents text from being too wide */
}

/* Ensure image stays on the right */
.image-container {
    flex: 0 0 50%; /* Limits image width, preventing it from shrinking */
    display: flex;
    justify-content: left;
    margin-left: 10px;
}

/* Image styling */
.main-image {
    max-width: 100%; /* Ensure image resizes properly */
    height: auto; /* Keep aspect ratio */
}



/*phone styling*/


@media only screen and (max-width: 992px) {
    .mobile-nav, .cta-button {
        display: block;
    }    
    
    .mobile-menu-icon {
        display: block;
    }
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
        color: #333;
        display: flex;
        flex-direction: column;
        min-height: 100vh; /* Makes sure the body takes full height */
    }
    
    header {
        background: #001158;
        color: #fff;
        padding: 0px 0;
    }
    
    .main-container h1 {
        font-size: 1.2em; /* Adjust the size (default is ~2em) */
        text-align: center;
        margin-bottom: 10px; /* Reduce spacing */
    }

    .pub-container h1 {
        font-size: 1.2em; /* Adjust the size (default is ~2em) */
        text-align: center;
        margin-bottom: 10px; /* Reduce spacing */
    }
    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 0px;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.8em;
    }
    
    .cta-button a {
        background-color: #fff;
        color: #000000;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.8em;
        transition: background-color 0.3s ease;
    }
    
    .cta-button a:hover {
        background-color: #fff;
        font-size: 0.8em;
    }
    
   
    /* Stack image above text */
    .content-container {
        display: flex;
        flex-direction: column-reverse; /* Image first, then text */
        align-items: center;
        width: 100%;
    }

    /* Ensure the image is visible and centered */
    .image-container {
        width: 80%;
        display: block;
        justify-content: center;
        align-items: center;
        margin-bottom: 0px;
    }

    .main-image {
        width: 100%; /* Full width */
        max-width: 100%; /* Prevents overflow */
        height: auto; /* Keeps aspect ratio */
        display: block; /* Ensures no inline spacing issues */
    }

    .text-container {
        width: 100%;
        text-align: justify; /* Add padding for readability */
        font-size: 14px; /* Slightly larger for better readability */
    }

    /* Adjust buttons to be full width */
    .button-container {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
    }

    .main-button {
        background-color: #001158;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        width:70%; /* Make buttons almost full width */
        text-align: center;
        padding: 12px;
        font-size: 12px;
    }
    /* Team members section */
    .team-members {
        max-width:100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .team-member {
        max-width:100%;
        background-color: #f4f4f4;
        padding: 15px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
        width: 200px; /* Smaller size to fit 3 in a row */
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        object-fit: contain;
        margin-bottom: 7px;
    }
    
    .team-member h2 {
        font-size: 1em;
        margin-bottom: 5px;
    }
    
    .team-member h3 {
        font-size: 1em;
        color: #555;
        margin-bottom: 10px;
    }
    
    .team-member p {
        font-size: 0.8em;
        color: #333;
        text-align: justify;
    }
    
    /* Publications section */
    #publications ul {
        list-style-type: none;
        padding: 0;
    }
    
    #publications ul li {
        margin-bottom: 10px;
    }
    
    #publications ul li a {
        text-decoration: none;
        color: #0033cc;
        font-weight: bold;
    }
    
    #publications ul li a:hover {
        text-decoration: underline;
    }
    

    /* Default (Desktop) Layout */


.pub-container {
    margin: 0px;
    padding-top: 10px;
    padding-bottom:10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-shadow: none; /* Remove shadow for a cleaner mobile look */
    text-align: center;
}

/* Ensure all list items start at the same point */
.pub-container ul {
    list-style-position: inside; /* Keeps bullet points inside */
    padding-left: 0; /* Removes default extra padding */
    text-align: left; /* Align text properly */
}

.pub-container ul li {
    font-size: 12px;
    margin-bottom: 10px;
     /* Ensures consistent indentation */
}

/* Make links look cleaner */
.pub-container ul li a {
    text-decoration: none;
    color: #001158;
    font-style:normal;
}

    /* Footer styling */
    footer {
        background: #001158;
        color: #fff;
        text-align: center;
        width: 100%;
        position: fixed; /* Change from fixed to relative */
        bottom: 0;
    }
    
    .grant-container {
        text-align: center;
        max-width: 100%;
        padding-top:10px;
        padding-bottom:10px;
        margin-right:5px;
    }

    .grant-content {
        display: flex;
        flex-direction: column; /* Stack image on top */
        align-items: center;
    }

    .grant-image {
        width: 100%;
        max-width: 300px;
        margin-bottom: 15px; /* Add spacing below the image */
    }

    /* Image to the right */
    .grant-image-wide {
        max-width: 90%;
        max-width : 300px;
        height: auto;
        align-items: center;
    }

    .grant-text, .grant-paragraph {
        text-align: justify;
        padding: 0 10px;
        font-size: 14px;
     
    }


    /* Push footer to the bottom */
    .main-container {
        flex: 1; /* Ensures content pushes footer down */
    }
     /* Push footer to the bottom */

    .main-button:hover {
        background-color: #001158;
    }
    
    .button-container {
        display: flex;
        flex: 1;
        justify-content: center;
        gap: 20px;
        padding-bottom: 60px;
    }
    
    /* Contact Form Page Styling */
    .contact-form-container {
        max-width: 600px;
        margin: 50px auto;
        padding: 30px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    
    .contact-form-container h1 {
        font-size: 2em;
        color: #001158;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .contact-form-container form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-container label {
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
    }
    
    .contact-form-container input,
    .contact-form-container textarea {
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        border: 1px solid #ccc;
        font-size: 1em;
        color: #333;
    }
    
    .contact-form-container input:focus,
    .contact-form-container textarea:focus {
        border-color: #001158;
        outline: none;
        box-shadow: 0 0 5px rgba(0, 17, 88, 0.5);
    }
    
    .contact-form-container textarea {
        resize: vertical;
        min-height: 150px;
    }
    
    .contact-form-container button[type="submit"] {
        background-color: #001158;
        color: #fff;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .contact-form-container button[type="submit"]:hover {
        background-color: #0033cc;
    }

    /* Responsive Design for Contact Form */
    @media (max-width: 768px) {
        .contact-form-container {
            padding: 20px;
            margin: 20px;
        }
    
        .contact-form-container h1 {
            font-size: 1.5em;
        }
    
        .contact-form-container input,
        .contact-form-container textarea {
            font-size: 0.9em;
        }
    
        .contact-form-container button[type="submit"] {
            padding: 10px;
            font-size: 0.9em;
        }
    }
    
    .success-message {
        display: none;
        margin-top: 20px;
        padding: 10px;
        border: 2px solid green;
        color: green;
        text-align: center;
        font-size: 1.2em;
    }
    
    .success-message.show {
        display: block;
    }
    
    .success-icon {
        display: inline-block;
        width: 20px;
        height: 20px;
        background-color: green;
        color: white;
        font-weight: bold;
        text-align: center;
        line-height: 20px;
        border-radius: 50%;
        margin-right: 10px;
    }
   
    .main-container-project {
        width: 100%;
        padding-top: 15px;
        padding-bottom:15px;
        background-color: #fff;
        text-align: center;
    }

    .socials-button-container {
        display: inline;
        justify-content: center;
        margin-top: 10px;
    }
    .socials-button-container img{
        max-height:50%;
        object-fit: contain;
    }

    /* Stack image above text on mobile */
    .project {
        display: flex;
        flex-direction: column; /* Image first, text below */
        align-items: center;
        text-align: justify;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 15px;
        margin-bottom: 20px;
        width: 90%; /* Ensures it doesn't go too wide */
        max-width: 400px; /* Limits size for better readability */
        margin-left: auto;
        margin-right: auto;
    }

    /* Ensure the image fits and is centered */
    .project img {
        width: 100%; /* Make image responsive */
        max-width: 300px; /* Prevents excessive size */
        height: auto; /* Maintains aspect ratio */
        border-radius: 5px;
        margin-bottom: 10px; /* Space between image and text */
    }

    /* Ensure text is contained and readable */
    .project-details {
        width: 100%;
        padding: 0 10px; /* Adds some spacing for readability */
    }

    .project-details h2 {
        font-size: 16px;
        text-align: center;
    }

    .project-details p {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }

    .update {
        width: 95%;
        display: inline-flex;
        align-items:center;
        text-align: left;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
       
    .update img {
        max-width: 100px;
        margin-right: 20px;
        margin-left:10px;
    }
    
    .update-details {
        flex: 1;
    }
    
    .update-details h2 {
        margin: 0 0 10px;
        font-size: 14px;
    }
    
    .update-details p {
        margin: 0;
        font-size: 12px;
        color: #555;
    }
    
    
    
    ul {
        /* Remove browser's default padding/margin */
        margin: 0;
        padding: 0;
        font-size: 18px;
      
        /* Place bullets inside the text box (instead of outside) */
        list-style-position: inside;
      }
    
    .dropdown-content a:hover {
        background-color: #ddd;
      }
      
      .dropdown:hover .dropdown-content {
        display: block;
      }
    
    /* Dropdown container */
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    /* Dropdown button styles (you could also style it like a normal nav link) */
    .dropbtn {
      background-color: #001158;   font-weight: bold;
      font-family: Arial, sans-serif;
      font-size: 1em;font-family: Arial, sans-serif;
      color: #fff;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    
    /* Hover state for the dropdown button */
    .dropbtn:hover {
      background-color: #0033cc; 
    }
    
    /* The dropdown menu (hidden by default) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #001158; /* Matches your nav background */
      min-width: 160px; 
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
      z-index: 999; /* Ensure dropdown appears on top */
    }
    
    /* Dropdown links */
    .dropdown-content a {
      color: #fff;                /* White text to match the header */
      padding: 12px 16px;
      display: block;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    
    /* Hover state for dropdown links */
    .dropdown-content a:hover {
      background-color: #0033cc;  /* Slightly lighter/darker than #001158 */
      color: #fff;
    }
    
    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
    
    #introduction p {
        text-align: justify;
      }
    
      .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0 0;
        padding: 0 0;
    }
    
    /* Logo and text container */
    .logo-container {
        display: inline-flex;
        align-items: center;
        float: left;
    }
    
    /* Logo styling */
    .header-container img {
        max-height: 50px; /* Adjust size as needed */
        width: 100%;
        margin-right: 0x; /* Adds spacing between logo and text */
    }
    
    /* Align text next to the logo */
    .logo {
        font-size: 0.9 em;
        font-weight: bold;
        white-space: nowrap; /* Prevents text from wrapping */
    }
    
    .main-image {
        max-width: 500px;
        height: auto;
        margin-bottom: 20px;
    }
    
    /* Flexbox container for text and image */
    .content-container {
        width: 100%;
        display: flex;
        align-items: center; /* Align text and image vertically */
        justify-content: space-between; /* Spread them apart */ /* Adds spacing between text and image */
    }
    
    /* Ensure text takes up most of the space */
    .text-container {
        flex: 1; /* Allows text to take available space */
        text-align: justify; /* Justifies text */
        max-width: 100%; /* Prevents text from being too wide */
    }
    
    /* Ensure image stays on the right */
    .image-container {
        flex: 0 0 50%; /* Limits image width, preventing it from shrinking */
        display: flex;
        justify-content: left;
        margin-left: 10px;
    }
    
    /* Image styling */
    .main-image {
        max-width: 100%; /* Ensure image resizes properly */
        height: auto; /* Keep aspect ratio */
    }

    .desktop-nav, .cta-button {
        display: none;
    }

    /* Style for the hamburger icon */
    .mobile-menu-icon {
        font-size: 24px;
        cursor: pointer;
        color: white;
        padding: 10px;
        background: #001158;
        border-radius: 5px;
        position: relative;
        text-align: center;
    }

    /* Mobile Navigation - Initially Hidden */
    .mobile-nav {
        display: none;
        background-color: #001158;
        padding: 0;
        width: 100%;
        position: absolute;
        top: 50px; /* Pushed below the icon */
        left: 0;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-nav ul li {
        padding: 10px;
        border-bottom: 1px solid #0033cc;
    }

    .mobile-nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        display: block;
        padding: 10px;
    }

    .mobile-nav ul li a:hover {
        background-color: #0033cc;
    }

    /* Style the dropdown inside mobile menu */
    .dropdown-content {
        display: none;
        background-color: #001158;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    /* Make the dropdown list items vertical */
    .dropdown-content a {
        display: block; /* Ensures links are in a vertical stack */
        padding: 12px 0;
        color: white;
        text-decoration: none;
        font-size: 15px; /* Ensures uniform font size */
        width: 100%; /* Makes the links take full width */
    }

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

    /* Dropdown Button Styling */
    .dropbtn {
        background: none;
        border: none;
        color: white;
        font-size: 15px; /* Same font size as other links */
        padding: 10px;
        cursor: pointer;
        width: 100%;
        text-align: center;
    }

    
}
