@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #00040b;
  color: #fff;
  overflow-x: hidden;
  margin-top: 70px;
}


.home {
  background: linear-gradient(to top, #00040b, #00040bbb),
              url(../../Assets/iskul.jpg) no-repeat top right / cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem;
}

.home .content {
  max-width: 600px;
}

.home .content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  background-image: url(../Assets/ox.jpg);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px #fff;
}

.home .content h4 {
  font-size: 1.25rem;
  font-weight: 300;
  color: #a0b3e5;
  margin-top: 1rem;
}

.btn-explore {
  background-color: #4c4d9f;
  border: 2px solid #9091e4;
  color: #fff;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background-color: #FFC107;
  border-color: #FFD54F;
  transform: translateX(5px);
}

.about {
  background: #fff;
  color: #111;
  padding: 3rem 1.5rem;
}

.about .content {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about-desc ul {
  list-style-type: disc;
  margin-left: 2rem;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .home {
    padding: 2rem;
    background-position: center;
  }

  .home .content h1 {
    font-size: 2.5rem;
  }

  .home .content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .home {
    padding: 1.5rem;
    align-items: flex-start;
    text-align: left;
  }

  .home .content h1 {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 1px;
  }

  .home .content h4 {
    font-size: 0.9rem;
  }

  .btn-explore {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }

  .about {
    padding: 2rem 1rem;
  }

  .about-title {
    font-size: 1.5rem;
  }
}
