html, body {
  overflow-x: hidden;
  touch-action: manipulation;
  position: relative;
}


/* Top Banner Styles */
.top-banner {
  background-color: #000080;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-family: 'League Spartan', Helvetica, Arial, Lucida, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}

/* Responsive Top Banner */
@media (max-width: 768px) {
  .top-banner {
      font-size: 12px;
      padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .top-banner {
      font-size: 10px;
      padding: 5px 10px;
  }
}

/* Schedule Button */
.schedule-btn {
  background-color: #e67e22;
  color: white;
  font-family: 'Libre Franklin', Helvetica, Arial, Lucida, sans-serif!important;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  width: 100%;
  border-radius: 0;
  display: block;
}

.schedule-btn:hover {
  background-color: #d35400;
  color: white;
}

/* Navbar Styling */
.navbar {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Center Mobile Menu Button */
@media (max-width: 991px) {
  .navbar-toggler {
      display: block;
      margin: 10px auto;
  }
}

/* Large Image Section */
.large-image {
  width: 100%;
  height: auto;
  display: block;
}

/* About Section Container */
.container-two {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

/* Company Name */
.company-name {
  font-size: 65px;
  color: #f0f80b;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Content Layout */
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Images Section */
.images {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 40%;
}

.responsive-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

.images img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Text Section */
.text {
  width: 55%;
  text-align: left;
}

/* Subheading */
.subheading {
  font-size: 16px;
  font-weight: bold;
  color: #001B50;
  text-transform: uppercase;
}

.subheading span {
  color: #001B50;
}

/* Highlighted Main Text */
.highlight {
  font-size: 65px;
  color: #f0f80b;
  margin-top: 15px;
}

/* Body Text */
.body-text {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.6;
  color: #000080;
  margin-top: 10px;
}

/* Mobile-Friendly Styles (Images Above Text) */
@media (max-width: 768px) {
  .content {
      flex-direction: column; /* Stack images above text */
      align-items: center;
  }

  .company-name {
    font-size: 32px;
    text-align: center;
  }

  .highlight {
    font-size: 38px;
    text-align: center;
  }

  .highlight-text {
    font-size: 24px !important;
    text-align: center;
  }

  .highlight-text-two {
    font-size: 24px !important;
    text-align: center;
  }

  .highlight-text-three {
    font-size: 14.9px !important;
    text-align: center;
  }
  .images {
      width: 100%; /* Full width images */
  }

  .text {
      width: 100%; /* Full width text */
      text-align: center; /* Center text for better readability */
  }
}

@media (min-width: 1024px) {
  .content {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
  }

  .images {
      flex: 1;
      flex-direction: column;
  }

  .text {
      flex: 1;
  }
}

/* Hero Section (Updated for Responsiveness) */
.hero-two-section {
  position: relative;
  width: 100%;
  height: 60vh; /* Default height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-two-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content */
.hero-two-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
}

.hero-two-content h1 {
  font-size: 2.5rem;
  margin: 0;
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
  .hero-two-section {
      height: 50vh;
  }

  .hero-two-content {
      width: 90%;
      padding: 15px;
  }

  .hero-two-content h1 {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-two-section {
      height: 40vh;
  }

  .hero-two-content {
      width: 95%;
      padding: 10px;
  }

  .hero-two-content h1 {
      font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-two-section {
      height: 35vh;
  }

  .hero-two-content {
      width: 100%;
      padding: 8px;
  }

  .hero-two-content h1 {
      font-size: 1.5rem;
  }
}

/* Footer Section */
.footer-section {
  background-color: #000080;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-button {
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.footer-button:hover {
  background-color: white;
  color: #000080;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container h2 {
      font-size: 24px;
  }

  .footer-buttons {
      flex-direction: column;
      gap: 10px;
  }

  .footer-button {
      width: 100%;
      text-align: center;
  }
}

.highlight-text {
  color: #f0f80b;
  font-size: 65px;
}

.accordion-button {
  font-weight: bold;
  color: #000080;
}

.accordion-body {
  color: #000080;
}

.highlight-text-two {
  color: #f0f80b;
  font-size: 65px;
}

.highlight-text-three {
  color: #f0f80b;
  font-size: 65px;
}

