@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin-300.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/inter-v12-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin-500.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/inter-v12-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local(""), url("../fonts/inter-v12-latin-700.woff2") format("woff2"),
    /* Chrome 26+, Opera 23+, Firefox 39+ */
      url("../fonts/inter-v12-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

body {
  font-family: "Inter", sans-serif;
}
.text-secondary {
  color: #333333 !important;
  line-height: 1.6;
}

.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}
.navbar {
  transition: all 0.4s ease;
}

/* Sticky Style */
.navbar {
  transition: box-shadow 0.3s ease; /* sirf shadow smooth hoga */
}

.navbar.sticky {
  position: fixed;
  top: 0; /* NO GAP */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 999;
  background: #fff;
  border-radius: 50px; /* rounded look */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-sm-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-weight: normal;
}
ul.list-unstyled.pt-2 li a {
    color: #fff;
    text-decoration: none;
}
.navbar-light.sticky-top.sticky-nav {
  right: 0;
  left: 0;
  top: 0px !important;
  width: 73%;
  margin: auto;
  border-radius: 50px;
  padding: 9px 22px !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.hero-btnn {
  min-width: 250px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-nav .nav-link {
  color: black;
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
  position: fixed;
  width: 100%;
  z-index: 1030;
}

.navbar-light.sticky-top.sticky-nav {
  top: 0px !important;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.text-primary {
  color: #007bff !important;
}

.hero-section {
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* black overlay */
  z-index: 2;
}

/* Content should appear above overlay */
.hero-section .container {
  z-index: 3;
  position: relative;
}

.hero-check {
  margin-top: -80px;
  z-index: 99;
  position: relative;
}

.service-box {
  position: relative;
  height: 250px;
  /*border-radius: 10px;*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

/* Inner image (front image) */
.inner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2; /* Above background */
}

/* Overlay */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 56%);
  z-index: 3;
}

.service-content {
  position: relative;
  z-index: 4; /* Text above overlay */
}

.logo-scroller-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.logo-carousel-section .container-fluid {
  overflow: hidden;
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.7;
  margin: 0 15px;
  flex-shrink: 0;
}

.bg-image-container {
  height: 400px;
  background: url("path/to/your/door-handle-background-image.jpg") no-repeat
    center center;
  background-size: cover;
  min-width: 400px;
}

.features-overlay {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 300px;
  z-index: 10;
}

.bi-check-circle-fill {
  font-size: 1.2rem;
}

.gap-custom {
  gap: 20px;
}

.gap-custom .col-lg-3 {
  width: 23.5%;
  margin: auto;
}

.service-bg {
  padding: 80px 0px 150px 0px;
}

.location-custom {
  margin-top: -100px;
}

.location-custom ul li {
  font-size: 18px;
  line-height: 40px;
}

.call-btn {
  background: linear-gradient(to bottom, #e53935, #8e0f14);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  font-size: 17px;
  border: none;
}

.call-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.blockquote {
  font-size: 18px;
  font-weight: 300;
}

.bg-color-custom {
  background: #2980b9 !important;
}

.custom-blue-color {
  color: #2980b9 !important;
}

nav.navbar.navbar-expand-lg img.img.logo_img {
  width: 180px;
}

.mob-link {
  color: #fff !important;
  text-decoration: none !important;
}
.mail-link {
  color: #000 !important;
  text-decoration: none !important;
}


@media (max-width: 768px) {
  .gap-custom .col-lg-3 {
    width: 100%;
    margin: auto;
  }

  .navbar-light.sticky-top.sticky-nav {
    width: 90%;
    margin: auto;
    border-radius: 50px;
    padding: 9px 12px !important;
  }
}
.logo-container {
  overflow: hidden;
  .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;
    .logos {
      width: 100%;
      display: inline-block;
      margin: 0px 0;
      .fab {
        width: calc(100% / 5);
        animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
      }
    }
  }
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
