.top-contact-bar {
  background-color: #D51920;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 62px;
  font-size: 14px;
}

.top-contact-bar .contact-info,
.top-contact-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-contact-bar i {
  margin-right: 5px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 39px;
  background-color: #fff;
  flex-wrap: wrap;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
 
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background-color: #D51920;
  color: #fff;
  transform: scale(1.1);
}


/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;
  flex-direction: column;
  z-index: 20;
}

.dropdown-content a {
  padding: 13px 17px;
  color: #0b1b36;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

.site-logo img {
  height: 100px;
  margin-left: 11px;
}

.site-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #0b1b36;
  font-weight: bold;
  font-size: 16px;
  font-family: jost;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-quote {
  background-color: #D51920;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.site-nav .btn-quote{
  color: #fff;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
.site-header {
  flex-direction: row; /* changed from column */
  justify-content: space-between;
  align-items: center;
}

.site-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #fff;
  margin-top: 10px;
}

.site-nav.active {
  display: flex;
}

.nav-toggle {
  display: block;
  font-size: 24px;
  cursor: pointer;
  background-color: #D51920;
  padding: 3px 15px;
  color: #fff;
  margin: 15px;
  border-radius: 9px;
}

.btn-quote {
  margin-top: 10px;
}
.top-contact-bar i {
  display: none;
  }
}

.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
  background-color: #d51920;
  color: #fff !important;
  border-radius: 6px;
}

.main-menu li a:hover {
  background-color: #d51920;
  color: #fff;
  border-radius: 6px;
}

.main-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.main-menu li {
  position: relative;
}

.main-menu li a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  color: #333;
}

.main-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 99;
}

.main-menu li:hover > ul.sub-menu {
  display: block;
}

.btn-quote {
  background: #0073e6;
  color: white !important;
  padding: 8px 15px;
  border-radius: 4px;
}
/* By default, hide nav on mobile */
@media (max-width: 768px) {
  #main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px; /* adjust as needed */
    right: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 99;
  }

  #main-nav.active {
    display: flex;
  }

  .main-menu li {
    padding: 2px 8px;
  }
}


/* Default menu styles */
.main-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.main-menu li {
  position: relative;
}

.main-menu li a {
  text-decoration: none;
  padding: 5px 8px;
  display: block;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  font-family: Bree Serif;
}

/* Mobile menu hidden by default */
@media (max-width: 768px) {
  #main-nav {
    display: none; /* Hide menu by default */
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  #main-nav.active {
    display: flex; /* Show menu when active */
  }

  .main-menu {
    display: flex;
    flex-direction: column; /* Stack menu vertically on mobile */
    gap: 0px;
  }

  .main-menu li {
    padding: 10px 15px;
  }
  .main-menu li a {
    padding: 5px 10px;
  }
}


    /* banner */

    .hero-banner {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .slide .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Adjust 0.5 as needed */
      z-index: 0;
    }

    .hero-content {
      position: relative; /* So it appears above overlay */
      z-index: 1;
    }


    .slide {
      background-size: cover;
      background-position: center;
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      opacity: 0;
      transform: translate(-50%, -40%);
      transition: opacity 1s ease, transform 1s ease;
    }

    .slide.active .hero-content {
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    .hero-content h1 {
      font-size: 60px;
      font-weight: bold;
      line-height: 1.2;
      font-family: Bree Serif;
    }

    .hero-content p {
      font-size: 18px;
      margin: 20px 0;
      color: #fff;
    }

    .hero-buttons a {
      display: inline-block;
      margin: 0 10px;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 3px;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-red {
      background-color: #d10000;
      color: #fff;
    }

    .btn-red:hover {
      background-color: #d1d2d2;
      color: #000;
    }

    .btn-outline {
      border: 2px solid #fff;
      color: #fff;
    }

    .btn-outline:hover {
      background-color: #fff;
      color: #000;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0,0,0,0.6);
      color: #fff;
      padding: 7px 12px;
      font-size: 12px;
      cursor: pointer;
      z-index: 2;
    }

    .arrow-left {
      left: 50px;
    }

    .arrow-right {
      right: 50px;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 36px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .arrow {
        padding: 10px;
        font-size: 16px;
      }
    }

    /* banner */


