/* Import Google Fonts - Lora */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");

/* Universal Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", serif; /* Changed font to Lora */
}

/* Main Section Styling */
.main {
  margin-top:-75px;
  height: 100vh;
  width: 100%;
}

/* Wrapper and Slide Styling */
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hide Overflow in Slide */
.slide {
  overflow: hidden;
}

/* Overlay for Slide */
.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

/* Image Styling */
.slide .image {
  height: 100%;
  width: 100% !important;
  object-fit: cover;
}

/* Image Data Positioning and Styling */
.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}

.image-data span.text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  font-size: 56px;
  font-weight: 700; /* Increased font weight for emphasis */
  color: #fff;
}

/* Button Styling */
a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff; /* Button text color */
  background: #d32f2f; /* Deep red background */
  text-decoration: none;
  margin-top: 25px;
  font-weight: 700; /* Bold button text */
  transition: all 0.3s ease;
}

a.button:hover {
  color: #fff;
  background-color: #b71c1c; /* Darker red on hover */
}

/* Swiper Navigation Button Styling */
.nav-btn {
  height: 50px !important;
  width: 50px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Position Navigation Buttons */
.swiper-button-next {
  right: 50px !important;
}

.swiper-button-prev {
  left: 50px !important;
}

/* Swiper Navigation Icon Styling */
.nav-btn::before,
.nav-btn::after {
  font-size: 25px !important;
  color: #fff;
}

/* Pagination Bullets Styling */
.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #d32f2f; /* Deep red for active bullet */
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }

  .swiper-pagination-bullet {
    visibility: visible;
  }
  .image-data h2{
            font-size:26px !important;
        }
    .main {
  height: 40vh !important;
}
.slide .image-data{
    top:60% !important;
}
}
