* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Roboto Condensed', Arial, sans-serif;
      background-color: #f0f2f5;
      color: #333;
    }
    .logo span{
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 1px;
      margin-left: 5px;
    }
    .header-logo-title {
      display: flex;
      align-items: center;
      gap: 10px; /* space between logo and text */
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
    }

    .logo-img {
      height: 40px; /* adjust size as needed */
      border-radius: 5px;
    }
    nav {
      position: sticky;
      top: 0;
      background-color: #00274d;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    .menu {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .menu li a {
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .menu li a:hover {
      background-color: #ffcc00;
      color: #00274d;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle span {
      height: 3px;
      width: 25px;
      background-color: white;
      margin: 3.5px 0;
      transition: transform 0.3s ease;
    }
    .menu li.dropdown {
        position: relative;
    }

    .dropdown-content {
      max-height: 0;
      opacity: 0;
      transform: translateY(-10px);
      overflow: hidden;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #00274d;
      min-width: 200px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      z-index: 1001;
      flex-direction: column;
      transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
      pointer-events: none;
    }

    .dropdown-content li a {
        padding: 10px 16px;
        display: block;
        font-size: 1rem;
        color: white;
        text-align: left;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .dropdown-content li a:hover {
        background-color: #ffcc00;
        color: #00274d;
    }

    .menu li.dropdown:hover .dropdown-content {
        max-height: 500px; /* just ensure it's high enough */
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        display: flex;
    }

    .menu,
    .menu li,
    .menu li a,
    .dropdown-content,
    .dropdown-content li {
        list-style: none;
    }
    
    footer {
      background-color: #00274d;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 3rem;
    }
    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .university-logos img{
      height: 70px; 
      display: flex; 
      margin: 0 15px;
      margin-top: 10px; 
      float: left;
      transition: transform 0.3s ease;
    }
    .university-logos img:hover{
      transform: scale(1.1);
      transition: transform 0.3s ease;
    }

    .footer-link {
        color: #ffcc00;
        font-weight: bold;
        text-decoration: none;
        font-size: 1.1rem;
        }

        .footer-link:hover {
        text-decoration: underline;
        color: #ffffff;
        }

        .watermark {
        font-size: 0.75rem;
        color: #9a9a9a;
        }
        .watermark a{
          color: #cbcbcb;
          text-decoration: none;
        }
        .watermark a:hover{
          color: #ffffff;
        }
        .menu-toggle.open span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }
        .menu-toggle.open span:nth-child(2) {
          opacity: 0;
        }
        .menu-toggle.open span:nth-child(3) {
          transform: rotate(-45deg) translate(5px, -5px);
        }
      .footer-link2{
        color: #ffcc00;
        text-decoration: none;
      }
      .footer-link2:hover {
        text-decoration: underline;
        color: #ffffff;
        }
    .contact-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ffcc00;
        color: #00274d;
        font-weight: bold;
        padding: 0.8rem 1.2rem;
        border-radius: 30px;
        text-decoration: none;
        font-size: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
        z-index: 1002;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: background-color 0.3s ease, color 0.3s ease;
        opacity: 0;
        transform: translateX(100%);
        animation: slideIn 0.6s ease forwards;
        animation-delay: 1s; /* delay before it slides in */
      }

      .contact-button:hover {
        background-color: #00274d;
        color: #ffcc00;
        text-decoration: none;
      }
    .button-icon {
        display: none;
        font-size: 1.2rem;
      }
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(100%);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }


    @media (max-width: 768px) {
      .logo span{font-size: 1.3rem;}
     
      .menu {
        flex-direction: column;
        background-color: #00274d;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        padding: 0 1rem;
        transition: max-height 0.4s ease,
      opacity 0.4s ease,
      padding-top 0.3s ease,
      padding-bottom 0.3s ease;
      }
      .menu.show {
        max-height: 500px; /* enough height to show all menu items */
        opacity: 1;
        padding: 1rem;
        overflow:visible;
      }
      .menu-toggle {
        display: flex;
      }
      footer {
        font-size: 0.9rem;
        padding: 1rem;
      }
    
      .button-text {
        display: none;
      }
      .button-icon {
        display: inline;
      }

      .contact-button {
        padding: 0.8rem;
        border-radius: 50%;
        font-size: 1.4rem;
        width: 52px;
        height: 52px;
        justify-content: center;
      }
    
      .watermark {
        font-size: 0.65rem;
      }
    }

    

    
