@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --primary: #e60013;
    --secondary: #838383;
    --light: #F2F2F2;
    --dark: #000000;
    --topbar-height: 48px;
}
body{
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: var(--topbar-height);
}



.navbar-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-menu .dropdown-item {
  transition: color 0.2s ease;
  padding-right: 10px;
  z-index: 2000;
}


.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: transparent;
  color: var(--primary);   
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  border-radius: 50px;
  float: inline-end;
  overflow: hidden;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 19, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(230, 0, 19, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 19, 0);
  }
}

.pulse-hover:hover {
    animation: pulse 1.2s infinite;
    transform: translateY(-1px);
    border-width: 1px;
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--dark);
}

.pulse-hover {
    transition: transform 0.2s ease;
}

.bi-geo-alt-fill, .bi-envelope-fill, .bi-telephone-fill {
    color: var(--primary);
}

.hero-text {
  top: 50%;
  transform: translate(-50%, -65%);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-text {
  top: 50%;
  transform: translate(-50%, -65%);
  z-index: 2;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.card img {
  position: relative;
  z-index: 0;
}

.carousel-item {
  height: 90vh;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  bottom: 0;
  top: 0;
}

.carousel-caption h1,
.carousel-caption p {
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1c1c1c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

footer .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.powered {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.powered:hover {
    color: var(--light);
}

.button-box {
   text-align:center;
   margin-top:20px;
}

.custom-pills .nav-link {
      border-radius: 50px;
      padding: 12px 30px;
      font-weight: 500;
      background-color: #e9e9e9;
      color: #555;
      margin: 0 10px;
      transition: all 0.3s ease;
    }

    .custom-pills .nav-link.active {
      background-color: var(--primary);
      color: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .custom-pills .nav-link:hover {
      background-color: #dcdcdc;
      color: #000;
    }

.video-container {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
