<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

h2 {
  color: #005126;
  text-align: center;
  font-weight: 700;
}

/* Slider styling */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1; /* Lower z-index ensures it stays behind the navbar */
  padding-top: 85px; /* Push slider content below the fixed navbar */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
  justify-content: center;
  color: #ffffff;
  text-align: left; /* Align text to the left */
  padding: 20px 100px; /* Add left padding for spacing */
}

.overlay h1 {
  font-size: 4em;
  margin-bottom: 0%;
}

.overlay p {
  font-size: 2em;
  margin-top: 0%;
  margin-bottom: 1em;
  max-width: 600px;
}

@media screen and (min-width: 1390px) {
  .overlay {
    align-items: center;
    padding: 20px 0px;
  }
}

/* Media Queries */

@media (max-width: 1180px) {
  .slider {
    padding-top: 80px;
  }
}

@media (max-width: 992px) and (min-width: 768px) {
  .slider {
    padding-top: 65px;
  }
}

@media (max-width: 768px) {
  .slider,
  .slide {
    height: 70vh; /* Reduce height for medium-sized screens */
  }
  .slider {
    padding-top: 70px;
  }

  .overlay {
    padding: 20px 10px;
  }

  .overlay h1 {
    font-size: 2em;
    margin-bottom: 0;
  }

  .overlay p {
    font-size: 0.9em;
  }

  .overlay button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}
@media (max-width: 480px) {
  .slider,
  .slide {
    height: 60vh; /* Further reduce height for smaller screens */
  }
}

/* Section 1: Join Section */
.join-section {
  background-color: #f3eeee;
  opacity: 100%;
  padding: 2em;
  text-align: center;
}

.join-section h2 {
  color: #038741;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 17px;
}

.join-section p {
  color: #1e1e1e;
  margin: 1em auto 2em;
  max-width: 800px;
  text-align: justify;
}

.join-btn {
  background-color: #39b14a;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
}

.join-btn:hover {
  background-color: #005126;
}

@media (max-width: 480px) {
  .join-section h2 {
    font-size: 1.6em;
    margin-bottom: 17px;
  }
}

/* Section 2: Courses Section */
.courses-section {
  padding: 2em;
  text-align: center;
  background-color: #fff;
}

.courses-section h2,
.courses-section p {
  margin: 1em 0;
}

.courses {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3em;
}

.course-card {
  background-color: white;
  width: 250px;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.course-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s; /* Animation */
}

.course-card img:hover {
  transform: scale(
    1.1
  ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.course-card a {
  padding: 1em;
  font-weight: 600;
  height: 30px;
  font-size: 14.3px;
  text-decoration: none;
  color: #005126;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2em;
}

.arrow {
  color: #005126;
  font-weight: bold;
  font-size: 30px;
  margin-top: 3px;
}

.load-more-btn {
  color: #005126;
  background: none;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  margin-top: 2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center; /* Centering the Load More button */
}

.course-card a:hover {
  color: #39b14a;
}

.arrow:hover {
  color: #39b14a;
}

.load-more-btn:hover {
  color: #39b14a;
}

/* Section 3: Why Classes Section */
.why-classes-section {
  padding: 2em;
  text-align: center;
  background-color: #fff; /* Ensuring the background color remains white */
  margin-bottom: 70px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.benefit-card {
  border: 1px solid #39b14a;
  padding: 1em;
  width: 200px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  text-align: left;
  flex: 1 1 calc(25% - 1em); /* Setting four cards per row */
  max-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.benefit-text p {
  font-weight: 600;
  color: #39b14a;
  margin: 2px;
}

.benefit-text span {
  color: #1e1e1e;
  font-size: 0.9em;
  margin: 2px;
}

@media (min-width: 1390px) {
  .benefits {
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }

  .benefit-card {
    flex: 1 1 calc(25% - 1em);
    max-width: 220px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .courses {
    flex-direction: column;
    align-items: center;
  }

  .benefits {
    flex-direction: column;
    align-items: center;
  }

  .course-card {
    width: 100%;
    max-width: 300px;
  }

  .benefit-card {
    width: 85%;
    max-width: 300px;
  }
}

/* Section 4: Quran Quote */
.quran-quote {
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 2rem;
  background-color: #005126;
  color: white;
}

.quote-text {
  flex: 1;
  padding: 2rem;
}

.quote-text h2 {
  font-size: 2rem;
  margin-top: 1rem;
}

.name {
  color: white;
  margin-bottom: 0;
  font-size: xx-large;
}

.quote-text .ayah {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.quote-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media screen and (min-width: 1390px) {
  .quran-quote {
    display: flex;
    align-items: center;
    text-align: justify;
    padding: 2rem 9rem;
    background-color: #005126;
    color: white;
  }
  .quote-text {
    padding-left: 0%;
  }
}
@media screen and (min-width: 1500px) {
  .quran-quote {
    display: flex;
    align-items: center;
    text-align: justify;
    padding: 2rem 15rem;
    background-color: #005126;
    color: white;
  }
  .quote-text {
    padding-left: 0%;
  }
}

/* Section 5: Packages */
.packages {
  display: flex;
  gap: 1rem;
  padding: 3.5rem;
  justify-content: center;
}

.package-card {
  position: relative;
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  overflow: hidden;
}

.package-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  opacity: 0.8;
}

.card-content {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: left;
  margin-left: 5px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.card-content .btn {
  background-color: #39b14a;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  font-weight: bolder;
}

.card-content .btn:hover {
  background-color: #005126;
}

/* Media Queries */
@media (max-width: 768px) {
  .quran-quote {
    flex-direction: column;
    text-align: justify;
  }

  .quote-image {
    display: none;
  }

  .quote-text {
    padding: 1rem;
  }

  .packages {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    justify-content: center;
  }

  .package-card {
    max-width: 100%;
  }

  .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    margin-top: 0%;
  }

  .card-content h {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  .card-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .card-content .btn {
    padding: 0.3em 1.5em;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
  }
}
</pre></body></html>