/* Custom Styles */
body {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
  }

  a {
    color: #007bff; /* Primary blue color for links */
  }

  .navbar, .footer {
    background-color: #000000; /* Black background for navbar and footer */
  }

  .btn-primary {
    background-color: #007bff; /* Primary blue for buttons */
    border-color: #007bff;
  }

  .btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
    border-color: #0056b3;
  }

  .navbar-brand img {
    height: 70px; /* Adjust height of the logo */
  }


  /* Banner Styles */
  .banner {
    position: relative;
    width: 100%;
    height: 50vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
  }

  /* Fallback image when video isn't available */
  .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://static.wixstatic.com/media/9c0864_87fc582debc043e595e1af7797259e5cf000.jpg') no-repeat center center;
    background-size: cover;
    z-index: -2; /* Behind both content and video */
  }

  .banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.5);
  }

  .banner-content {
    color: #ffffff;
    text-align: center;
    z-index: 1; /* Above the video */
  }

  .banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .banner-content h1 {
      font-size: 2rem;
    }
  }
  
.container h2 {
    font-size: 66px;
    text-transform: uppercase;
}
.nav-link{
    font-family:"Arial";
    font-size:20px;
    text-transform:uppercase;
}
.normal-text {
    border:2px solid;
    max-width: max-content ;
    margin:auto;
    padding:2px 20px;
}

.silver-text {
    color: silver !important;
    border:2px solid;
    max-width: max-content ;
    margin:auto;
    padding:2px 20px;
}

.gold-text {
    color: gold !important;
    border:2px solid;
     max-width: max-content ;
    margin:auto;
    padding:2px 20px;
}

.service-box {
  position: relative;
  display: inline-block;
  width: 100%;
}

.service-box img {
  width: 100%;
  height: auto;
}

.service-box h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #007bff; 
  color: white; 
  text-align: center;
  margin: 0; 
  padding: 10px 0;
  font-size: 1.5em;
}

.navbar .nav-link{
      font-family: 'Roboto Condensed', sans-serif;
      font-size:25px;
    }
    
    body{
      font-family: 'Roboto Condensed', sans-serif;
      font-size:15px;
    }


    .navbar-brand img {
      width: 325px; /* Adjust size as needed */
      height: auto;
    }

    .nav-link{
        color:white;
    }
    .navbar-nav {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }
    .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover{
        color:rgb(41, 153, 200);
    }
    
    @media (max-width: 991.98px) {
      .navbar .row {
        flex-direction: column-reverse;
        text-align: center;
      }

      .navbar-nav {
        flex-direction: column;
        justify-content: center;
        margin-top: 10px;
      }

      .navbar-brand {
        margin-bottom: 10px; /* Adds spacing between logo and nav */
      }
    }
    
/* Full-page background image */
    .contact-us-section {
      background-image: url('assets/9c0864_d5bee947aee446139c9dc04a96b6ee0d~mv2.jpg.webp');
      background-size: cover;
      background-position: center;
      padding: 80px 0;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .contact-us-section .row .col-md-6{
        padding:0;
    }
    .contact-us-section img{
        height:100%;
        object-fit:cover;
    }
    .contact-map iframe{
        margin-top:40px;
        min-height:400px;
    }
    .contact-form {
      background: rgba(255, 255, 255, 0.85);
      padding: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      color: #000;
    }

    .form-heading {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    /* Responsive text in the form */
    @media (max-width: 576px) {
      .form-heading {
        font-size: 1.5rem;
      }
    }
    
    /* Card background image */
    .bg1 {
      background-image: url('https://static.wixstatic.com/media/9c0864_ebb35690780a4dab9fea9acea267e96c~mv2.jpg/v1/fill/w_486,h_488,al_c,q_80,usm_0.66_1.00_0.01,enc_auto/AdobeStock_243325383_edited_edited.jpg');

    }

    .card-background {
      background-size: cover;
      background-position: center;
      color: white;
      /* Optional: Makes text more visible */
      min-height: 433px;
    }

    /* Card body with a slight background overlay to make text readable */
    .card-body {
      padding: 20px;
    }

    .card-header {
      color: white;
      /* Header text color */
    }

    .card-title,
    .card-text {
      color: white;
    }

    /* Responsive text adjustment for smaller screens */
    @media (max-width: 576px) {
      .card-title {
        font-size: 1.2rem;
      }

      .card-text {
        font-size: 1rem;
      }
    }