*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/

/* *** Navbar Start *** */
.navbar_btn {
    background: transparent;
    position: relative;
    padding: 5px 30px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid rgb(255,0,0);
    border-radius: 6rem;
    outline: none;
    overflow: hidden;
    /* color: rgb(255,0,0); */
    color: white;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

.navbar_btn span {
    margin: 10px;
}

.navbar_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: '';
    border-radius: 50%;
    display: block;
    width: 20em;
    height: 20em;
    left: -5em;
    text-align: center;
    transition: box-shadow 0.5s ease-out;
    z-index: -1;
}

.navbar_btn:hover {
    color: #fff;
    border: 1px solid rgb(255,0,0);
}

.navbar_btn:hover::before {
    box-shadow: inset 0 0 0 10em rgb(255, 0, 0);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.nav-item .nav-link {
    color: white !important;
    font-weight: bold;
    padding: 20px;
}

.nav-item .nav-link:hover{
    color: red !important;
}

#navbar-button{
    padding: 10px 30px;
    background-color: transparent;
    color: white;
    border-radius: 6rem;
    border: 2px solid red ;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-custom {
    /* background-color: rgba(0, 0, 0, 0.5) !important; */
    border-bottom: 2px solid red;
    position: absolute;
    top: 0;
    width: 89%;
    z-index: 2;
    color: white;
}

.navbar-nav-center {
    margin: 0 auto;
}

.navbar-nav-right {
    margin-left: auto;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    /* font-size: 3vw; */
    z-index: 1;
}

.centered-text h1{
    font-size: 4rem;
    color:  black;
    margin-top: 2rem;
}

.centered-text p{
    margin-top: 2rem;
}

.centered-text button{
    padding: 10px 30px;
    background-color: transparent;
    color: black;
    border-radius: 6rem;
    border: 2px solid red ;
    margin-top: 2rem;

}

@media (max-width: 768px) {
    .centered-text {
        font-size: 5vw;
    }

    .navbar-custom{
        background-color: black !important;
    }
    .navbar_btn{
        margin-left: 10px;
      }

      .contact_number_box{
        margin-top: 20px;
      }
}


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/about-bg-2.jpg); */
    background-color: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 0 0;
    height: 68vh;
}
/*** Single Page Hero Header End ***/


.address_box{
    width: 100%;
    /* margin-left: 10px; */
}


    /*** Footer Start ***/
    .footer {
        border-top: 3px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-style: dotted;
        border-color: var(--bs-light);
      }
      .footer .footer-item a,
      .footer .footer-item p {
        line-height: 35px;
        color: var(--bs-body);
        transition: 0.5s;
        color: white;
        text-decoration: none;
      }
      
      .footer .footer-item a:hover {
        color: red;
        letter-spacing: 1px;
      }
      
      .footer .footer-item .footer-gallery {
        position: relative;
        overflow: hidden;
      }
      
      .footer .footer-item .footer-gallery img {
        width: 300px;
        height: 120px;
        transition: 0.5s;
      }
      
      .footer .footer-item .footer-gallery:hover img {
        transform: scale(1.2);
      }
      
      .footer .footer-item .footer-gallery .footer-search-icon {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        opacity: 0;
      }
      
      .footer .footer-item .footer-gallery:hover .footer-search-icon {
        opacity: 1;
        background: rgba(0, 0, 0, .6);
      }
      /*** Footer End ***/
      
      /*** copyright Start ***/
      .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: var(--bs-dark) !important;
      }
      /*** copyright end ***/


      /* Mobile devices (portrait and landscape) */
@media (max-width: 576px) {
    /* Styles for mobile devices */
    .navbar-custom{
      background-color: black;
      width: 89%;
      margin-left: 10px;
    }
  
    .navbar_btn{
      width: 48%;
      margin-left: 8px;
    }
    .nav-item{
      position: relative;
      left: 60px;
    }
    .bai_img{
      margin-top: 10px;
    }
  }
  
  /* Tablets and small desktops */
  @media (min-width: 577px) and (max-width: 768px) {
    /* Styles for tablets and small desktops */
  }
  
  /* Medium devices (laptops/desktops) */
  @media (min-width: 769px) and (max-width: 992px) {
    /* Styles for laptops/desktops */
    .navbar-custom{
      background-color: black !important;
      width: 89%;
    }
    
  }
  
  /* Large devices (large desktops) */
  @media (min-width: 993px) and (max-width: 1200px) {
    /* Styles for large desktops */
    .navbar-custom{
      /* background-color: black !important; */
      width: 99%;
    }
  
    
  }
  
  /* Extra large devices (extra large desktops, TVs) */
  @media (min-width: 1201px) and (max-width: 1800px) {
    /* Styles for extra large desktops */
    .navbar-custom{
      width: 79% !important;
    }

    .nav-item{
      position: relative;
      left: 5px;
    }
  }
  
  /* Ultra large devices (ultra large desktops, large TVs) */
  @media (min-width: 1401px) {
    /* Styles for ultra large desktops and large TVs */
    .navbar-custom{
      width: 59%;
    }

    .nav-item{
      position: relative;
      right: 10px;
    }
    
  }
  

  

/* Button styles */
.important-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  padding: 10px 20px;
  background-color: #dc3545;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  animation: blink 1s infinite;
}

/* Blinking animation */
@keyframes blink {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}

.important-btn:hover{
  animation: none;
}

/* Icon styling */
.important-btn i {
  margin-right: 8px;
}

.bai_img{
  position: relative;
  top: 5px;
}
