* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #ffffff;
      color: #002b40;
      line-height: 1.6;
    }

    /* Welcome Popup Style */
    .welcome-popup {
      position: fixed;
      top: 30px;
      left: 50%;
      transform: translateX(-50%) scale(0.6);
      background: linear-gradient(to right, #e6ecf1, #f3f6f7);
      color: #130000;
      padding: 16px 30px;
      border-radius: 12px;
      font-size: 1.1rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
      opacity: 0;
      z-index: 9999;
      animation: popInTop 7s ease-out forwards, fadeOutTop 6s ease-in 5s forwards;
    }

    @keyframes popInTop {
      0% {
        transform: translateX(-50%) translateY(-80px) scale(0.3);
        opacity: 0.5;
      }
      60% {
        transform: translateX(-50%) translateY(10px) scale(1.05);
        opacity: 1;
      }
      80% {
        transform: translateX(-50%) translateY(-5px) scale(0.95);
      }
      100% {
        transform: translateX(-50%) translateY(0) scale(1);
      }
    }

    @keyframes fadeOutTop {
      to {
        opacity: 0;
        transform: translateX(-50%) translateY(-80px) scale(0.6);
      }
    }

    /* Header */
    header {
      background: #fff;
      padding: 20px 40px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo img {
      height: 90px;
      width: 300px;
      opacity: 0;
      animation: fadeInScale 0.8s ease forwards;
    }

    /* Navbar */
    .navbar ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .navbar a {
      text-decoration: none;
      color: #004A99;
      font-weight: 600;
      padding: 10px 15px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .navbar a:hover,
    .navbar a:focus {
      color: #fff;
      background-color: #009639;
      box-shadow: 0 4px 10px rgba(0, 153, 204, 0.2);
      outline: none;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown > a::after {
      content: " ▼";
      font-size: 0.6em;
      color: #555;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      padding: 10px 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      min-width: 150px;
      border-radius: 8px;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 16px;
      color: #004A99;
      text-decoration: none;
    }

    .dropdown-menu a:hover {
      background-color: #009639;
      color: white;
    }

    .navbar ul li:hover .dropdown-menu {
      display: block;
    }

    /* Menu Toggle */
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #002b40;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }

    /* Hero Section */
    .hero {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .hero-text {
      background: #006699;
      color: white;
      padding: 30px;
      border-radius: 20px;
      border: 4px solid #004466;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      max-width: 350px;
      flex: 0 0 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hero-text:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
    }

    .hero-text h1 {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .hero-text p {
      font-size: 1.1rem;
    }

    /* Gallery and Cards */
    .gallery-and-cards {
      margin-top: 2.5rem; /* Preserves downward shift */
    }

    
    .gallery h2 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }

    .gallery-images {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap; /* Keeps all images in a single line */
      gap: 20px; /* Preserves reduced gap */
      padding: 20px;
      background-color: #ffffff;
      justify-content: flex-start; /* Aligns images leftward */
    }

    .box {
      width: 400px;
      height: 300px;
      border-radius: 8px;
      object-fit: cover;
      flex-shrink: 0;
      opacity: 0;
      animation: fadeInScale 0.8s ease forwards;
    }

    .box:nth-of-type(1) { animation-delay: 0.2s; }
    .box:nth-of-type(2) { animation-delay: 0.4s; }
    .box:nth-of-type(3) { animation-delay: 0.6s; }

    /* Info Cards */
    .info-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: flex-start;
      background-color: #ffffff;
      padding: 20px;
      margin-right: 10px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .card {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      width: 100%;
      max-width: 280px;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
      opacity: 0;
      animation: popIn 0.6s ease forwards;
    }

    .card:hover {
      transform: scale(1.12);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
      border: 2px solid #000000;
      background-color: #f0fbff;
      z-index: 2;
    }

    .card h3 {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    }

    .card p,
    .card ul li {
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .card:nth-of-type(1):hover,
    .card:nth-of-type(2):hover,
    .card:nth-of-type(3):hover,
    .card:nth-of-type(4):hover {
      border: 1px solid #000000;
    }

    /* Media Queries for Responsive Cards */
    @media (max-width: 400px) {
      .card {
        width: 95%;
        max-width: 300px;
        padding: 15px;
      }
    }

    @media (min-width: 401px) and (max-width: 600px) {
      .card {
        width: 95%;
        max-width: 320px;
      }
    }

    @media (min-width: 601px) and (max-width: 768px) {
      .card {
        width: 45%;
        max-width: 320px;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .info-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
      }

      .card {
        width: 45%;
        max-width: 320px;
        padding: 20px;
      }
    }

    @media (min-width: 1025px) and (max-width: 1366px) {
      .card {
        width: 30%;
        max-width: 300px;
      }
    }

    @media (min-width: 1367px) and (max-width: 1920px) {
      .card {
        width: 23%;
        max-width: 280px;
      }
    }

    @media (min-width: 1921px) {
      .card {
        width: 22%;
        max-width: 300px;
      }
    }

    /* Contact Section */
    .footer-content {
      background-color: #fff;
      color: #004A99;
      padding: 40px 20px;
      text-align: center;
      line-height: 1.8;
    }

    .footer-content p a {
      color: #0099cc;
    }

    /* Footer */
    footer {
      background-color: #002b40;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* Buttons */
    button {
      width: 100%;
      padding: 14px;
      background-color: #007BFF;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    }

    button:hover {
      background-color: #009639;
      transform: scale(1.05);
    }

    /* Mobile Styles */
    @media (max-width: 600px) {
      .menu-toggle {
        display: block;
      }
      .navbar ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        padding: 20px 0;
        opacity: 0;
        transform: translateX(-100%);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
      .navbar ul.active {
        display: flex;
        opacity: 1;
        transform: translateX(0);
      }
      .navbar ul li {
        width: 100%;
        text-align: left;
        padding-left: 20px;
      }
      .navbar ul li a {
        font-size: 1.1rem;
        padding: 12px 20px;
        color: #004A99;
        font-weight: 700;
      }
      .dropdown-menu {
        position: static;
        background: #f4f9fb;
        box-shadow: none;
      }
      .dropdown > a::after {
        content: "▶";
        position: absolute;
        right: 20px;
        font-size: 0.8rem;
        color: #004A99;
      }
      .dropdown.active > a::after {
        content: "▼";
      }
      .dropdown-menu a {
        padding-left: 40px;
        font-size: 1rem;
        font-weight: 700;
      }
      .logo img {
        height: 50px;
        width: 150px;
      }
      .hero {
        flex-direction: column;
        align-items: center;
      }
      .hero-text {
        flex: 0 0 auto;
        max-width: 95%;
      }
      .gallery-and-cards {
        width: 100%;
        margin-top: 2.5rem;
      }
      .gallery-images {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        overflow-x: hidden;
      }
      .box {
        width: 95%;
        max-width: 320px;
        height: auto;
      }
    }

    @media (min-width: 601px) and (max-width: 768px) {
      .hero {
        flex-direction: column;
        align-items: center;
      }
      .hero-text {
        flex: 0 0 auto;
        max-width: 95%;
      }
      .gallery-and-cards {
        width: 100%;
      }
      .gallery-images {
        gap: 10px;
        justify-content: center;
        flex-wrap: nowrap; /* Ensures single line on tablets */
      }
      .box {
        width: 30%;
        max-width: 280px;
        height: auto;
      }
    }

    @media (min-width: 769px) {
      .hero-text {
        flex: 0 0 350px;
      }
      .gallery-and-cards {
        flex: 1;
      }
    }

    /* Animations */
    @keyframes fadeInScale {
      from { opacity: 0; transform: scale(0.8); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes fadeInSlideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes popIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }