body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #003867;
    color: #333;
  }
  
  .navbar {
    display: flex;
    align-items: flex-start; /* Align logo and nav-links to the top */
    padding: 0.2rem 2rem 0;
    background-color: #003867;
    position: relative;
    z-index: 4;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 5rem;
    font-size: 1.0rem;
    margin-top: 2.0rem; /* Adjust if needed to pull closer to top */
  }
  
  .logo-wrapper {
    display: flex;
    gap: 0.2rem;
    margin-left: 2px; /* Pushes it fully to the left */
  }
  
  .logo-image img {
    max-width: 200px;
    width: 100px;
    height: auto;
  }
  
  .logo-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #b18b03;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    line-height: 1.1;
    width:300px;
    height: 100px;
    margin-top: 10px;
  }
  
  .logo-main {
    font-size: 3.0rem;
    font-weight: 900;
    text-shadow:
      1px 1px 0 #2a2a2a,
      2px 2px 0 #1e1e1e,
      3px 3px 0 #000;
  }
  
  .tm {
    font-size: 1.0rem;
    vertical-align: super;
    margin-left: 2px;
  }
  
  .logo-divider {
    width: 100%;
    height: 3px;
    background-color: #b18b03;
    border: none;
    margin: 2px 0 -6px 0;
  }
  
  .logo-subtext {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    color: #ffffff;
    opacity: 0.9;
    font-weight: 400;
    margin-top: 10px;
  }
  
  .nav-links {
    display: flex;
    align-items: flex-start;
    list-style: none;
    gap: 2rem;
    position: relative;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #003867;
    font-weight: bold;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    list-style: none;
    padding-left: 0;
    top: 100%;
    left: 0;
    color: #b18b03;
    background-color: rgb(59, 147, 202);
    border: 1px solid #ccc;
    min-width: 200px;
    z-index: 5;
  }
  
  .dropdown-menu li {
    padding: 2px;
  }
  
  .dropdown-menu li:hover {
    background-color: #003867;
    color: #b18b03;
    padding: 5px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block; /* or block if items should stack */
    gap: 1rem;     /* optional: space between links */
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li a {
    color: black;
    text-decoration: none;
    font-weight: 100;
    font-size: 1.0rem;
    padding-left: 10px;
    padding-bottom: 20px;
    padding-top: 5px;
    
  }
  
  /* Position submenu to the right */
  .submenu-parent {
    position: relative;
  }
  
  .submenu-parent .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #0e5eab;
    min-width: 260px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }
  
  .submenu-parent:hover .submenu {
    display: block;
  }
  
  /* Arrow */
  .side-arrow {
    float: right;
    margin-left: 1px;
  }
  
  /* Optional: improve spacing */
  .submenu li a {
    padding: 5px;
    display: block;
    white-space: nowrap;
  }
  
  
  
  /* Optional: rotate icon on hover */
  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .submenu {
    list-style: none;
    padding-left: 0px;
    margin: 0px;
  }
  
  
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #b18b03;
  }

  .services-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1250px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .services-left, .services-right {
    flex: 1 1 400px;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }
  .services-left { animation-delay: 0.3s; }
  .services-right { background: #e0f7ff; animation-delay: 0.6s; }

  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .services-left h2 {
    font-size: 26px;
    color: #003867;
    margin-bottom: 20px;
    position: relative;
  }
  .services-left h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 5px;
    background: #b18b03;
    margin-top: 8px;
    border-radius: 4px;
  }

  .services-left ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }
  .services-left li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 26px;
    font-size: 17px;
    line-height: 1.6;
  }
  .services-left li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 12px; height: 12px;
    background-color: #b18b03;
    border-radius: 50%;
  }

  .services-right p {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 20px;
  }

  @media (max-width: 800px) {
    .services-section { flex-direction: column; }
    .services-left, .services-right {
      transform: translateY(0);
      animation: none;
      opacity: 1;
    }
  }

  .story-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1250px;
    margin: 150px auto;
    margin-bottom: 10px;
    margin-top: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
  }

  .story-image {
    flex: 1 1 35%;
    background-color: #e0f7ff;
    min-height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .story-image img{
    width: 90%;
    height: auto;
  }

  .story-image::before {
    color: #003867;
    font-size: 20px;
    font-weight: bold;
  }

  .story-content {
    flex: 1 1 60%;
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .story-content.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .story-heading h2 {
    font-size: 28px;
    color: #003867;
    margin-bottom: 20px;
    padding-left: 50px;
  }

  .story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
  }

  .highlight-gold {
    color: #b18b03;
  }
  

  @media (max-width: 768px) {
    .story-section {
      flex-direction: column;
    }
    .story-image {
      min-height: 250px;
    }
  }

  .founder-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1250px;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }

  .founder-image {
    flex: 1 1 300px;
    padding: 40px;
    padding-top: 40px;
    padding-right: 0px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }

  .founder-content {
    flex: 1 1 600px;
    padding-left: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }


  .founder-image {
    font-size: 26px;
    color: #003867;
    margin-bottom: 20px;
    position: relative;
  }

  .founder-image img {
    width: 100%;
    height: 550px;
  }

  .founder-content p {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
    padding-right: 40px;
  }

  #more-founder-content {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
    padding-left: 40px;
    padding-bottom: 40px;
    padding-right: 40px;
  }
  
  #more-founder-content.hidden {
    display: none;
  }
  #more-founder-content.show {
    display: block;
    opacity: 1;
    flex: 1 1 600px;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
  }
  