/* Navbar Section CSS */
:root {
  --primary-color: #FFC107;
  --secondary-color: #FF8C00;
  --dark-color: #212529;
  --light-color: #f8f9fa;
}

@media (min-width: 800px) and (max-width: 1024px) {
  .remove {
    display: none;
  }
}

.navbar {
  font-family: none;
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 15px 0;
  z-index: 999 !important;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9) !important;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeInLeft 0.5s ease forwards;
}


.logo-placeholder img {
  width: 45px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: bold;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: 700;
  color: white;
  margin-bottom: 0;
  line-height: 1.2;
}

.tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  position: relative;
  margin: 0 10px;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* .dropdown-menu {
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .dropdown-item {
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background: rgba(255, 193, 7, 0.2);
            color: var(--primary-color) !important;
            padding-left: 20px;
        } */

.btn-signin {
  border: 1px solid white;
  color: white !important;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.6s;
}

.btn-signin:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-signup {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-color) !important;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

.btn-signup:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.navbar-toggler {
  border: none;
  color: white;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.4s;
}

.navbar-toggler:focus {
  box-shadow: none;
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .navbar-nav {
    padding-top: 10px;
  }

  .nav-link {
    padding: 10px 0 !important;
  }

  .nav-link::after {
    display: none;
  }

  .btn-container {
    margin-top: 15px;
    display: flex;
    gap: 10px;
  }

  .btn-signin,
  .btn-signup {
    width: 100%;
  }
}


/* footer code */
/* ---------- Footer Theme ---------- */
:root {
  --footer-bg: #0f0f0f;
  --footer-txt: #f5f5f5;
  --accent: #ffc107;
  --accent2: #ff8c00;
}

.site-footer {
  background: linear-gradient(135deg, var(--footer-bg) 0%, #1a1a1a 100%);
  color: var(--footer-txt);
  padding: 70px 0 20px;
  position: relative;
  overflow: hidden;
}

/* animated diagonal glow */
.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 80%, var(--accent) 0%, transparent 40%);
  opacity: .07;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
}

/* Titles */
.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
}

.footer-title a {
  color: var(--accent);
  text-decoration: none;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent2);
  transition: width .3s ease;
}

.footer-title:hover::after {
  width: 70px;
}

/* Lists */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #bbb;
  text-decoration: none;
  transition: color .3s, transform .3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact i {
  width: 20px;
  margin-right: 8px;
  color: var(--accent);
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  color: white;
}

.footer-social a.instagram_custom {
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social a.facebook_custom {
  background: #3b5998;
}

.footer-social a.maps_custom {
  background: #34B379;
}

.footer-social a.share_custom {
  background: #6c757d;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 0 15px var(--accent);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: .85rem;
  color: #777;
}

.pulse-heart {
  color: #ff4757;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}


/* Bring footer above ANYTHING */
.site-footer {
  position: relative;
  z-index: 500 !important;
}

/* If a pseudo-element is still blocking, hide it */
.site-footer::before,
.site-footer::after {
  pointer-events: none !important;
}

/* Make every link inside footer clickable */
.site-footer * {
  pointer-events: auto !important;
}


/* floating icons code */

.floating-icons {
  position: fixed;
  right: 15px;
  /* ✅ left ऐवजी right */
  bottom: 20px;
  /* ✅ screen end */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icons a {
  background-color: #fff;
  border-radius: 20%;
  padding: 8px;
  width: 40px;
  color: #25D366;
}

.floating-icons i {
  font-size: 30px;
  /* transform: translateX(1px); */
}

.floating-icons .fa-phone{
  color: #0a66c2;
  font-size: 18px;
  transform: translateX(4px);
}
.floating-icons .fa-whatsapp{
  /* color: #D44638; */
  font-size: 25px;
  transform: translateX(1.5px);
}


/* custom Animation code */

@keyframes bounceInSkew {
  0% {
    opacity: 0;
    transform: skewX(-20deg) scale(0.8);
  }

  60% {
    opacity: 1;
    transform: skewX(10deg) scale(1.05);
  }

  80% {
    transform: skewX(-5deg) scale(0.97);
  }

  100% {
    transform: skewX(0deg) scale(1);
  }
}

.bounce-in-skew {
  animation: bounceInSkew 1s ease-out forwards;
}


@keyframes rotatePop {
  0% {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.rotate-pop {
  animation: rotatePop 0.8s ease-out forwards;
}

@keyframes flipInBottom {
  0% {
    opacity: 0;
    transform: rotateX(-90deg) translateY(50px);
    transform-origin: bottom;
  }

  100% {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
    transform-origin: bottom;
  }
}

.flip-in-bottom {
  animation: flipInBottom 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes elasticExpand {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
    opacity: 1;
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.elastic-expand {
  animation: elasticExpand 1s ease-out forwards;
}

@keyframes fadeSlideRotate {
  0% {
    opacity: 0;
    transform: translateY(50px) rotate(-5deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.fade-slide-rotate {
  animation: fadeSlideRotate 0.9s ease-in-out forwards;
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transform: scale(1.03);
  }
}

.glow-pulse {
  animation: glowPulse 2s infinite;
}

[data-animate] {
  opacity: 0;
}

.bounce-in-skew,
.flip-in-bottom,
.elastic-expand,
.fade-slide-rotate {
  opacity: 1;
}


.row,
.container,
.service-card {
  overflow: hidden;
}

/* -------------------------------------------------- */
/* 1. Slide-up + fade (subtle, super common 2024)   */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.slide-up-fade {
  animation: slideUpFade .8s cubic-bezier(.25, .8, .25, 1) forwards;
}

/* -------------------------------------------------- */
/* 2. Slide-right staggered                           */
@keyframes slideRightFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-right-fade {
  animation: slideRightFade .7s ease-out forwards;
}

/* -------------------------------------------------- */
/* 3. Blur-in (glass-morphism vibe)                   */
@keyframes blurInFade {
  0% {
    opacity: 0;
    filter: blur(12px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.blur-in-fade {
  animation: blurInFade .9s ease-out forwards;
}

/* -------------------------------------------------- */
/* 4. Zoom-in twist                                   */
@keyframes zoomTwistFade {
  0% {
    opacity: 0;
    transform: scale(.6) rotate(-8deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.zoom-twist-fade {
  animation: zoomTwistFade .7s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

/* -------------------------------------------------- */
/* 5. Clip-path reveal (slice from center)            */
@keyframes clipRevealFade {
  0% {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.clip-reveal-fade {
  animation: clipRevealFade .9s ease-out forwards;
}

/* -------------------------------------------------- */


/* -------------------------------------------------- */
/* keep your global observer styles                   */
/* [data-animate] { opacity: 0; }
html, body { overflow-x: hidden; } */



/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* animation: pulse 1.5s infinite ease-in-out; */
}


.preloader-image {
  width: 300px;
  height: 150px;
}


/* Responsive adjustments for preloader */
@media (max-width: 767.98px) {
  .preloader-image {
    width: 150px;
    height: 90px;
  }

  .preloader-content h6 {
    font-size: 0.7rem;
  }
}

/* preloader css svg code */
.preloader-svg {
  position: relative;
  width: 100px;
  height: 100px;
}



.part {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.show {
  opacity: 1;
}

.yellow {
  transform: translateX(40px);
}

.blue {
  transform: translate(10px, 39px);

}

.pink {
  transform: translateX(-20px);
}

@media (max-width: 767.98px) {
  .preloader-svg {
    width: 75px;
    height: 75px;
  }

  .yellow {
    transform: translateX(25px);
  }

  .blue {
    transform: translate(2px, 30px);

  }

  .pink {
    transform: translateX(-22px);
  }
}