/* ###########  Global CSS ##########*/

/*  Fonts */

h1,h2,h3,h4,h5,h6 {

    font-family: "Roboto Slab", serif;
}

p,ul,ol, .nav-link{

     font-family: "Raleway", sans-serif;
}

/* Nav Bar */

.nav-link{

    font-size: 0.90rem;
    color: white;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link.active:focus,
.navbar-nav .nav-link.active:hover {
    color: #ffffff !important;
    font-weight: bold !important;
}
.navbar-toggler {
    background-color: #023474; /* same as navbar */
    border: none; /* optional, removes default border */
}

.navbar-toggler-icon {
    filter: invert(1); /* makes the icon white */
}

.navbar-toggler:hover {
    background-color: #0150a0; /* slightly darker blue */
}

.navbar-toggler {
    border-radius: 8px;
}
/* hero */

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay for readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#local-expertise {
  border-top: 3px solid #e0e0e0;
}

/* Make hero text same size as Services section */
.hero-content h1 {
    font-size: 3rem; /* Adjust to match your Services h2/h3 size */
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem; /* Match Services paragraph text */
}

.hero-content .btn {
    font-size: 1rem; /* Keep button consistent */
    padding: 0.5rem 1rem;
}


/* services */

 /* Hero Video Background */
    .hero-video {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }
    .hero-video video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
      filter: brightness(50%);
    }
    .hero-video .hero-content {
      z-index: 1;
    }
    /* Section padding */
    section {
      padding: 5rem 0;
    }
    .service-card i {
      font-size: 3rem;
      color: #023474;
      margin-bottom: 1rem;
    }

 /* Steps styling */
.how-step {
    transition: transform 0.3s ease;
}
.how-step:hover {
    transform: translateY(-5px);
}
.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.25rem;
    margin: 0 auto;
    text-align: center;
}

/* Contact Page */

/* ===== HERO SECTION ===== */
.contact-hero {
  background:  url('images/contact.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
}

.contact-hero p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* ===== CONTACT FORM & INFO BOXES ===== */
.contact-box, .info-box {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover, .info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.contact-box h3, .info-box h4 {
  margin-bottom: 1.5rem;
}

.contact-box .form-control, 
.contact-box .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-box .form-control:focus, 
.contact-box .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.25);
}

.contact-box button {
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-box button:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
}

/* ===== GOOGLE MAP ===== */
.map-section iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  filter: saturate(1.2);
}

/* ===== FAQ ===== */
.accordion-button {
  font-weight: 500;
  border-radius: 8px;
}

.accordion-button:focus {
  box-shadow: none;
}

/* ===== ICONS ===== */
.bi {
  color: #0d6efd;
  margin-right: 8px;
}



/* ===== CONTACT HERO WITH VIDEO ===== */
.contact-hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(100%);
}

/* Dark overlay for readability */
.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* Text */
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.contact-hero-content h1 {
  font-size: 3rem;
}

.contact-hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .contact-hero-video {
    height: 100vh;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-hero p {
     font-size: 1rem;}
}


 


