@font-face {
  font-family: seasons;
  src: url("Fonts/The\ Seasons.ttf") format("truetype");
}
@font-face {
  font-family: seasons-light;
  src: url("Fonts/Fontspring-DEMO-theseasons-lt.otf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* General Reset */
body,
ul,
li,
a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

/* Header Styles */
/* General Reset */
body,
h1,
h2,
p,
a,
div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5dc; /* Neutral Beige */
  color: #2f4f4f; /* Charcoal Gray */
  line-height: 1.6;
  background-image: url("Assets/leafleft.png"), url("Assets/Leafright.png"),
    url("Assets/wavy.png");
  background-position: -10% 8%, 110% 2%, -520px 770px;
  background-size: 25%, 25%, 130%;
  background-repeat: no-repeat;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5dc; /* Neutral Beige */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; /* Smooth hide/show effect */
  z-index: 1000;
  filter: opacity(0.75);
}
.header a {
  color: #2f4f4f;
}

.header.hidden {
  transform: translateY(-100%); /* Slides header upwards */
}
.nav {
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}
.nav ul {
  display: flex;
}
.nav ul li {
  font-family: "Arima", serif;
  margin: 0 15px; /* Add spacing between items */
}
.nav a {
  margin-right: 20px;
  color: #2f4f4f;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #a7c7e7; /* Soft Pastel Blue */
}

.logo {
  font-size: 28px;
  font-family: "seasons-light";
  letter-spacing: 1.3px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.logo a {
  color: #2f4f4f;
}
.logo a:visited {
  color: inherit; /* Ensures the color remains the same for visited links */
}

.hero {
  text-align: center;
  padding: 50px 20px;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-title {
  font-size: 120px;
  color: #2f4f4f; /* Charcoal Gray */
  font-family: "seasons";
  font-weight: 100;
  z-index: 2;
  text-align: center;
  letter-spacing: 1.7px;
  line-height: 110px;
}

.tagline {
  font-size: 40px;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  gap: 130px;
  flex-wrap: wrap;
  padding: 100px 20px;
}

.intro-text {
  max-width: 500px;
}

.intro-text h2 {
  font-size: 60px;
  margin-bottom: 20px;
  font-family: "seasons-light";
  font-weight: 700px;
}

.intro-text h2 span {
  color: #2f4f4f; /* Charcoal Gray */
}

.intro-text p {
  font-size: 20px;
  color: #2f4f4f;
  letter-spacing: 1.3px;
}

.background-circle {
  position: absolute;
  top: 40%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjusts to perfect center */
  width: 400px; /* Adjust size as needed */
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 223, 76, 1) 0%,
    rgba(255, 233, 153, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(40px);
  animation: pulse 3s infinite;
  z-index: 1; /* Places it behind the content */
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }
}
.About {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  gap: 130px;
  flex-wrap: wrap;
}
.about-info {
  max-width: 500px;
  display: inline-block;
}
.about-image {
  height: 700px;
  width: auto;
  border-radius: 100px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.about-video {
  height: 800px;
  width: auto;
  border-radius: 100px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.intro-text button {
  align-self: flex-start; /* Align the button to the start of the flex container */
  margin-top: 30px;
  background-color: #2f4f4f;
  font-family: "Arima", serif;
  color: #f5f5dc;
  height: 50px;
  width: 200px;
  border: none;
  border-radius: 25px;
  align-self: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.intro-text button a {
  color: #f5f5dc;
  text-decoration: none;
}
.intro-text button a:visited {
  color: inherit;
}
.intro-text button:hover {
  height: 53px;
  width: 210px;
  font-size: 20px;
  border-radius: 27px;
}
.testimonials {
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f9e79f;
  border-radius: 70px 70px 0px 0px;
  padding: 30px 40px;
}

.certifi-head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "seasons";
  font-size: 25px;
}

.stars-left-stars img {
  height: 60px;
  margin-right: 15px;
}

.stars-right-stars img {
  height: 60px;
  transform: rotate(90deg);
  margin-left: 20px;
}

.card-block {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.card-block img {
  height: 30px;
}

.card {
  background-color: #f5f5dc;
  padding: 20px;
  border-radius: 50px;
  font-family: "Arima", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1.3px;
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.card-text-box {
  margin-top: 20px;
  color: black;
}

.name {
  background-color: #2f4f4f;
  height: 40px;
  width: 170px;
  color: #f5f5dc;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  line-height: 40px;
  margin-top: 30px;
  font-size: 15px;
  font-family: "seasons";
}
.workshop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  flex-wrap: wrap;
  padding: 100px 20px;
}
.workshop-image {
  height: 600px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.workshop-title {
  max-width: 500px;
}

.workshop-title h2 {
  font-size: 60px;
  margin-bottom: 20px;
  font-family: "seasons-light";
  font-weight: 700px;
}
.ws-title h2 {
  font-size: 35px;
  background-color: #2f4f4f;
  color: #f5f5dc;
  border-radius: 30px;
  text-align: center;
  margin: 50px auto 0px auto;
  width: 400px;
  font-family: "Arima", serif;
}

.intro-text p {
  font-size: 20px;
  color: #2f4f4f;
  letter-spacing: 1.3px;
}

/* Footer Styles */
.footer {
  background-color: #2f4f4f;
  color: #f5f5dc; /* Neutral beige */
  padding: 40px 20px;
  border-radius: 50px 50px 0px 0px;
}

.footer-content {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures wrapping for smaller screens */
  gap: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.col1 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  margin-left: 50px;
  font-family: "seasons-light";
}
.col2 {
  grid-row: span 2 / span 2;
}

.col1 ul {
  list-style: none;
  padding: 0;
}

.col1 ul li {
  margin-bottom: 10px;
  font-size: 1.2rem;
  margin-left: 70px;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}
.footer a {
  color: #f5f5dc;
}
.col1 ul li a:visited {
  color: inherit;
}
.col3 {
  justify-content: center;

  grid-row: span 2 / span 2;
}
.col3 h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: "seasons";
}

.col1 {
  grid-row: span 2 / span 2;
}
.social-icons {
  display: flex;
  gap: 20px;
}

.icon {
  width: 50px; /* Adjust the width */
  height: 50px; /* Adjust the height */
  background-size: contain; /* Ensures the logo fits within the box */
  background-repeat: no-repeat; /* Prevents tiling of the logo */
  background-position: center; /* Centers the logo */
}

.copyright {
  text-align: center;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .card-block {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
  .hero {
    height: auto;
    margin: 25% 3% 2% 3%;
  }
  .hero-title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .logo {
    font-size: 1.3rem;
  }
  .hero {
    height: auto;
    margin: 25% 3% 2% 3%;
  }
  .hero-title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .body {
    background-image: url("Assets/leafleft.png"), url("Assets/Leafright.png"),
      url("Assets/wavy.png");
    background-position: -10% 8%, 110% 2%, -520px 770px;
    background-size: 25%, 40%, 130%;
  }

  .hero-title span {
    font-size: 2rem;
    letter-spacing: 1.5px;
  }

  .background-circle {
    position: absolute;
    top: 30%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjusts to perfect center */
    width: 400px; /* Adjust size as needed */
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
      circle,
      rgba(255, 223, 76, 1) 0%,
      rgba(255, 233, 153, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    filter: blur(40px);
    animation: pulse 3s infinite;
    z-index: 1; /* Places it behind the content */
  }

  .header {
    padding: 10px 10px;
  }
  .nav ul li {
    font-family: "Arima", serif;
    margin: 0 3px; /* Add spacing between items */
  }
  .nav a {
    margin-right: 20px;
    color: #2f4f4f;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
  }
  .about-image {
    height: auto;
    width: auto;
    border-radius: 100px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  .intro-text p {
    font-size: 1.13rem;
  }
  .intro-text h2 {
    font-size: 2.3rem;
  }
  .intro {
    padding: 30px 5%;
  }
  .About {
    padding: 30px 5%;
  }
  .about-video {
    height: auto;
    width: auto;
    border-radius: 40px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  .testimonials {
    padding: 20px 20px;
  }
  .stars-left-stars img {
    height: 30px;
    margin-top: 10px;
  }
  .stars-right-stars img {
    height: 30px;
    margin-top: 10px;
  }
  .certifi-head h2 {
    font-size: 1.5rem;
  }
  .card-block img {
    height: 20px;
  }
  .card {
    width: 100%;
    max-width: 500px;
  }
  .workshop {
    padding: 20% 5% 5% 5%;
    gap: 50px;
  }
  .ws-title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: auto;
    background-color: #2f4f4f;
    color: #f5f5dc;
    margin: 15% 10% 0% 10%;
    border-radius: 25px;
  }
  .ws-title h2 {
    font-size: 20px;
    margin: 0;
  }
  .workshop-image {
    height: 500px;
  }
  .workshop-title h2 {
    font-size: 3rem;
  }
  .hero-title {
    font-size: 46px;
    line-height: 70px;
  }
  .tagline {
    font-size: 25px;
  }
  .footer-left h2 {
    margin-left: 0;
  }
  .footer-left ul li {
    margin-left: 0;
  }
  .footer-right {
    margin-right: 0;
  }
  .footer-right h3 {
    margin-bottom: 10px;
  }
  .footer {
    padding: 20px 10px;
  }
}
