*{
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #333;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./imgs/hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.hero .overlay {
  
  padding: 1rem;
  border-radius: 10px;
  color: #fff;
}

.hero h1 {
  font-size: 4rem;
  font-family: 'Great Vibes', cursive, sans-serif ;margin-bottom: 0.5rem;
  color: yellow;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #ffff;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background-color: #df240c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
 background-color: #c71a0a;
 transition: 0.3s ease;
}

.about{
    padding: 3rem 1rem;
    /* max-width: 1000px; */
    margin: 0 0;
    border: #c71a0a;
    background-color: black;
    color: white;  
}

.about h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(to right, #e11d48, rgb(248, 252, 16));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
  padding: 0 2rem;
  color: #f8f8f8;
  margin: 30px 100px;
}

.service_h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: orange;;
}


.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  
}

.service1, .service2 {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 1.5rem;
  width: 500px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: #000000;
  font-size: 1.5rem;
}

.service1:hover{
  transform: scale(1.05);
  transition: transform 0.3s ease;
   box-shadow: 3px 3px 10px rgb(201, 10, 128);
}

.service2:hover{
  transform: scale(1.05);
  transition: transform 0.3s ease;
  box-shadow: 3px 3px 10px rgb(201, 10, 128);
}

.service1 ul, .service2 ul {
  list-style-type: none;
  padding: 10px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.service1 ul li, .service2 ul li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

span{
  color: #e11d48;
  font-weight: bolder;
}

ul span {
  color: #e11d48;
  margin-bottom: 1rem;
  font-weight: 700;
  display: inline-block;
}

.gallery{
  background: linear-gradient(to right, #e11d48, rgb(110, 112, 4));
  padding: 2rem;
  margin: 0 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

 /* .video {
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
  width: 75%;
  height: 50%;
  
} */

.gallery h2{
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}
.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

img:hover{
  transform: scale(1.05);
  transition: transform 0.3s ease;
   box-shadow: 3px 3px 10px rgb(201, 10, 128);
}

.gallery img {
  width: 100%;
  border-radius: 12px;
}

.testimonial {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reviews, .cta {
  padding: 1.5rem 0.5rem;
  /* max-width: 1000px; */
  margin: 0 auto;
  text-align: center;
 }

 .reviews {
  background-color: black;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reviews h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: orange;
}


 .reviews .testimonial {
  font-size: 1.4rem;
  margin: 0 100px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f8f8f8;  
}

hr {
  border: 0;
  height: 1px;
  background: orange;
  margin: 1.5rem 0;
}

.cta {
  background-color: #33030e;
  color: white;
  padding: 3rem 1rem;
  /* border-radius: 10px; */
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #fff;
  color: #33030e;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #ffe4ec;
  opacity: 0.9;
  font-weight: 600;
}

.image-arrow-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.image-arrow {
  width: 200px;
  height: auto;
  cursor: pointer;
  animation: imageBounce 2s infinite ease-in-out;
  filter: drop-shadow(0 0 8px white);
  transition: transform 0.3s ease;
}

.image-arrow:active {
  transform: scale(1.2);
}

footer {
  color: #33030e;
  text-align: center;
  padding: 1rem 0;
}

footer a {
  color: #33030e;
  text-decoration: none;
  font-weight: bolder;
}


@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1rem;
  }

  .about h1 {
    font-size: 1.8rem;
  }
  .about p {
    font-size: 1rem;
    padding: 0 1rem;
    text-align: center;
    margin: 30px 0px;
  }

  .reviews h2, .service_h2{
    font-size: 1.6rem;
    color: orange;
  }

  .reviews h2::after{
    content: ":";
  }
  .reviews .testimonial {
    font-size: 1rem;
    text-align: justify;
    margin: 0 1rem;
  }
  hr{
    border: 0;
    height: 1px;
    background: orange;
    margin: 1.5rem 0;
  }
  .service1, .service2 {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
  }

  /* .services{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service2{
    order:   2;
  }

  .service1{
    order: 1;
  } */

  ul span {
  color: #e11d48;
  margin-bottom: 1rem;
  font-weight: 700;
  display: inline-block;
  font-size: 1.5rem;
  }

  .gallery h2{
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

  .gallery .images {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .cta-button {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .image-arrow {
    width: 150px;
  }
}


@keyframes imageBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
