@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  /* font-family: 'Raleway', sans-serif; */
}

.slideshow {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text content */
.content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  max-width: 500px;
  color: white;
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 5px 15px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 26px;
  transition: 0.3s;
  color: black;
  background-color: white;
}

.btn:hover {
  background-color: black;
  color: white;
}

.primary {
  background: #ff6b00;
  color: white;
}

.secondary {
  border: 1px solid white;
  color: white;
}

/* Navigation */
.prev,
.next {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  padding: 10px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.logo-div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

/* =====================
   Content Section
===================== */

.content-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.sub-headings {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sub-headings h4 {
  font-size: 1rem;
  color: #666;
}

/* Image Row */
.image-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.image-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.section-heading h3 {
  text-align: left;
  font-size: 18px;
}

/* =====================
   Contact Section
===================== */

.contact-section {
  padding: 60px 20px;
  background: #cbcbcb;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Left Side */
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.tagline {
  color: #555;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Right Side */
.contact-right {
  position: relative;
}

/* Facebook Icon */

.social img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social img:hover {
  filter: grayscale(0%);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #6f6f6f;
  border-radius: 26px;
  font-size: 0.95rem;
}

.contact-form button {
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 32px;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.85;
}

/* ======================
   Responsive (min-width)
====================== */

/* Tablet */
@media (min-width: 768px) {
  .slideshow {
    height: 80vh;
  }

  .content h1 {
    font-size: 2.8rem;
  }

  .content p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-heading h3 {
    font-size: 24px;
  }

  .sub-headings h4 {
    font-size: 1.1rem;
  }

  .image-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-row img {
    height: 260px;
  }
  .contact-container {
    grid-template-columns: 1fr 1fr;
    /* align-items: center; */
  }

  .contact-info h2 {
    font-size: 2.4rem;
  }

  .contact-form {
    margin-top: 0;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .slideshow {
    height: 95vh;
  }

  .content {
    left: 10%;
    max-width: 800px;
  }

  .content h1 {
    font-size: 7rem;
  }

  .content p {
    font-size: 1.2rem;
  }
  .content-section {
    padding: 80px 20px;
  }

  .section-header h2 {
    font-size: 2.6rem;
  }

  .section-heading h3 {
    font-size: 36px;
  }

  .image-row img {
    height: 300px;
  }
  .contact-section {
    padding: 80px 20px;
  }

  .contact-info h2 {
    font-size: 3.8rem;
  }
}
