/* Base Styles */
:root {
    --primary-color: #c8a035; /* Updated to golden yellow */
    --primary-dark: #a88529;
    --accent-color: #0c223f; /* Swapped with primary color */
    --light-bg: #f7f7f0;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
    --font-serif: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--light-bg);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
    color: var(--accent-color);
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  a:hover {
    color: var(--primary-color);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  button {
    cursor: pointer;
    font-family: var(--font-sans);
  }
  
  ul,
  ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Layout */
  .site-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }
  
  .main-content {
    flex: 1;
    margin-left: 80px;
  }
  
  @media (min-width: 1024px) {
    .site-container {
      flex-direction: row;
    }
  
    .main-content {
      margin-left: 100px;
    }
  }
  
  @media (max-width: 1023px) {
    .main-content {
      margin-left: 0;
      margin-top: 70px; /* Adjusted to match the mobile header height */
    }
  
    .top-bar + .site-container .main-content {
      margin-top: 70px; /* Keep the same margin even with top bar */
    }
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Top Bar */
  .top-bar {
    background-color: var(--accent-color);
    /*background-color: #075e4d;*/
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    width: 100%;
    position: relative;
    z-index: 40; /* Reduced z-index to be behind side-nav (z-index: 50) */
  }
  
  @media (min-width: 1024px) {
    .top-bar {
      position: sticky;
      top: 0;
    }
  }
  
  .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  @media (min-width: 1024px) {
    .top-bar-container {
      padding-left: calc(100px + 1rem); /* Add padding to account for side-nav width */
    }
  }
  
  .contact-info {
    display: flex;
    gap: 1.5rem;
  }
  
  .contact-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-info a:hover {
    color: var(--primary-color);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    color: var(--white);
    transition: color 0.2s ease;
  }
  
  .social-links a:hover {
    color: var(--primary-color);
  }
  
  @media (max-width: 767px) {
    .top-bar {
      display: none;
    }
  }
  
  /* Side Navigation */
  .side-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background-color: var(--white);
    /*background-color: #c8a035;*/
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
  }
  
  @media (max-width: 1023px) {
    .side-nav {
      bottom: auto;
      width: 100%;
      height: 70px; /* Increased height for mobile header */
      flex-direction: row;
      justify-content: space-between;
      padding: 0 1rem;
      border-right: none;
      border-bottom: 1px solid var(--gray-200);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
  
    .logo-container {
      flex: 0;
      order: 2; /* Center the logo */
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .menu-button {
      order: 1; /* Move menu to left */
      padding: 0;
    }
  
    .nav-icons {
      order: 3; /* Move icons to right */
      flex-direction: row;
      margin-bottom: 0;
      gap: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .side-nav {
      width: 100px;
    }
  }
  
  .menu-button {
    padding: 1rem;
    display: flex;
    justify-content: center;
  }
  
  .menu-button button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: 1px solid #c8a035;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
  }
  
  .menu-button button:hover {
    background-color: var(--primary-color);
    /*background-color: #fff;*/
    color:#fff;
  }
  
  .menu-button span {
    font-size: 0.75rem;
    margin-top: 0.25rem;
  }
  
  @media (max-width: 1023px) {
    .menu-button button {
      padding: 0;
    }
  
    .menu-button svg {
      width: 24px;
      height: 24px;
    }
  
    .menu-button span {
      display: none;
    }
  }
  
  .logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-container a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo-container span {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 700;
  }
  
  @media (max-width: 1023px) {
    .logo-container img {
      width: 50px;
      height: 50px;
    }
  
    .logo-container span {
      display: none;
    }
  }
  
  .nav-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .nav-icons button {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
  }
  
  .nav-icons button:hover {
    /*background-color: var(--gray-100);*/
    background: #c8a035;
  }
  
  @media (max-width: 1023px) {
    .nav-icons {
      margin-bottom: 0;
    }
  
    .nav-icons button {
      padding: 0;
    }
  
    .nav-icons svg {
      width: 24px;
      height: 24px;
    }
  }
  
  @media (max-width: 767px) {
  #searchToggle {
    display: none;
  }
  #contactToggle{
      color:#daa520;
  }
}

  
  /* Menu Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .menu-close-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background-color: var(--white);
    z-index: 10;
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  @media (max-width: 767px) {
    .menu-close-panel {
      width: 80px;
    }
  }
  
  .menu-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    padding: 1.5rem;
    color: var(--gray-800);
    transition: color 0.2s ease;
  }
  
  .menu-close:hover {
    color: var(--primary-color);
  }
  
  .menu-close span {
    margin-top: 0.25rem;
  }
  
  .menu-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
  }
  
  .menu-panel-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .menu-panel-icons button {
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--gray-800);
    transition: color 0.2s ease;
  }
  
  .menu-panel-icons button:hover {
    color: var(--primary-color);
  }
  
  .main-menu-panel {
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 350px;
    background-color: var(--white);
    z-index: 10;
    border-right: 1px solid var(--gray-200);
    overflow-y: auto;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  
  @media (max-width: 767px) {
    .main-menu-panel {
      left: 80px;
      width: calc(100% - 80px);
    }
  }
  
  .submenu-panel {
    position: absolute;
    left: 470px;
    top: 0;
    bottom: 0;
    width: 350px;
    background-color: var(--white);
    z-index: 10;
    border-right: 1px solid rgba(200, 160, 53, 0.2);
    overflow-y: auto;
    opacity: 0;
    transform: translateX(-100px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  @media (max-width: 1023px) {
    .submenu-panel {
      left: 430px;
      width: calc(100% - 430px);
    }
  }
  
  @media (max-width: 767px) {
    .submenu-panel {
      left: 80px;
      width: calc(100% - 80px);
      transform: translateX(100%);
    }
  }
  
  .submenu-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  
  .main-menu-content,
  .submenu-content {
    padding: 2rem;
  }
  
  .main-menu-content h2,
  .submenu-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .main-menu-nav {
    margin-bottom: 2rem;
  }
  
  .menu-item {
    margin-bottom: 1.25rem;
  }
  
  .menu-item a,
  .menu-toggle {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-800);
    transition: color 0.2s ease;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
  }
  
  .menu-item a:hover,
  .menu-toggle:hover {
    color: var(--primary-color);
  }
  
  .menu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-toggle.active {
    color: var(--primary-color);
  }
  
  .chevron-right {
    color: var(--primary-color);
  }
  
  .submenu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .submenu-nav a {
    font-size: 1.25rem;
    color: var(--gray-800);
    transition: color 0.2s ease;
  }
  
  .submenu-nav a:hover {
    color: var(--primary-color);
  }
  
  .back-button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3rem;
    transition: color 0.2s ease;
  }
  
  .back-button:hover {
    color: var(--accent-color);
  }
  
  .back-button svg {
    margin-right: 0.5rem;
  }
  
  .additional-links {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
  }
  
  .additional-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-800);
    transition: color 0.2s ease;
  }
  
  .additional-links a:hover {
    color: var(--primary-color);
  }
  
  .menu-overlay-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
  }
  
  /* Sections */
  section {
    padding: 5rem 1.5rem;
  }
  
  /* Hero slider section should have no padding */
  .hero-slider {
    padding: 0;
  }
  
  section.bg-white,
  .classroom-section,
  .news-section,
  .news-events-section {
    background-color: var(--white);
  }
  
  section.bg-primary,
  .accomplishments-section {
    background-color: var(--accent-color);
    color: var(--white);
  }
  
  .accomplishments-section h2,
  .accomplishments-section h3 {
    color: var(--white);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-intro {
    max-width: 48rem;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    text-align: center;
  }
  
  .section-header-with-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
    .section-header-with-link {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  .section-footer {
    margin-top: 3rem;
    text-align: center;
  }
  
  /* Columns */
  .two-column,
  .three-column {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .two-column {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .three-column {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Cards */
  .card {
    background-color: var(--white);
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
  }
  
  .card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .card-image {
    position: relative;
    height: 0;
    padding-bottom: 66.67%; /* 2:3 aspect ratio */
    overflow: hidden;
  }
  
  .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-simple {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  /* News Cards */
  .news-card {
    background-color: var(--white);
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
  }
  
  .news-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .news-card .date {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
  }
  
  /* Events */
  .events-section {
    margin-top: 3rem;
  }
  
  .events-section h3 {
    margin-bottom: 1.5rem;
  }
  
  .events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .event-item {
    display: flex;
    align-items: flex-start;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .event-date {
    margin-right: 1.5rem;
    text-align: center;
    min-width: 3rem;
  }
  
  .event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
  }
  
  .event-date .month {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
  }
  
  .event-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  
  .event-details p {
    color: var(--gray-700);
    margin-bottom: 0;
  }
  
  /* Achievement List */
  .achievement-list {
    list-style: none;
    padding: 0;
  }
  
  .achievement-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .achievement-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    border-top: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
  }
  
  /* Buttons */
  .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    text-align: center;
  }
  
  .button.primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
  }
  
  .button.primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
  }
  
  .button.secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
  }
  
  .button.secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
  }
  
  .button.light {
    background-color: var(--white);
    color: var(--accent-color);
    border: 1px solid var(--white);
  }
  
  .button.light:hover {
    background-color: var(--gray-200);
  }
  
  .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  /* Links with arrows */
  .link-with-arrow {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .link-with-arrow svg {
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
  }
  
  .link-with-arrow:hover svg {
    transform: translateX(3px);
  }
  
  .link-with-arrow.accent {
    color: var(--primary-color);
  }
  
  .link-with-arrow.accent:hover {
    color: var(--accent-color);
  }
  
  /* Forms */
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(200, 160, 53, 0.2);
  }
  
  /* Academic Facilities */
  .facilities-section {
    background-color: var(--light-bg);
    padding: 5rem 1.5rem;
  }
  
  .facilities-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  @media (min-width: 640px) {
    .facilities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .facilities-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .facility-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.375rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .facility-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
  }
  
  .facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .facility-item h3 {
    margin-bottom: 1rem;
  }
  
  .facility-item p {
    color: var(--gray-700);
    margin-bottom: 0;
  }
  
  /* Calendar Section */
  .calendar-section {
    background-color: var(--white);
    padding: 5rem 1.5rem;
  }
  
  .calendar-intro {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
  }
  
  .upcoming-events {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .upcoming-events h3 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Apply Banner */
  .apply-banner {
    background-color: var(--accent-color);
    background-image: linear-gradient(rgba(12, 34, 63, 0.9), rgba(12, 34, 63, 0.9)), url("../images/banner-bg.jpg");
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 1.5rem;
    text-align: center;
  }
  
  .apply-content {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .apply-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .apply-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  /* Footer */
  .site-footer {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 3rem 1.5rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-top {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-top {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
  }
  
  .footer-logo img {
    margin-right: 1rem;
  }
  
  .footer-logo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .footer-logo-text p {
    color: var(--gray-300);
    margin-bottom: 0;
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--gray-300);
  }
  
  .footer-contact strong {
    color: var(--white);
  }
  
  .footer-social h4 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .footer-social .social-icons a {
    color: var(--gray-300);
  }
  
  .footer-social .social-icons a:hover {
    color: var(--primary-color);
  }
  
  .footer-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .footer-column h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li a {
    color: var(--gray-300);
    transition: color 0.2s ease;
  }
  
  .footer-column ul li a:hover {
    color: var(--primary-color);
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 0.875rem;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  @media (min-width: 768px) {
    .footer-links {
      margin-top: 0;
    }
  }
  
  .footer-links a {
    color: var(--gray-400);
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  /* Page Header */
  .page-header {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 3rem 1.5rem;
    text-align: center;
  }
  
  .page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .breadcrumb {
    color: var(--gray-300);
    font-size: 0.875rem;
  }
  
  .breadcrumb a {
    color: var(--gray-300);
    transition: color 0.2s ease;
  }
  
  .breadcrumb a:hover {
    color: var(--primary-color);
  }
  
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer Accreditions */
.footer-accreditations {
    background-color: #0c223f; /* matches footer background */
    padding: 0px 0;
    overflow: hidden;
}

.footer-marquee {
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.footer-logo-item {
    flex: 0 0 auto;
    width: 140px;
    height: 100px;
    text-align: center;
}

.footer-logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}

/* Desktop view – no animation, show in a grid */
@media screen and (min-width: 769px) {
    .footer-marquee .marquee-content {
        /*animation: none;*/
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo-item {
        width: 200px;
        height: 150px;
    }
}

/* Keyframes for smooth scrolling */
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}