/* 
Updated Apr 2026
*/

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: 'Segoe UI', Arial, sans-serif;
        padding-top: 85px;
        background-color: white;
        display: grid;
        place-items: center;
        min-height: 100vh;
      }

      /* Header */
      header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 85px;
        background: #0a2540;
        color: white;
		border-bottom: 2px solid gold;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      }
	  
	  .header-image {
		  display: flex;
		  flex-direction: column;
		  padding: 2em;
		  justify-content: center;
		  align-items: center;
		  color: brown;
		  font-weight: 600;
		  width: 100%;
		  border: 0px solid red;
	  }

      .header-container {
        max-width: 1200px;
        margin: 0 auto;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 30px;
        gap: 30px;
        border: 0px solid black;
      }

      /* Left Navigation - Desktop */
      .header-left {
        flex: 1;
        display: flex;
        align-items: center;
      }

      .nav-links {
        display: flex;
        gap: 1rem;
        list-style: none;
      }

      .nav-links a {
        color: #e0e7ff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-links a:hover {
        color: #60a5fa;
      }

      /* Center Logo */
      .header-center {
        flex: 1;
        display: flex;
        justify-content: center;
      }

      .logo {
        font-family: georgia, serif;
        font-size: 40px;
        font-weight: bold;
        letter-spacing: 0px;
        color: white;
      }

      @media (max-width: 768px) {
        .logo {
          font-size: 18px;
        }
      }

      @media (max-width: 480px) {
        .logo {
          font-size: 14px;
        }
      }

      .logo span {
        color: #60a5fa;
      }

      /* Right Button */
      .header-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
      }

      .btn {
        padding: 10px 20px;
        background-color: #60a5fa;
        color: #0a2540;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(96, 165, 250, 0.3);
      }

      .btn:hover {
        background-color: #fcd34d;
        transform: translateY(-2px);
      }

      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
      }

      .hamburger span {
        width: 28px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
      }

      /* Mobile Menu */
      .mobile-menu {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: #0a2540;
        display: none;
        flex-direction: column;
        padding: 20px 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        gap: 20px;
      }

      .mobile-menu a {
        color: #e0e7ff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        padding: 10px 0;
      }

      /* Responsive */
      @media (max-width: 991px) {
        .nav-links {
          display: none;
        }

        .hamburger {
          display: flex;
        }

        .header-center {
          flex: 2;
        }

        .header-left,
        .header-right {
          flex: 1;
        }

        /* When menu is open */
        .mobile-menu.active {
          display: flex;
        }
      }

      /* Cards Section */
      .cards-container {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        justify-content: center;
      }

      .card {
        flex: 1 1 320px;
        max-width: 380px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }

      .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      }

      /* Background Image Header */
      .card-header {
        height: 240px; /* Adjust this height as needed */
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end; /* Pushes text to bottom */
      }

      /* Dark overlay for better text readability */
      .card-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
        z-index: 1;
      }

      .header-text {
        position: relative;
        z-index: 2;
        color: white;
        padding: 24px;
        width: 100%;
      }

      .header-text h3 {
        margin: 0 0 8px 0;
        font-size: 1.5rem;
      }

      .header-text p {
        margin: 0;
        opacity: 0.95;
      }

      .card-body {
        padding: 24px;
        text-align: left;
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        .card-header {
          height: 210px;
        }
        .cards-container {
          flex-direction: column;
          align-items: center;
        }
      }

      .content {
        background: white;
        color: black;
        width: 100%;
        position: relative;
      }

      /* Footer */
      footer {
        background: #0a2540;
        color: #cbd5e1;
        padding: 4rem 1.5rem 2rem;
		border-top: 2px solid gold;
		width: 100%;
      }
	  .footer-image {
			  display: flex;
		  padding: 1em;
		  justify-content: center;
		  align-items: center;
		  width: 100%;
		  border: 0px solid red;
	  }
      .footer-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      @media (min-width: 768px) {
        .footer-inner {
          grid-template-columns: 2fr 1fr 1fr 1.2fr;
        }
      }
      .footer-col h4 {
        color: #fcd34d;
        margin-bottom: 1.25rem;
        font-size: 1.1rem;
      }
      .footer-col a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: #fcd34d;
      }
      .footer-bottom {
        max-width: 1200px;
        margin: 3rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid #334155;
        text-align: center;
        font-size: 0.85rem;
        color: silver;
      }
  