@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Collegiate+One:ital@0;1&family=DM+Serif+Text:ital@0;1&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", serif;
font-optical-sizing: auto;
font-weight:500;
}
:root {
  --primary-color: #C69C3F;
--text-light: #ffffff;
  --text-dark: #333333;
}
body {
  color: var(--text-light);
  overflow-x: hidden;
}

.slider1-container {
  width: 100%;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

.slider-heading {
  padding: 20px;
  font-size: 24px;
  color: #333;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  overflow: hidden;
  padding: 0 20px;
}

.slide {
  width: 25%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border-radius: 30px;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;

}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  z-index: 10;
  transition: background-color 0.3s;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 768px) {
  .slide {
    min-width: 240px;
    height: 340px;
  }

  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.section.active {
  display: block;
  opacity: 1;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.slider1-container {
  position: relative;
  padding: 0 3rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card-image-container {
  position: relative;
  aspect-ratio: 16/9;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
}

.card-footer {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #666;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

.nav-button:hover {
  background: white;
}

.nav-button.prev {
  left: 0;
}

.nav-button.next {
  right: 0;
}

.zuhd-footer {
  background-image: url(./images/footerbg.jpg);
  background-position: center;
  background-size: cover;
    color: white;
    padding: 4rem 2rem;
}

.zuhd-footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Open Sans", serif;

}
.zuhd-footer__logo{
    width: 30%;
    height: 30%;
}

.zuhd-footer__section {
    margin-bottom: 2rem;
    font-family: "Open Sans", serif;

}

.zuhd-footer__heading {
    color: #c69438;
    margin-bottom: 1rem;
    font-family: "Open Sans", serif;

}
.zuhd-footer__text{
  padding: 10px 0px;
  line-height:20px;
  font-family: "Open Sans", serif;

}

.zuhd-footer__list {
    list-style: none;
}

.zuhd-footer__list-item {
    margin-bottom: 0.5rem;
    font-family: "Open Sans", serif;

}

.zuhd-footer__link {
    color: white;
    text-decoration: none;
}

.zuhd-social__wrapper {
    display: flex;
    gap: 1rem;
    
    margin-top: 1rem;
}

.zuhd-social__link {
    color:#b38a2f;
    font-size: 1.5rem;
}

.zuhd-signup__form {
    display: flex;
    margin-top: 1rem;
}

.zuhd-signup__input {
    padding: 10px;
    border-radius: 30px;
    border: 1px solid;
    flex: 1;
}

.zuhd-signup__button {
    padding: 10px 20px;
    background-color: #c69438;
    border: none;
    color: white;
    border-radius: 30px;
    cursor: pointer;
}

.zuhd-footer__bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
}