/* Base Styles */
:root {
  --primary: #1a3a6c;
  --primary-dark: #142d54;
  --secondary: #e74c3c;
  --text-color: #333;
  --text-muted: #666;
  --bg-gray: #f8fafc;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Styles */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.main-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
}

.logo img {
  height: 50px;
}

.main-nav {
  display: flex;
  gap: 30px;
}

/* Dropdown Menu Styles */
.nav-item {
  position: relative;
  padding: 10px 0;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: var(--bg-gray);
  color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* Section Styles */
section {
  padding: 60px 0;
}

.bg-gray {
  background: var(--bg-gray);
}

/* Footer Styles */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
    padding: 0;
  }

  .nav-link {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #f5f5f5;
    padding: 5px 0;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 30px;
  }

  .mobile-menu-btn {
    display: block;
    padding: 10px;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
  }

  /* Ensure header has proper positioning */
  .main-header {
    position: relative;
  }

  .nav-container {
    position: relative;
  }

  .nav-item.current-page {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }
}

/* ######### Index ######### */

/* Header/Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80')
      no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero .contact-info {
  margin: 20px 0;
}

.hero .location {
  font-style: italic;
  margin: 15px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px 5px;
  border: none;
  cursor: pointer;
}

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

.btn-secondary {
  background-color: #3498db;
}

.btn-secondary:hover {
  background-color: #2980b9;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 0;
}

.feature {
  flex-basis: calc(33.333% - 20px);
  margin-bottom: 30px;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature h3 {
  color: #e74c3c;
  margin-top: 0;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.testimonial {
  flex-basis: calc(50% - 20px);
  margin-bottom: 30px;
  background-color: white;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: 10px;
  left: 10px;
  color: rgba(0, 0, 0, 0.1);
  font-family: Georgia, serif;
}

.testimonial-content {
  padding-left: 20px;
}

.testimonial-author {
  font-weight: bold;
  color: #e74c3c;
}

/* Process Steps */
.process-steps {
  counter-reset: step-counter;
  margin: 30px 0;
}

.step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
}

.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Contact Section */
.contact-info-box {
  background-color: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature {
    flex-basis: calc(50% - 20px);
  }

  .testimonial {
    flex-basis: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .feature {
    flex-basis: 100%;
  }

  .hero {
    padding: 60px 20px;
  }

  section {
    padding: 40px 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.highlight {
  color: #e74c3c;
  font-weight: 600;
}

.check-list {
  list-style: none;
  margin-left: 0;
  padding-left: 1.5em;
}

.check-list li {
  position: relative;
  margin-bottom: 10px;
}

.check-list li:before {
  content: '✔️';
  position: absolute;
  left: -1.5em;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a3a6c;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 80px;
  background-color: #e74c3c;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

section {
  padding: 60px 0;
}

section:nth-child(even) {
  background-color: #f1f5f9;
}

/* ######### About ######### */

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80')
      no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.page-header h1 {
  color: white;
  margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.team-member {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.team-member-info {
  padding: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.team-member p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.team-photo {
  width: 100%;
  height: 200px;
  background-color: #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #e1e1e1;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #e74c3c;
  border: 4px solid #3498db;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -12px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #e74c3c;
}

/* ######### Courses ######### */

/* Course Cards */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.course-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.course-content {
  padding: 25px;
}

.course-header {
  margin-bottom: 20px;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 15px;
}

.course-header h3 {
  margin: 0;
  color: #1a3a6c;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.feature {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.feature h3 {
  color: #e74c3c;
  margin-top: 0;
  font-size: 1.3rem;
}

/* Timeline Steps */
.timeline {
  margin: 40px 0;
}

.step {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  padding-left: 80px;
}

.step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #e74c3c;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Price Box */
.price-box {
  background: linear-gradient(135deg, #1a3a6c, #2c5282);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
}

.price-box h3 {
  color: white;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 3rem;
  font-weight: bold;
  margin: 20px 0;
}

/* ######### Facility ######### */

/* Facility Cards */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.facility-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.facility-content {
  padding: 25px;
}

.facility-header {
  margin-bottom: 20px;
  border-bottom: 2px solid #e74c3c;
  padding-bottom: 15px;
}

.facility-header h3 {
  margin: 0;
  color: #1a3a6c;
}

/* ######### Admission ######### */

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  color: #1a3a6c;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ######### Rules ######### */

/* Additional Rules-specific styles */
.rules-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

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

.rules-header {
  background: #1a3a6c;
  color: white;
  padding: 20px;
}

.rules-header h3 {
  color: white;
  margin: 0;
}

.rules-content {
  padding: 25px;
}

.warning-box {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.warning-box h4 {
  color: white;
  margin-top: 0;
}

.signature-box {
  background: #f8fafc;
  border: 1px solid #e1e1e1;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.signature-line {
  border-bottom: 2px solid #1a3a6c;
  width: 200px;
  margin: 10px 0;
  padding-top: 20px;
}

/* ######### Gallery ######### */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.video-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-thumbnail::after {
  content: '▶️';
  font-size: 3rem;
  position: absolute;
}

.video-info {
  padding: 15px;
}

.gallery-category {
  margin-bottom: 50px;
}

.gallery-category h3 {
  margin-bottom: 20px;
  color: #1a3a6c;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  background: #f1f5f9;
}

.submit-section {
  background: linear-gradient(135deg, #1a3a6c, #2c5282);
  color: white;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin: 30px 0;
}

.submit-section h3 {
  color: white;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ######### Contact ######### */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.contact-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.contact-icon {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 15px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1a3a6c;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #1a3a6c;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.social-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.social-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.office-hours {
  background: linear-gradient(135deg, #1a3a6c, #2c5282);
  color: white;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.office-hours h3 {
  color: white;
  margin-bottom: 20px;
}

.time-list {
  list-style: none;
  padding: 0;
}

.time-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ######### Footer ######### */

/* Footer Styles */
.main-footer {
  background-color: #1a3a6c;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex-basis: 30%;
  margin-bottom: 20px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-about p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #e74c3c;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #ccc;
}

.footer-policy-links {
  margin-top: 10px;
}

.footer-policy-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-policy-links a:hover {
  color: white;
}

/* Styling for active navigation item */
.nav-item.current-page {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
  color: #0056b3; /* Change to match your site's theme color */
  font-weight: bold;
  position: relative;
  padding: 10px;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0056b3; /* Change to match your site's theme color */
}
