

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  background: #00008B;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav li {
  cursor: pointer;
}

/* Stripe banner */
.stripe-banner,
.scrolling-text-banner-top {
  width: 100%;
  background-color: #007BFF;
  border-top: 2px solid #005bb5;
  border-bottom: 2px solid #005bb5;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 30px;
  margin-top: 0 !important;
  padding-top: 1px !important;
  display: flex;
  align-items: center;
}

/* Scrolling text inside the banner */
.scrolling-text-inside {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding-left: 100%;
  line-height: 30px;
  white-space: nowrap;
}

/* Keyframes for scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Banner container */
.banner-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 139, 0.6);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.hero-text-overlay h1 {
  font-size: 3.0rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  user-select: none;
  max-width: 90%;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  text-align: center;
}

/* Feature sections */
.features-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  flex: 0 0 280px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  max-width: 100%;
  border-radius: 12px;
}

.feature-content h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.2rem;
  color: #00008B;
}

.feature-content p {
  font-size: 0.95rem;
  color: #444;
}

/* Section images between stripe banners */
.section-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.section-image + .stripe-banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Footer styles */
footer {
  background: #00008B;
  color: white;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: auto;
}

footer .social-icons a {
  margin: 0 0.5rem;
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

footer .social-icons a:hover {
  color: #ffd700;
}

/* Scroll Banner Fixes */
.scrolling-banner {
  width: 100%;
  background-color: #007BFF;
  border-top: 2px solid #005bb5;
  border-bottom: 2px solid #005bb5;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.scrolling-track {
  display: inline-block;
  white-space: nowrap;
  box-sizing: content-box;
  padding-left: 100%;
}

.scrolling-track span {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding-right: 2rem;
  white-space: nowrap;
}

.left-scroll .scrolling-track {
  animation: scroll-left 20s linear infinite;
}

.right-scroll .scrolling-track {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ✅ ADDED FIX FOR FEATURE CARD BACKGROUND */
.feature-card {
  background-color: white !important; /* Change this to your desired background */
}

/* ------------------------- */
/* Temporary top banner fix to remove gap */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.stripe-banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border: none !important;
}
/* ------------------------- */

nav ul li a.active {
  color: #00008B;
  font-weight: bold;
  text-decoration: underline;
}
/* Push menu down from top */
header nav.main-nav {
  margin-top: 20px;  /* Increase this value to push it further down */
  /* or use padding if you prefer */
  /* padding-top: 20px; */
}

/* Optional: Make sure menu is full width and visible */
header nav.main-nav ul {
  display: flex;
  flex-wrap: wrap;  /* allows menu items to wrap if needed */
  gap: 15px; /* spacing between menu items */
}

header nav.main-nav li {
  list-style: none;
}
/* Normal link */
.main-nav a {
  color: white; /* Change to any color you like */
  text-decoration: none;
  font-weight: 600;
}

/* Hover effect */
.main-nav a:hover {
  color: #00aaff;
  text-decoration: underline;
}

/* Active/current page */
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
  color: #00aaff;
  border-bottom: 2px solid #00aaff;
}

/* Visited link */
.main-nav a:visited {
  color: white; /* Keeps it the same as normal so it doesn't turn purple */
}
---------------------

.page-content {
  padding: 20px;
  background-color: #000000;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}
