/* Navigation */
.navbar {
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  height: 180px;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0;
  height: 100px;
}

.navbar-brand {
  position: relative;
  display: block;
  height: 100%;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar-brand img:hover {
  filter: brightness(1.2);
  transition: filter 0.3s;
}

.navbar-brand .logo-default {
  height: 180px;
  margin-top: 15px;
}

.navbar-brand .logo-scrolled {
  position: absolute;
  top: 30%;
  left: 0;
  opacity: 0;
  height: 80px;
}

.navbar.scrolled .logo-default {
  opacity: 0;
}

.navbar.scrolled .logo-scrolled {
  opacity: 1;
}

.navbar .nav-link {
  color: white;
  font-weight: 500;
  padding: 0 1rem !important;
  transition: color 0.3s ease;
  font-size: 1.5em;
}

.navbar.scrolled .nav-link {
  color: #f68026;
  font-size: 1.5em;
  padding: 0 1rem;
}

/* Medium screen adjustments for scrolled navigation */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar.scrolled .nav-link {
    font-size: 1.1em;
  }
}

.navbar .nav-link:hover {
  color: #f68026;
}

.navbar.scrolled .nav-link:hover {
  color: #333;
  text-decoration: underline;
}

.navbar .nav-link.active {
  color: #f68026;
}

.nav-link:focus,
.nav-link.dropdown-toggle:focus {
  outline: 2px solid #fff !important;
  box-shadow: none !important;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
  .navbar {
    background-color: transparent !important;
    height: auto;
    padding: 0.5rem 0;
  }

  .navbar.scrolled {
    background-color: transparent !important;
    height: auto;
  }

  .navbar-brand .logo-default {
    height: 120px;
    margin-top: 0;
  }

  .navbar-brand .logo-scrolled {
    display: none;
  }

  .navbar .nav-link {
    color: #e08c0d;
    font-size: 1.5em;
    padding: 0 1rem;
    text-align: center;
  }

  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
  }

  .navbar-nav {
    align-items: center;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .navbar .nav-link.show,
  .navbar .dropdown-toggle.show {
    color: #f68026 !important;
    background: transparent !important;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Content Animations */
.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-delay-1 {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.animate-fade-in-delay-2 {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.2s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000; /* Fallback color while video loads */
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding-top: 35vh;
}

.hero__content h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__content p {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero__content .btn {
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background-color: #ff913d;
  border: none;
}

.hero__content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #ff913d;
}

/* Add this media query for mobile responsiveness */
@media (max-width: 768px) {
  .hero__content {
    /* Adjust padding to better center content on smaller screens */
    padding-top: 30vh;
    padding-bottom: 10vh; /* Add padding to the bottom to ensure button is visible */

    h1 {
      font-size: 3rem; /* Reduce font size for the main heading */
    }

    p {
      font-size: 1.25rem; /* Reduce font size for the paragraph */
    }
  }
}

/* Additional styles for very small screens (older phones) */
@media (max-width: 480px) {
  .hero__content {
    padding-top: 25vh;
    padding-bottom: 15vh;

    h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

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

    .btn {
      font-size: 1rem;
      padding: 0.6rem 1.5rem;
    }
  }
}

/* Footer */
.footer {
  background-color: #333;
  color: #ffffff;
  position: relative;
}

.footer-heading {
  color: #e08c0d;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer address {
  color: #ffffff;
  font-style: normal;
  line-height: 1.6;
}

.footer-link {
  color: #e08c0d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff7206;
  text-decoration: none;
}

/* Responsive adjustments for footer */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer .row {
    row-gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer .col:last-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    width: 100%;
  }
}

/* Mission Statement Section */
.mission-statement {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.mission-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.mission-content p {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .mission-statement {
    padding: 3rem 0;
  }

  .mission-content h2 {
    font-size: 2rem;
  }

  .mission-content p {
    font-size: 1.2rem;
  }
}

/* Our Approach Section */
.approach-section {
  background: #333;
  color: #fff;
  padding: 4rem 0 4rem 0;
}

.approach-title {
  text-align: center;
  color: #fbfbfb;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.approach-row {
  justify-content: center;
}

.approach-col {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.approach-icon {
  font-size: 3rem;
  color: #ffb115;
  margin-bottom: 1.5rem;
}

.approach-header {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.approach-text {
  font-size: 1.15rem;
  color: #e0e0e0;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 350px;
}

@media (max-width: 991.98px) {
  .approach-col {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 767.98px) {
  .approach-row {
    flex-direction: column;
  }
  .approach-col {
    max-width: 100%;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
  }
  .approach-title {
    font-size: 1.5rem;
  }
  .approach-header {
    font-size: 1.2rem;
  }
  .approach-text {
    font-size: 1rem;
  }
}

/* Gallery Section - Centered and Responsive */
.gallery-section {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 0;
}

.gallery-grid {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
}

.gallery-item {
  display: block;

  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
  background: #fff;
  width: 100%;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 2rem;
  transition: filter 0.2s;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  z-index: 2;
}
.gallery-item:hover img {
  filter: brightness(0.92) contrast(1.08) saturate(1.1);
  transition: filter 0.2s, transform 0.2s;
  transform: scale(1.03);
}

@media (max-width: 1200px) {
  .gallery-item img {
    height: 180px;
  }
}
@media (max-width: 900px) {
  .gallery-item img {
  }
}
@media (max-width: 600px) {
  .gallery-section {
    padding: 1.5rem 0;
  }
  .gallery-item {
    border-radius: 1rem;
  }
  .gallery-item img {
    border-radius: 1rem;
  }
}

/* GLightbox Customization */
.glightbox-container .gslide-media {
  background: #fff !important;
  border-radius: 1.5rem;
  padding: 2rem;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.glightbox-container .gslide-title {
  color: #222;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 1.5rem;
  text-align: center;
}
.glightbox-container .gslide-desc {
  color: #555;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .glightbox-container .gslide-media {
    padding: 0.5rem;
    border-radius: 0.7rem;
  }
  .glightbox-container .gslide-title {
    font-size: 1.1rem;
  }
  .glightbox-container .gslide-desc {
    font-size: 1rem;
  }
}

.footer-logo-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.footer-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 600px) {
  .footer-logo {
    max-width: 200px;
  }
}

.bottom-nav {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.5rem 1.2rem;
  display: inline-block;
  transition: color 0.2s;
  border-radius: 2rem;
}
.bottom-nav:hover,
.bottom-nav:focus {
  color: #e08c0d;

  text-decoration: none;
}
@media (max-width: 991.98px) {
  .bottom-nav {
    font-size: 1rem;
    padding: 0.5rem 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .footer .row.justify-content-center {
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer .col-auto {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
    margin: 0 !important;
    padding: 0 !important;
  }
  .bottom-nav {
    display: block;
    width: 100%;
    margin: 0 !important;
    border-radius: 1rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .footer-divider {
    margin-bottom: 0.7rem;
  }
}

.footer-divider {
  border: none;
  border-top: 1.5px solid #fff;
  opacity: 0.2;
  margin: 0 auto 1.5rem auto;
  width: 90%;
}

.footer-socials {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}
.footer-social-link {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0.7rem;
  display: inline-block;
  transition: color 0.2s;
  vertical-align: middle;
}
.footer-social-link:hover,
.footer-social-link:focus {
  color: #e08c0d;
  text-decoration: none;
}

.feature-section {
  background: #f8f9fa;
  padding: 3rem 0;
}

.feature-image-wrapper img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.feature-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 2rem;
}

.feature-btn {
  font-size: 1.1rem;
  padding: 0.75rem 2.2rem;
  text-transform: uppercase;
  background: #ff913d;
  border: solid 2px #ff913d;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.feature-btn:hover,
.feature-btn:focus {
  background: #fff;
  color: #ff913d;
  border: solid 2px #ff913d;
}

@media (max-width: 991.98px) {
  .feature-section {
    padding: 2rem 0;
  }
  .feature-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .feature-section {
    padding: 1.2rem 0;
  }
  .feature-title {
    font-size: 1.1rem;
  }
  .feature-image-wrapper img {
    max-width: 100%;
    border-radius: 1rem;
  }
}

/* Manufacturers Section */
.manufacturers-section {
  background: #fff;
  padding: 4rem 0;
  overflow: hidden;
}

.manufacturers-title {
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.manufacturers-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.manufacturers-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.manufacturers-set {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-width: 100%;
  padding: 0 2rem;
}

.manufacturer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.manufacturer-logo:hover {
  transform: scale(1.1);
}

.manufacturer-logo img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.manufacturer-logo:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

@media (max-width: 991.98px) {
  .manufacturers-section {
    padding: 3rem 0;
  }

  .manufacturers-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .manufacturer-logo img {
    max-width: 120px;
    max-height: 60px;
  }
}

@media (max-width: 767.98px) {
  .manufacturers-section {
    padding: 2rem 0;
  }

  .manufacturers-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .manufacturer-logo img {
    max-width: 100px;
    max-height: 50px;
  }
}

.navbar-nav .dropdown-menu {
  left: auto;
  right: auto;
  min-width: 220px;
  margin-top: -50px;
  top: 100%;
  transform: translateX(0);
}
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    margin-top: 0px;
  }
}

/* Orange dropdown items */
.dropdown-menu .dropdown-item {
  color: #f68026;
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #fff3e6;
  color: #e08c0d;
}

/* Members & Partners Section */
.members-section {
  background: #fff;
  padding: 5rem 0 4rem 0;
}
.members-logos {
  gap: 2.5rem !important;
}
.member-logo {
  max-width: 250px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s, transform 0.3s;
}
.member-logo:hover {
  filter: brightness(1);
  transform: scale(1.07);
}
@media (max-width: 767.98px) {
  .members-section {
    padding: 1.5rem 0 1rem 0;
  }
  .member-logo {
    max-width: 80px;
    max-height: 40px;
  }
  .members-logos {
    gap: 1rem !important;
  }
}

/* CTA Section */
.cta-section {
  padding: 3rem 0 4rem 0;
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/ctabg2.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure images don't spill outside the container */
}
.cta-box {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-desc {
  font-size: 1.15rem;
  font-style: italic;
  color: #444;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .cta-section {
    padding: 1.5rem 0 1rem 0;
  }
  .cta-box {
    border-radius: 1rem;
    min-height: 180px;
    padding: 1.2rem !important;
  }
  .cta-desc {
    font-size: 1rem;
  }
}

.about-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/aboutbgd.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure images don't spill outside the container */
}
.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.about-content {
  background-color: #fff;
  padding-bottom: 3rem;
}
.team-section {
  background-color: #f8f9fa;
  padding-bottom: 4rem;
}
.team-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
}
.team-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.team-row-center {
  justify-content: center;
}
.team-row-label {
  justify-content: center;
  margin-bottom: 1rem;
}
.team-row-label h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  margin: 0;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 0rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.team-member:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.team-photo {
  width: 250px;
  height: 370px;
  object-fit: cover;
  margin-bottom: 1rem;
  background: #f3f3f3;
}
.team-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.team-info p {
  font-size: 0.98rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.team-contact {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}
.team-email,
.team-phone {
  color: #fb9415;
  font-size: 1.3rem;
  background: #eaf6fb;
  border-radius: 50%;
  padding: 0.4rem;
  transition: background 0.2s, color 0.2s;
}
.team-email:hover,
.team-phone:hover {
  background: #f17d18;
  color: #fff;
}

@media (max-width: 767.98px) {
  .about-hero {
    height: 200px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .about-hero {
    height: 300px;
  }
}

/* Manufacturers Page Styles */
.manufacturers-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/manubgd.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.manufacturers-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.manufacturers-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.manufacturers-hero__content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.manufacturers-hero__content p {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.manufacturers-grid {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.manufacturer-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.manufacturer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.manufacturer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.manufacturer-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.manufacturer-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #333;
}

.manufacturer-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .manufacturers-hero {
    height: 250px;
  }

  .manufacturers-hero__content h1 {
    font-size: 2.5rem;
  }

  .manufacturers-hero__content p {
    font-size: 1.2rem;
  }

  .manufacturers-grid {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .manufacturers-hero {
    height: 200px;
  }

  .manufacturers-hero__content h1 {
    font-size: 2rem;
  }

  .manufacturers-hero__content p {
    font-size: 1rem;
  }

  .manufacturers-grid {
    padding: 2rem 0;
  }

  .manufacturer-card {
    padding: 1.2rem;
  }

  .manufacturer-logo {
    height: 100px;
    margin-bottom: 1rem;
  }

  .manufacturer-info h3 {
    font-size: 1.1rem;
  }

  .manufacturer-info p {
    font-size: 0.9rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/contactbg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.contact-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.contact-hero__content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.contact-content {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contact-intro {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}
.contact-form {
  background: #fff;
  box-shadow: 0 8px 32px rgba(246, 128, 38, 0.13),
    0 2px 12px rgba(0, 0, 0, 0.07);
  border: 2px solid #f68026;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 2rem;
}
.contact-form label {
  font-weight: 500;
}
.contact-form .form-control {
  font-size: 1.05rem;
  border: 1px solid #ffb066; /* lighter orange, 1px */
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
  border-color: #f68026;
  box-shadow: 0 0 0 2px rgba(246, 128, 38, 0.13);
  outline: none;
}
.contact-form button[type="submit"] {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  background: #f68026;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.5rem;
  box-shadow: 0 2px 8px rgba(246, 128, 38, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.contact-form button[type="submit"]:hover,
.contact-form button[type="submit"]:focus {
  background: #e06c13;
  color: #fff;
  box-shadow: 0 4px 16px rgba(246, 128, 38, 0.18);
}
@media (max-width: 767.98px) {
  .contact-hero {
    height: 200px;
  }
  .contact-hero__content h1 {
    font-size: 1.7rem;
  }
  .contact-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-hero {
    height: 300px;
  }
  .contact-hero__content h1 {
    font-size: 2.1rem;
  }
}

/* Contact Map Section Styles */
.contact-map-section {
  max-width: 700px;
  margin: 0 auto;
}
.contact-map {
  width: 100%;
  height: 400px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 1.5rem;
  z-index: 1;
}
.contact-map-info.card {
  border-radius: 1.2rem;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
}
.contact-map-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-map-info a {
  color: #f68026;
  text-decoration: none;
  font-weight: 500;
}
.contact-map-info a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .contact-map-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .contact-map {
    height: 200px;
  }
}

/* Request a Quote Page Styles */
.quote-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/quotebg1.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure images don't spill outside the container */
}

.quote-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.quote-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.quote-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 90px;
}
.quote-content {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.quote-form {
  background: #fff;
  box-shadow: 0 8px 32px rgba(246, 128, 38, 0.13),
    0 2px 12px rgba(0, 0, 0, 0.07);
  border: 2px solid #f68026;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 2rem;
}
.quote-form label {
  font-weight: 500;
}
.quote-form .form-control {
  font-size: 1.05rem;
  border: 1px solid #ffb066;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form .form-control:focus {
  border-color: #f68026;
  box-shadow: 0 0 0 2px rgba(246, 128, 38, 0.13);
  outline: none;
}
.quote-form button[type="submit"] {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  background: #f68026;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.5rem;
  box-shadow: 0 2px 8px rgba(246, 128, 38, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.quote-form button[type="submit"]:hover,
.quote-form button[type="submit"]:focus {
  background: #e06c13;
  color: #fff;
  box-shadow: 0 4px 16px rgba(246, 128, 38, 0.18);
}
@media (max-width: 767.98px) {
  .quote-hero {
    height: 200px;
  }
  .quote-hero__content {
    padding-top: 40px;
  }
  .quote-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .quote-hero {
    height: 300px;
  }
  .quote-hero__content {
    padding-top: 60px;
  }
}

/* Request a Demo Page Styles */
.demo-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/testkitchen.jpg") center center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure images don't spill outside the container */
}
.demo-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.demo-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.demo-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 90px;
}
.demo-content {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.demo-intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}
.demo-form {
  background: #fff;
  box-shadow: 0 8px 32px rgba(246, 128, 38, 0.13),
    0 2px 12px rgba(0, 0, 0, 0.07);
  border: 2px solid #f68026;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 2rem;
}
.demo-form label {
  font-weight: 500;
}
.demo-form .form-control {
  font-size: 1.05rem;
  border: 1px solid #ffb066;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.demo-form .form-control:focus {
  border-color: #f68026;
  box-shadow: 0 0 0 2px rgba(246, 128, 38, 0.13);
  outline: none;
}
.demo-form button[type="submit"] {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  background: #f68026;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.5rem;
  box-shadow: 0 2px 8px rgba(246, 128, 38, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.demo-form button[type="submit"]:hover,
.demo-form button[type="submit"]:focus {
  background: #e06c13;
  color: #fff;
  box-shadow: 0 4px 16px rgba(246, 128, 38, 0.18);
}
@media (max-width: 767.98px) {
  .demo-hero {
    height: 200px;
  }
  .demo-hero__content {
    padding-top: 40px;
  }
  .demo-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .demo-hero {
    height: 300px;
  }
  .demo-hero__content {
    padding-top: 60px;
  }
}

/* Request a Service Page Styles */
.service-hero {
  position: relative;
  width: 100%;
  height: 450px;
  background: url("/assets/images/servicebg.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure images don't spill outside the container */
}
.service-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.service-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.service-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-top: 90px;
}
.service-content {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.service-intro {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}
.service-form {
  background: #fff;
  box-shadow: 0 8px 32px rgba(246, 128, 38, 0.13),
    0 2px 12px rgba(0, 0, 0, 0.07);
  border: 2px solid #f68026;
  padding: 2.5rem 2rem 2rem 2rem;
  margin-top: 2rem;
}
.service-form label {
  font-weight: 500;
}
.service-form .form-control {
  font-size: 1.05rem;
  border: 1px solid #ffb066;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-form .form-control:focus {
  border-color: #f68026;
  box-shadow: 0 0 0 2px rgba(246, 128, 38, 0.13);
  outline: none;
}
.service-form button[type="submit"] {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  background: #f68026;
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.5rem;
  box-shadow: 0 2px 8px rgba(246, 128, 38, 0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.service-form button[type="submit"]:hover,
.service-form button[type="submit"]:focus {
  background: #e06c13;
  color: #fff;
  box-shadow: 0 4px 16px rgba(246, 128, 38, 0.18);
}
@media (max-width: 767.98px) {
  .service-hero {
    height: 200px;
  }
  .service-hero__content {
    padding-top: 40px;
  }
  .service-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .service-hero {
    height: 300px;
  }
  .service-hero__content {
    padding-top: 60px;
  }
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fd7e14' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 480px) {
  .cta-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: 500px;
  }
}
