/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* Navbar */
.navbar {
  background-color: #8b2323;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
}

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

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: url('assets/banner.png') no-repeat center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.about{
    height: 400px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    height: 400px;
    text-align: center;
    padding-top: 70px;
    width: 100%;
}

.hero h2 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
}

.btn {
    background: #5a5a3c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

/* About Section */
.about {
    text-align: center;
    padding: 40px;
    background: white;
}

/* Showcase Section */
.showcase {
    text-align: center;
    padding: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: auto;
}

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

/* Reviews */
.reviews {
    text-align: center;
    padding: 50px;
    background: #eaeaea;
}

.coming-soon {
    background: #5a5a3c;
    color: white;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
}

.img-cls-1{
    max-height: 400px;
}

.services{
    background-color: white;
}



/* slider */

.banner-slider {
    width: 100%;
    height: 500px;
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .swiper {
    width: 100%;
    height: 500px;
  }

  .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
  }

  .banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    max-width: 60%;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

  .banner-content h2 {
    color: tomato;
    font-size: 36px;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .banner-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff6b6b;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }

  .banner-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ff6b6b;
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: rgba(255, 255, 255, 0.017)!important;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  }