.bg-light-dim {
  background: #ff0e000d;
}

.m0 {
  margin: 0 !important;
}

.enquire-btn {
  padding: 8px 10px;
  border-radius: 5px;


  transition: transform 0.2s ease;

  &:hover {
    transform: scale(1.05);
  }
}


.bnr-contact-btn {
  padding: 10px 20px;
  background-color: var(--primary-500);
  border: none;
  margin-top: 10px;
  border-radius: 10px;
}

/* style for hero banner  */
.slide {
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.h-nav-left {
  left: 2%;
  padding: 15px;

}

.h-nav-right {
  right: 2%;
  padding: 15px;
}


.img-drkr {
  backdrop-filter: blur(1px);
  background: radial-gradient(#0000003d);

}


/* whats app float  */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
  line-height: 1;
}


/* img adsjust  */
.img-adjust {
  max-height: 340px;
}

/* style for mobile nav open slider  */
#responsive-menu .scroll-area {
  max-height: calc(100vh - 56px);
}

#responsive-menu .scroll-area::-webkit-scrollbar {
  width: 6px;
}

#responsive-menu .scroll-area::-webkit-scrollbar-track {
  background: transparent;
}

#responsive-menu .scroll-area::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.06));
  border-radius: 999px;
}

/* Firefox */
#responsive-menu .scroll-area {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.16) transparent;
}


@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.active .animate-title {
  animation: revealUp 1.2s ease forwards 0.3s;
}

.active .animate-para {
  animation: revealUp 1.2s ease forwards 0.6s;
}

.active .animate-btn {
  animation: revealUp 1.2s ease forwards 0.9s;
}


.animate-title,
.animate-para,
.animate-btn {
  opacity: 0;
}


.nav-blur {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: cubic-bezier(0.215, 0.610, 0.355, 1) 0.3s;

  &:hover {

    background-color: var(--primary-400);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    color: #ffffff;
    border: 1px solid var(--primary-500);
  }
}



/* logo width manage  */
.w-manage {
  width: 128px;
}

/* button animation  */
.bnr-contact-btn {
  border: 1px solid #F81306;
  color: #F81306;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bnr-contact-btn:hover {
  background-color: #F81306;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(248, 19, 6, 0.35);
}

.bnr-contact-btn:active {
  transform: scale(0.96);
}

/* banner white button  */
.bnr-white-btn {
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  initialborder-radius: 10px;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  transition:
    background-color 0.3s ease,
    initialolor 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bnr-white-btn:hover {
  background-color: #F81306;
  border-color: #F81306;
  color: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(248, 19, 6, 0.35);
}

.bnr-white-btn:active {
  transform: scale(0.96);
}

.chip {
  background-color: var(--primary-500);
  color: white;
}

footer ul li {
  transition: color 0.3s ease;
}

footer ul li:hover,
footer ul li:hover a {
  color: var(--primary-500);
}

/* service pdf styles  */
.pdf-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pdf-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pdf-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.pdf-toolbar button,
.pdf-toolbar a {
  background: #F81306;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.pdf-toolbar button:hover,
.pdf-toolbar a:hover {
  opacity: 0.9;
}

.pdf-viewer {
  height: 80vh;
  max-height: 850px;
  background: #111;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.pdf-viewer canvas {
  background: #fff;
  max-width: 100%;
}

/* gallery style  */
.creative-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .creative-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .creative-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.creative-gallery img {
  height: max-content;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1),
    box-shadow .6s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.creative-gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

/* ===== LIGHTBOX ===== */
.creative-lightbox {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #111, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  z-index: 9999;
}

.creative-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.creative-lightbox img {
  max-width: 88%;
  max-height: 82vh;
  border-radius: 16px;
  transform: scale(.94) translateY(20px);
  opacity: 0;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1),
    opacity .5s;
}

.creative-lightbox.show img {
  transform: scale(1) translateY(0);
  opacity: 1;
}


.glassy-btn {
  position: absolute;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .35s ease,
    background .35s,
    box-shadow .35s;
}

.glassy-btn:hover {
  background: rgba(255, 255, 255, .25);
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(255, 255, 255, .25);
}

.btn-prev {
  left: 30px;
}

.btn-next {
  right: 30px;
}

.btn-close {
  top: 24px;
  right: 30px;
  font-size: 34px;
  width: 52px;
  height: 52px;
}

@media (max-width: 640px) {
  .btn-prev {
    left: 15px;
  }

  .btn-next {
    right: 15px;
  }
}

/* Tablets only */
@media (min-width: 768px) and (max-width: 1024px) {
  .enquire-btn {
    padding: 5px 10px;
  }
}