body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

/* Top Strip */
.top-strip {
  background-color: #0d2040;
  color: white;
  padding: 8px 20px;
  font-size: 14px;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Shrink and color change on scroll */
header.scrolled {
  background: #0d2040;
  padding: 12px 60px;
}

header.scrolled .site-title,
header.scrolled a {
  color: #ffffff;
}

/* Logo + site title */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3c72;
  margin: 0;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #1e3c72;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

nav a:hover,
nav a.active {
  color: #c89c3c;
  border-bottom: 2px solid #c89c3c;
}

/* Responsive header for smaller screens */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 30px;
  }

  .logo-section {
    margin-bottom: 10px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* Hero Section */
.hero {
  background: url('my-new-image.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero .btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #c89c3c;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}
.hero .btn:hover {
  background-color: #a8832f;
}

/* Product Section */
.products {
  padding: 50px 20px;
  text-align: center;
}

.products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #0d2040;
}

.product-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product {
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

/* ✅ Make all images same size */
.product img {
  width: 100%;
  height: 200px;        /* fixed uniform height */
  object-fit: cover;    /* ensures no distortion */
  border-radius: 10px;
}

.product h3 {
  margin-top: 12px;
  color: #0d2040;
  font-size: 16px;
}


footer {
  background-color: #0d2040; /* Example: dark background */
  color: white;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content p {
  margin: 0 0 10px 0; /* Example spacing */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px; /* Example for icon spacing */
}

.social-icons a {
  color: white;
  font-size: 24px; /* Example icon size */
}

/* New Modern Address Section Styles (isolated) */
.address-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #555; /* Subtle divider for modern separation */
  text-align: left; /* Align left for a clean, card-like feel */
}

.address-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ccc; /* Light gray for subtlety; matches dark theme */
}

.address-item i {
  color: #007bff; /* Blue accent for icons, modern touch */
  width: 16px;
}

.address-item span {
  flex: 1;
}

/* Responsive: Stack horizontally on larger screens for modernity */
@media (min-width: 768px) {
  .address-section {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
  
  .address-item {
    flex-direction: column;
    gap: 4px;
  }
}

/* Booking Section */
.booking {
  background-color: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
}

.booking h2 {
  color: #0d2040;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  color: #0d2040;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c89c3c;
  outline: none;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.btn-submit {
  display: inline-block;
  background-color: #c89c3c;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
}

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

/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

/* Smooth scroll effect */
html {
  scroll-behavior: smooth;
}

/* ============================= */
/* ✅ MOBILE RESPONSIVE STYLES   */
/* ============================= */

/* Hide hamburger icon on desktop */
.menu-toggle {
  display: none;
}

/* For tablets and phones */
@media (max-width: 850px) {

  /* Header adjustments */
  header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
  }

  /* Show hamburger icon */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    color: #1e3c72;
    cursor: pointer;
  }

  /* Hide navigation by default */
  nav {
    display: none;
    width: 100%;
    background: #ffffff;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ddd;
  }

  /* When open, show nav */
  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
  }

  /* Stack hero content nicely */
  .hero {
    height: 60vh;
    background-position: center;
  }

  /* Products stack */
  .product-container {
    flex-direction: column;
    align-items: center;
  }

  /* Booking form full width */
  .booking-form {
    width: 100%;
    padding: 20px;
  }

  /* Footer address */
  .address-section {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================== */
/* ✅ Sticky Header Scroll Effect  */
/* =============================== */

/* Smooth transition for scroll color */
header {
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

/* When user scrolls down */
header.scrolled {
  background-color: #0d2040; /* Deep blue - matches your brand palette */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Change text & nav link colors when scrolled */
header.scrolled .site-title {
  color: #ffffff;
}

header.scrolled nav a {
  color: #ffffff;
}

header.scrolled nav a:hover {
  color: #c89c3c; /* Gold hover accent */
}

/* Adjust hamburger color when scrolled */
header.scrolled .menu-toggle i {
  color: #ffffff;
}

/* About Page Fix */
.about-hero {
  background: url('about-hero.jpg.png') center/cover no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

/* About Page Styles */
.about-section, .mission-section, .why-section, .contact-section {
  padding: 60px 20px;
  text-align: center;
}

.about-section h2, 
.mission-section h2, 
.why-section h2, 
.contact-section h2 {
  color: #1e3c72;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
  line-height: 1.6;
}

/* Mission Cards */
.mission-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.mission-cards .card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 400px;
}

.mission-cards i {
  font-size: 40px;
  color: #1e3c72;
  margin-bottom: 10px;
}

/* Why Choose Us */
.why-section ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.why-section li {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.why-section i {
  color: #1e3c72;
  margin-right: 10px;
}

/* Contact Section */
.contact-section .contact-details {
  margin-top: 20px;
}

.contact-section i {
  color: #1e3c72;
  margin-right: 10px;
}

nav a.active {
  color: #c89c3c;
  border-bottom: 2px solid #c89c3c;
}

/* Different Hero Images for Each Page */
.about-hero {
  background: url('about-hero.jpg') center/cover no-repeat;
}

.services-hero {
  background: url('services-hero.jpg') center/cover no-repeat;
}

.destinations-hero {
  background: url('destinations-hero.jpg') center/cover no-repeat;
}

/* =============================== */
/* ✅ MODERN FULL-SCREEN MENU CSS  */
/* =============================== */

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #1e3c72;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-toggle:hover {
  color: #c89c3c;
}

/* Full-screen overlay navigation */
#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(13, 32, 64, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 999;
  flex-direction: column;
}

#mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
#mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Nav links inside overlay */
#mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

#mobile-nav ul li {
  margin: 20px 0;
}

#mobile-nav ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  color: white;
  font-weight: 600;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
}

#mobile-nav ul li a:hover,
#mobile-nav ul li a.active {
  color: #c89c3c;
  border-bottom: 2px solid #c89c3c;
}

/* Show hamburger on smaller screens */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  header nav ul {
    display: none;
  }
}

/* Hide hamburger icon on larger screens */
@media (min-width: 851px) {
  #mobile-nav {
    display: none;
  }
}

/* Desktop navigation (top bar) */
.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #0d2040;
  font-weight: 600;
  transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #c89c3c;
}

/* Show desktop nav only on large screens */
@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }
}

/* Thin bar under header */
header {
  border-bottom: 2px solid #e0e0e0;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Section intro styling for headings (Destinations, etc.) */
.section-intro {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* === HEADER NAVIGATION FIX === */
.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.desktop-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: relative;
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffcc00;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #fff;
}

/* === MOBILE NAVIGATION === */
#mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#mobile-nav.open {
  display: flex;
}

#mobile-nav ul {
  list-style: none;
  text-align: center;
}

#mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 15px;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== Navigation Link Styles (Modern Sky Blue Theme) ===== */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ====== TOLU SKY TRAVEL — LUXURY SKY HEADER (Scroll Enhanced) ====== */

/* Header Container */
header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.4s ease;
  font-family: 'Poppins', Arial, sans-serif;
}

/* Scroll Effect — add professional transition */
header.scrolled {
  background: linear-gradient(90deg, #1a365d, #2a4365); /* Deep navy blend */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

/* Logo + Title */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-title {
  color: #1a365d; /* Default navy */
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

/* Change title color on scroll */
header.scrolled .site-title {
  color: #f4d03f; /* Gold accent on scroll */
}

/* Nav Container */
nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav Links */
nav ul li a {
  color: #2d3748; /* Clean charcoal gray */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 18px;
  border-radius: 24px;
  transition: all 0.3s ease;
}

/* Hover + Active Effects */
nav ul li a:hover,
nav ul li a.active {
  background: #f4d03f; /* Gold capsule */
  color: #1a365d; /* Navy text inside */
  box-shadow: 0 3px 8px rgba(244, 208, 63, 0.4);
}

/* On scroll, adjust nav colors for better contrast */
header.scrolled nav ul li a {
  color: #f1f1f1; /* Light text on dark background */
}

header.scrolled nav ul li a:hover,
header.scrolled nav ul li a.active {
  background: #f4d03f;
  color: #1a365d;
}

/* Remove underline */
nav ul li a::after {
  display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  nav ul {
    gap: 14px;
  }

  nav ul li a {
    padding: 6px 14px;
    font-size: 15px;
  }

  .site-title {
    font-size: 22px;
  }
}

/* ====== MOBILE SLIDE-IN MENU (Modern Left-to-Right) ====== */

/* Header layout fix */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #7a1b1d; /* Professional deep red tone */
}

/* Sliding Mobile Nav (hidden by default) */
#mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #ffffff;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 80px;
}

/* When open */
#mobile-nav.open {
  left: 0;
}

/* Mobile Nav Links */
#mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 25px;
}

#mobile-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

#mobile-nav ul li a:hover,
#mobile-nav ul li a.active {
  color: #7a1b1d; /* Matches brand color */
}

/* Responsive: show hamburger only on small screens */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ====== RESPONSIVE HEADER: DESKTOP + MOBILE ====== */

/* Layout */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li a {
  color: #2c2c2c;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  background: #f1f1f1;
  color: #7a1b1d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #7a1b1d;
}

/* Mobile Navigation (hidden by default) */
#mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #ffffff;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 999;
  padding-top: 80px;
}

#mobile-nav.open {
  left: 0;
}

#mobile-nav ul {
  list-style: none;
  padding: 0 25px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#mobile-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

#mobile-nav ul li a:hover,
#mobile-nav ul li a.active {
  color: #7a1b1d;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ====== CLEAN RESPONSIVE HEADER ====== */

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-title a {
  color: #7a1b1d; /* classy deep red tone */
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: #a82225;
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  background: #f2f2f2;
  color: #7a1b1d;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: #7a1b1d;
}

/* Mobile Navigation */
#mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: #ffffff;
  box-shadow: 3px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  padding-top: 70px;
}

#mobile-nav.open {
  left: 0;
}

#mobile-nav ul {
  list-style: none;
  padding: 0 25px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#mobile-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

#mobile-nav ul li a:hover,
#mobile-nav ul li a.active {
  color: #7a1b1d;
}

/* Close button inside mobile menu */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #7a1b1d;
  cursor: pointer;
}

/* Dim background overlay when menu is open */
#mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

#mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  .header-container {
    justify-content: flex-start;
    gap: 15px;
  }

  .logo-section {
    flex-grow: 1;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

/* Header Styles */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 40px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  color: #1a3c5e;
  font-weight: 700;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Desktop Navigation */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
}

.nav-link[aria-current="page"] {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  height: 30px;
  width: auto;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.close-icon,
.close-icon::before {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #333;
}

.close-icon {
  position: relative;
  transform: rotate(45deg);
}

.close-icon::before {
  content: '';
  position: absolute;
  transform: rotate(-90deg);
}

.mobile-nav ul {
  list-style: none;
  padding: 1rem 2rem;
  flex-grow: 1;
}

.mobile-nav li {
  margin: 1rem 0;
}

.mobile-nav .nav-link {
  font-size: 1.2rem;
  display: block;
  padding: 0.5rem 0;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    padding: 1rem;
  }

  .logo {
    height: 32px;
  }

  .site-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
}

/* Header Styles */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Header Container */
.header-container {
  max-width: 1400px; /* Increased for better spread */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem; /* Increased padding for better spacing */
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem; /* Increased gap between logo and title */
}

.logo {
  height: 60px; /* Increased logo size for better visibility */
  width: auto;
}

.site-title {
  font-size: 1.75rem; /* Slightly larger title */
  color: #1a3c5e;
  font-weight: 700;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Desktop Navigation */
.desktop-nav {
  margin-left: 2rem; /* Added margin to increase distance from logo/title */
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem; /* Increased gap between nav items */
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem; /* Slightly larger font */
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 0.2rem;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

.nav-link[aria-current="page"] {
  color: #007bff;
  border-bottom: 2px solid #007bff;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 28px; /* Slightly larger for mobile */
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  height: 40px; /* Adjusted for mobile */
  width: auto;
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.close-icon,
.close-icon::before {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #333;
}

.close-icon {
  position: relative;
  transform: rotate(45deg);
}

.close-icon::before {
  content: '';
  position: absolute;
  transform: rotate(-90deg);
}

.mobile-nav ul {
  list-style: none;
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.mobile-nav li {
  margin: 1.2rem 0;
}

.mobile-nav .nav-link {
  font-size: 1.3rem;
  display: block;
  padding: 0.5rem 0;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    height: 48px; /* Adjusted for mobile */
  }

  .site-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  .mobile-nav,
  .mobile-overlay {
    display: none;
  }
}

/* Add to styles.css */
.header.scrolled {
  background-color: #f8f9fa; /* Slightly different background when scrolled */
  padding: 0.5rem 3rem; /* Reduced padding for a compact look */
  transition: all 0.3s ease; /* Smooth transition */
}

@media (max-width: 768px) {
  .header.scrolled {
    padding: 0.5rem 1.5rem; /* Adjusted for mobile */
  }
}

