body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}


/* navbar */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  box-shadow: 0 2px 10px rgba(188, 147, 10, 0.1);
}



nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px;
}

.header-download h4 {
  font-size: 14px;
  color: #FF7722;
  margin: 0;
}




.hero-description {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
  font-size: 16px;
}

.download-line {
  font-weight: bold;
  color: #fff;
  margin-top: 15px;
}


.header-download img {
  width: 140px;
  margin-left: 15px;
  transition: 0.3s;
}

.header-download img:hover {
  transform: scale(1.05);
}







.logo {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: #FF7722;
  /* background-color: #FF7722; */
}

.logo img {
  height: 100px;
  margin-right: 10px;
}

.raised-text {
  font-size: 40px;
  color: #FF7722;
  text-shadow:
    1px 1px 0 #ccc,
    2px 2px 0 #bbb,
    3px 3px 0 #aaa;
}

.raised-text1 {
  font-size: 40px;
  color: white;
  text-shadow:
    1px 1px 0 #ccc,
    2px 2px 0 #bbb,
    3px 3px 0 #aaa;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 450;
}




/* hero */

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #FF7722;
  color: white;
}



/* services */

.services {
  padding: 60px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service {
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  /* increase height so background images display fully */
  min-height: 500px;
}

#ramleela-service {
  background-image: url('src/images/ramleela.jpg');
  background-size: cover;
  background-position: center;
  color: #FF7722;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#sunderkand-service {
  background-image: url('src/images/sunderkand.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#bhajan-service {
  background-image: url('src/images/bhajan.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#bhagwat-service {
  background-image: url('src/images/bhagwat katha.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#rudrabhishek-service {
  background-image: url('src/images/Rudrabhisek1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#other-service {
  background-image: url('src/images/Other.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* artists */

.artists {
  padding: 60px;
  text-align: center;
}

.artist-container {
  width: 100%;
  /* use full viewport width */
  overflow: hidden;
  margin: 0;
  margin-top: 30px;
}

/* .scroll-wrapper{
display: flex;
gap: 30px;

animation: scroll 20s linear infinite;
animation-delay: 120s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(-660px);
  }
  80% {
    transform: translateX(-660px);
  }
  100% {
    transform: translateX(-1320px);
  }
} */



.scroll-wrapper {
  display: flex;
  gap: 30px;
  animation: artistScroll 25s linear infinite;
}

/* hover par scroll stop */
.artist-container:hover .scroll-wrapper {
  animation-play-state: paused;
}

@keyframes artistScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}



.orders {
  padding: 60px;
  text-align: center;
}

.orders .scroll-wrapper {
  display: flex;
  gap: 30px;
  animation: bookingScroll 25s linear infinite;
}

.orders .artist-container:hover .scroll-wrapper {
  animation-play-state: paused;
}

@keyframes bookingScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

.artist-card {
  /* background:white; */
  padding: 20px;
  flex: 0 0 33.333%;
  /* three cards fill full width */
  box-sizing: border-box;
  border: none;
  border-radius: 0;
}

.artist-card img {
  width: 80%;
  border-radius: 10px;
}

/* map */

.map {
  padding: 60px;
  text-align: center;
}

/* section headings */
.orders h2,
.artists h2,
.services h2 {
  text-align: center;
  margin: 0 auto 20px;


  /* display: inline-block;  */
}


.orders h2,
.artists h2,
.services h2 {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: #FF7722;

  text-shadow:
    1px 1px 0 #ccc,
    2px 2px 0 #bbb,
    3px 3px 0 #aaa;
}

#map {
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* footer */

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}




.download-btn {
  background: #FF7722;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.download-btn:hover {
  background: black;
}



footer {
  background: #111;
  color: white;
  padding: 40px 60px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section h3 {
  color: #FF7722;
  margin-bottom: 15px;
}

.footer-section p {
  margin: 5px 0;
}

.social-icons a {
  color: white;
  font-size: 25px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #FF7722;
}

.copyright {
  text-align: center;
  margin-top: 20px;
}




.footer-section img {
  width: 180px;
  margin-top: 10px;
  transition: 0.3s;
}

.footer-section img:hover {
  transform: scale(1.05);
}


/* testimonials */

.testimonials {
  padding: 60px;
  text-align: center;
  background: #fff;
}

.testimonials h2 {
  font-size: 40px;
  color: #FF7722;
  margin-bottom: 40px;
  text-shadow:
    1px 1px 0 #ccc,
    2px 2px 0 #bbb,
    3px 3px 0 #aaa;
}

.testimonial-container {
  overflow: hidden;
  width: 100%;
}

.testimonial-scroll {
  display: flex;
  gap: 30px;
  animation: testimonialScroll 20s linear infinite;
}

.testimonial-scroll:hover {
  animation-play-state: paused;
}

@keyframes testimonialScroll {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }

}

.testimonial-card {
  min-width: 300px;
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 15px;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #FF7722;
  margin: 0;
}

.testimonial-card span {
  color: gray;
  font-size: 14px;
}









/* ================= MOBILE VIEW ================= */

@media (max-width: 768px) {

  header {
    flex-direction: column;
    padding: 15px;
    text-align: center;
  }

  .logo {
    flex-direction: column;
    font-size: 28px;
  }

  .logo img {
    height: 70px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .header-download img {
    width: 120px;
    margin-left: 0;
  }

  /* hero */

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
    padding: 0 10px;
  }

  /* services */

  .services {
    padding: 30px 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 250px;
    padding: 20px;
  }

  /* artists */

  .artists {
    padding: 30px 15px;
  }

  .artist-card {
    flex: 0 0 80%;
  }

  .artist-card img {
    width: 100%;
  }

  /* testimonials */

  .testimonials {
    padding: 30px 15px;
  }

  .testimonial-card {
    min-width: 250px;
  }

  /* orders */

  .orders {
    padding: 30px 15px;
  }

  /* footer */

  footer {
    padding: 30px 20px;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-section img {
    width: 140px;
  }

  .orders h2,
  .artists h2,
  .services h2,
  .testimonials h2 {
    font-size: 26px;
  }

}



.footer-services {
  list-style: none;
  padding: 0;
}

.footer-services li {
  margin: 8px 0;
}

.footer-services a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-services a:hover {
  color: #FF7722;
}








/* service details */

.service-details {
  padding: 60px;
  background: #fff;
  text-align: center;
}

.service-details h2 {
  font-size: 40px;
  color: #FF7722;
  margin-bottom: 40px;
  text-shadow:
    1px 1px 0 #ccc,
    2px 2px 0 #bbb,
    3px 3px 0 #aaa;
}

.service-slider {
  width: 80%;
  margin: auto;
  overflow: hidden;
  position: relative;
  height: 250px;
}


.service-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: serviceSlide 25s infinite;
}






.service-slide:nth-child(1) {
  animation-delay: 0s;
}

.service-slide:nth-child(2) {
  animation-delay: 5s;
}

.service-slide:nth-child(3) {
  animation-delay: 10s;
}

.service-slide:nth-child(4) {
  animation-delay: 15s;
}

.service-slide:nth-child(5) {
  animation-delay: 20s;
}

@keyframes serviceSlide {

  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  8% {
    opacity: 1;
    transform: translateX(0);
  }

  18% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}



.service-slide h3 {
  color: #FF7722;
  margin-bottom: 15px;
  font-size: 28px;
}

.service-slide p {
  font-size: 16px;
  line-height: 1.8;
}


.service-slider:hover .service-slide {
  animation-play-state: paused;
}










.service-slider{
width:80%;
margin:auto;
overflow:hidden;
position:relative;
min-height:350px;
}

@media (max-width:768px){

.service-slider{
width:100%;
height:auto;
min-height:500px;
overflow-y:auto;
}

.service-slide{
position:relative;
opacity:1;
animation:none;
margin-bottom:20px;
}

}