/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.main {
  height: 100vh;
  width: 100%;
}

.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.slide .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.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: 25px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: #333;
  background: #fff;
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}

a.button:hover {
  color: #fff;
  background-color: #c87e4f;
}

/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}

.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #c87e4f;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }

  .swiper-pagination-bullet {
    visibility: visible;
  }
}
/********** Slider and Notification CSS Starts **********/  

.notification {
  width: 100%;
  float: left;
  padding: 12px;
  background: #ebebeb;
}
.notification b {
  color: red;
  font-size: 18px;
  float: left;
  position: absolute;
  background: #e3e3e3;
  z-index: 9999;
}
.notification marquee {
  list-style: none;
  font-size: 16px;
}
.notification marquee img {
  height: 16px;
}

/********** Responsive Design **********/
/* For tablets (768px and below) */
@media screen and (max-width: 768px) {
  .banner {
      height: 400px; /* Reduce height for smaller screens */
  }
  .notification b {
      font-size: 16px; /* Adjust font size */
  }
  .notification marquee {
      font-size: 14px; /* Adjust marquee text size */
  }
}

/* For smartphones (480px and below) */
@media screen and (max-width: 480px) {
  .banner {
      height: 300px; /* Further reduce height */
  }
  .notification b {
      font-size: 14px; /* Adjust font size for small screens */
      position: static; /* Remove absolute positioning for better alignment */
  }
  .notification marquee {
      font-size: 12px; /* Adjust marquee text size */
  }
}

/********** Slider and Notification CSS Starts **********/
.notification {
    width: 100%;
    padding: 12px;
    background: #000;
    position: relative; /* Ensure the notification container positions child elements correctly */
    /* margin-top: 90px; */
  }
  
  .notification b {
    color: red;
    font-size: 18px;
    /* Remove position absolute to keep it inline */
    background: #000;
    z-index: 9999;
  }
  
  .notification marquee {
    list-style: none;
    font-size: 16px;
    color: white;
  }
  
  .notification marquee img {
    height: 16px;
  }
  /********** Slider and Notification CSS Ends **********/
/*==================== About Us CSS ====================*/
.about-us {
display: flex;
align-items: center;
height: 800px;
width: 100%;
background: #fff;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}

.pic {
height: auto;
width: 600px;
border-radius: 60px;
margin-right: 20px; /* Add margin to create a gap between image and text */
padding-right: 0;
}

.about {
width: 85%;
max-width: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: flex-start; /* Align items to the start */
}

.text {
width: calc(100% - 420px); /* Adjust width to take more space */
margin-left: 20px; /* Adjust the gap between text and image */
}

.text h2 {
color: #333;
font-size: 40px; /* Decrease font size */
font-weight: 600;
margin-bottom: 10px;
}
.text h3 {
  color: #333;
  font-size: 25px; /* Decrease font size */
  font-weight: 600;
  margin-bottom: 10px;
  }

.text p {
color: #333;
font-size: 16px; /* Decrease font size */
line-height: 25px;
letter-spacing: 0;
text-align: justify;
margin-top: 20px; /* Add margin to create space between paragraph and button */
}

.about-data {
margin-top: 30px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.about {
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items */
}

.pic {
  width: 100%; /* Make image full width */
  max-width: 400px; /* Set max width */
  margin-right: 0; /* Remove right margin */
  margin-bottom: 20px; /* Add bottom margin for spacing */
}

.text {
  width: 100%; /* Full width for text */
  margin-left: 0; /* Remove left margin */
  text-align: center; /* Center text */
}

.text h2 {
  font-size: 32px; /* Adjust font size for smaller screens */
}

.text p {
  font-size: 14px; /* Adjust font size for smaller screens */
  line-height: 22px; /* Adjust line height for readability */
}
/* Add spacing below the about section */
.about-us {
  padding-bottom: 60px;
  margin-bottom: 200px;
  margin-top: 265px;
  max-width: 768px; /* Increase bottom padding */
}
}