header {
    position: relative;
    transition: background-image 0.5s ease-in-out;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/dark-bg.jpg");
    background-size: cover;            
    background-position: center center;  
    background-repeat: no-repeat;        
    color: white;                        
    padding: 1rem 2rem;                                  
    top: 0;
    z-index: 1000;                      
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}

.hero{
     background-image: url("../img/img-bg.png");
     background-size: cover;            
     background-position: center center;  
     background-repeat: no-repeat;    
     transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: auto;
      border: 5px solid #d69b09;
      border-radius: 20px;
      margin-top: 50px;
      
}

.hero:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(214, 155, 9, 0.6);
}
  
  /* Swiper images */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 10px 80px 0 auto;
}

 

.hero h1{
    font-family: 'Playfair Display', serif;
     color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.hero p{
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: #ffffff; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
  

 /* Swiper container */
.hero-swiper {
  width: 100%;
  height: auto; 
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
  /* Swiper slides */
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
    
  /* WhatsApp button */
  .btn-success {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.3);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
  }
   
  .btn-success:hover {
    box-shadow: 0 6px 18px rgba(0, 128, 0, 0.6);
    background-color: #cfa100;
  }
  
.top-nav::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    animation: slideGradient 8s ease infinite;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 0.5 = 50% dark opacity */
    z-index: -1;
}



/* Optional: Logo and nav links */
.top-nav #logo img {
    width: 40px;
    height: 40px;
}

#social-icon a{
    color: #fff;
    padding-left: 10px;

}


.navbar-nav .nav-link {
    color: white !important;
    text-shadow: 0 0 8px #d69b09;
    transition: background-color 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffff !important; 
    border-radius: 20px;
    background-color: #d69b09; 
  }


/* Dark background for the container */
.audio-player-container {
    background-color: #111;
    border-radius: 16px;
    padding: 20px;
    max-width: 100%;
  }

  .audio-player-container h5,
.audio-player-container h3 {
  margin: 0;
  padding: 0;
}

  
  /* Override Plyr's styles for dark skin */
  .plyr--audio {
    background: #111 !important;
    border-radius: 12px;
  }
  
  /* Customize controls */
  .plyr--audio .plyr__controls {
    background: #222 !important;
    color: #fff;
    border-radius: 0 0 12px 12px;
  }
  
  /* Time and volume text */
  .plyr--audio .plyr__time,
  .plyr--audio .plyr__control,
  .plyr--audio .plyr__menu__value {
    color: #fff !important;
  }
  
  /* Progress bar and seek handle */
  .plyr--audio .plyr__progress input[type="range"] {
    background: #555 !important;
  }
  
  
  .our-services {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url("../img/dark-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* Global Section Title Styling */
.section-title {
  position: relative;
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  /* margin: 0 0px 30px 450px; */
  color: #FFD700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  transition: width 0.6s ease;
  height: 4px;
  background-color: #d69b09;
  border-radius: 2px;
}

.section-title:hover::after {
  width: 50%;
}
  
  


.our-services .service-box {
    background-color: rgba(17, 17, 17, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform, box-shadow;
  cursor: pointer;
}

.our-services .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(214, 155, 9, 0.3);
    border-color: #FFD700 !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}





/* Preloader full-screen overlay */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* Background matches your theme */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Equalizer bar container */
.equalizer {
  display: flex;
  gap: 10px;
  align-items: end;
}

/* Individual vertical bars */
.bar {
  width: 6px;
  height: 40px;
  background-color: #FFD700;
  animation: equalizer-animation 1s infinite ease-in-out;
  border-radius: 3px;
}

/* Different delays for wave effect */
.bar1 { animation-delay: 0s; }
.bar2 { animation-delay: 0.1s; }
.bar3 { animation-delay: 0.2s; }
.bar4 { animation-delay: 0.3s; }
.bar5 { animation-delay: 0.4s; }

@keyframes equalizer-animation {
  0%, 100% {
    transform: scaleY(0.4);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.4);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .hero {
    margin-top: 20px;
    border-radius: 10px;
  }
  .hero-swiper {
    margin-top: 20px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.2rem;
    

  }
}

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');*/

