@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap");

:root {
  --primary-color: #49608f;
  --primary-color-light:  #16437e;
  --primary-color-extra-light: #242E47;
  --secondary-color: #d7c221;
  --secondary-color-dark: #d7c221 ;
  --text-light: #d1d5db;
  --white: #ffffff;
  --max-width: 1035px;
}
.section__container .header__container h4{
  color:#d7c221;
  font-size: x-large;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--white);
}

.section__subheader {
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: var(--text-light);
}

.btn {
  padding: 1rem 2rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--secondary-color-dark);
}

img {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

.bg__blur {
  position: absolute;
  box-shadow: 0 0 1000px 50px var(--secondary-color);
  z-index: -1;
}

body {
  font-family: "Poppins";
  background-color: var(--primary-color);
}

nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  max-width: 150px;

}
.nav__logo img{
  border-radius: 96px;
  width: 80px;
}

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.link a {
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--white);
}

.link a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  transition: 0.3s;
}

.link a:hover::after {
  width: 50%;
}

.header__container {
  position: relative;
  padding-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
}

.header__container::before {
 
  position: absolute;
  bottom: 5rem;
  right: 20rem;
  font-size: 10rem;
  font-weight: 700;
  line-height: 7rem;
  color: var(--white);

  z-index: -1;
}

.header__blur {
  bottom: 5rem;
  right: 0;
}

.header__content h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  font-weight: 700;
  line-height: 6rem;
  color: var(--white);
}

.header__content h1 span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.header__image {
  position: relative;
  width: 100%;
  height: 80%;
}

.header__image::before {
  content: "o";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40rem;
  font-weight: 400;
  line-height: 20rem;
  color: var(--secondary-color);
  opacity: 0.1;
  z-index: -1;
}

.header__image img {
  width: 130%;
  margin: auto;
  height: 120%;
  margin-left: 0px;
}

.explore__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.explore__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.explore__nav span {
  padding: 0 6px;
  font-size: 1.5rem;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.explore__nav span:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.explore__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  height: 45%;
}

.explore__card {
  padding: 1rem;
  background-color: var(--primary-color-light);
  border: 2px solid transparent;
  border-radius: 10px;
  transition: 0.3s;
  height: 64vh;
}

.explore__card:hover {
  background-color: var(--primary-color-extra-light);
  border-color: var(--secondary-color);
}

.explore__card span {
  display: inline-block;
  padding: 2px 9px;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  color: var(--white);
  background-color: var(--secondary-color-dark);
  border-radius: 5px;
}

.explore__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.explore__card p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.explore__card a {
  color: var(--white);
  transition: 0.3s;
}

.explore__card a:hover {
  color: var(--secondary-color);
}

.class__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.class__image {
  position: relative;
}

.class__image .class__img-1 {
  
  position: absolute;
  right: 0;
  top: 0;
  max-width: 890px;
  border-radius: 10px;
}

.class__image .class__img-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 420px;
  border-radius: 10px;
  margin-left: 10px;
  margin-bottom: 48px; 
}

.class__content {
  padding: 2rem 0;
}

.class__content .section__header {
  text-align: left;
  max-width: 400px;
}

.class__content p {
  margin-bottom: 4rem;
  color: var(--text-light);
}

.join__image {
  margin-top: 4rem;
  position: relative;
}

.join__image img {
  border-radius: 10px;
}

.join__grid {
  position: absolute;
  bottom: -5rem;
  width: calc(100% - 4rem);
  padding: 2rem;
  margin: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: var(--primary-color-light);
  border-radius: 10px;
}

.join__card {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.join__card span {
  padding: 5px 12px;
  font-size: 1.75rem;
  color: var(--white);
  background-color: var(--secondary-color-dark);
  border-radius: 5px;
}

.join__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.join__card p {
  color: var(--text-light);
}

.price__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price__card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  background-color: var(--primary-color-light);
  border: 2px solid transparent;
  border-radius: 10px;
  transition: 0.3s;
}

.price__card:hover {
  background-color: var(--primary-color-extra-light);
  border-color: var(--secondary-color);
}

.price__card__content {
  flex: 1;
  margin-bottom: 2rem;
}

.price__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.price__card h3 {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 2px solid var(--white);
}

.price__card p {
  margin-bottom: 0.75rem;
  color: var(--white);
}

.price__card p i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.price__btn {
  color: var(--secondary-color);
  background-color: transparent;
  border: 2px solid var(--secondary-color);
}

.price__btn:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.review {
  background-color: var(--primary-color-light);
}

.review__container {
  display: flex;
  gap: 2rem;
}

.review__container > span {
  font-size: 6rem;
  color: var(--secondary-color);
  opacity: 0.5;
}

.review__content {
  flex: 1;
}

.review__content h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.review__content p {
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.review__rating span {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.review__footer {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.review__member {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.review__member img {
  max-width: 60px;
  border-radius: 100%;
}

.review__member__details h4 {
  margin-bottom: 0;
}

.review__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.review__nav span {
  font-size: 2rem;
  color: var(--secondary-color);
  cursor: pointer;
}

.footer__container {
  position: relative;
  display: grid;
  grid-template-columns: 400px repeat(3, 1fr);
  gap: 2rem;
}

.footer__blur {
  bottom: 0;
  right: 0;
}

.footer__logo {
  max-width: 150px;
  margin-bottom: 2rem;
}

.footer__col p {
  margin-bottom: 2rem;
  color: var(--text-light);
  margin-right:27px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 5px 10px;
  font-size: 1.25rem;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 100%;
  transition: 0.3s;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}
.footer__col img{
  border-radius: 90px;
}

.footer__col h4 {
  margin-left: 100px;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__col > a {
  margin-left: 105px;
  display: block;
  margin-bottom: 1rem;
  color: var(--text-light);
  transition: 0.3s;
}

.footer__col > a:hover {
  color: var(--secondary-color);
}

.footer__bar {
  
  max-width: var(--max-width);
  margin-left: 210px;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--white);
}

/* ... Your existing CSS ... */

/* Responsive Styles */

@media only screen and (max-width: 768px) {
  .section__container {
    padding: 3rem 1rem;
  }

  .section__header {
    font-size: 1.8rem;
  }

  .section__subheader {
    max-width: 100%;
  }

  nav {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .nav__links {
    flex-direction: column;
    gap: 1rem;
  }

  .header__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header__container::before {
    display: none;
  }

  .header__image::before {
    content: "";
    display: none;
  }

  .header__image img {
    width: 100%;
    height: auto;
  }

  .explore__header {
    flex-direction: column;
    text-align: center;
  }

  .explore__nav {
    flex-direction: column;
    gap: 1rem;
  }

  .explore__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    height: auto;
  }

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

  .class__image {
    order: 2;
  }

  .class__content {
    order: 1;
  }

  .join__image {
    order: 2;
  }

  .join__grid {
    order: 1;
    width: 100%;
  }

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

  .footer__container {
    grid-template-columns: 1fr;
  }

  .footer__col h4,
  .footer__col > a {
    margin-left: 0;
  }

  .footer__bar {
    margin-left: 0;
  }
}
/* ... Your existing CSS ... */

/* ... Your existing CSS ... */

/* Responsive Styles */
/* ... Your existing CSS ... */

/* Responsive Styles */

@media only screen and (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  .section__container {
    padding: 3rem 1rem;
  }

  .header__container {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .header__container::before {
    display: none;
  }

  .header__image {
    width: 100%;
    margin: 0; /* Remove any default margin */
  }

  .header__content {
    text-align: center;
  }

  .header__content h4 {
    font-size: 1.5rem;
  }

  .header__content h1 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .header__content p {
    font-size: 1rem;
  }
  .class__image{
     max-width: 100px;

  }
  .class__img-1{
    margin-bottom: 100px;
    margin-left: 100px;

  }.class__container {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .class__image {
    order: 2;
    align-items: center;
    margin-left: 40px;
  }

  .class__image .class__img-1 {
    position: relative;
    right: auto;
    top: auto;
    width: 220%;
    margin: auto;
  }

  .class__image .class__img-2 {
    margin-bottom: 10px;
    position: relative;
    left: auto;
    bottom: auto;
    width: 190%;
    margin: auto;
    
  }
  .section__header{
    margin-left: 30px;
  }
  .why__choose__container {
    visibility: hidden;
    height: 0;
    overflow: hidden;
  }
 
  
  }



/* ... Your existing CSS ... */



.services__container {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Adjust the gap as needed */
}

.services__container .section__header {
  margin-bottom: 0.5rem; /* Slightly reduce the margin */
}

.services__container .section__subheader,
.services__container .btn {
  margin-bottom: 0.2rem; /* Add margin below paragraph and button */
}

.services__container .service__images {
  margin-bottom: 0.2rem; /* Add margin below the image container */
}

.service__image {
  width: 100%; /* Make sure images take the full width */
  max-width: none; /* Allow images to exceed screen width */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 1rem; /* Add margin below each image */
}

.service__card {
  margin-bottom: 0.4rem; /* Add margin between service cards */
}


.why__choose__container {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Adjust the gap as needed */
}

.why__choose__container .section__header {
  margin-bottom: 0.5rem; /* Slightly reduce the margin */
}

.why__choose__container .section__subheader,
.why__choose__container .btn {
  margin-bottom: 0.2rem; /* Add margin below paragraph and button */
}

.why__choose__container .choose__images {
  margin-bottom: 1rem; /* Add margin below the image container */
}

.choose__image {
  width: 50%; /* Make sure images take the full width */
  max-width: none; /* Allow images to exceed screen width */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 1rem; /* Add margin below each image */
}

.choose__card {
  margin-bottom: 0.4rem; /* Add margin between choose cards */
}

.choose__content,
.choose__title {
  margin-bottom: 2rem; /* Add margin below content and title */
}
/* Responsive Styles for Review Section */
.review {
  background-color: var(--primary-color-light);
  height: auto; /* Adjust the height as needed */
}

.review__container {
  display: flex;
  gap: 2rem;
  overflow: hidden; /* Hide overflow for smaller screens */
}

.review__container > span {
  font-size: 6rem;
  color: var(--secondary-color);
  opacity: 0.5;
  display: none; /* Hide the arrows */
}

.review__content {
  flex: 1;
}

.review__footer {
  margin-top: 2rem; /* Adjust the margin as needed */
}
.services__container {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Adjust the gap as needed */
  margin-top: -2rem; /* Add a negative margin to pull the heading up */
}

.services__container .section__header {
  margin-bottom: 0.5rem; /* Slightly reduce the margin */
  margin-top: 1rem; /* Add margin to the top */
}

.services__container .section__subheader,
.services__container .btn {
  margin-bottom: 0.2rem; /* Add margin below paragraph and button */
}

.services__container .service__images {
  margin-bottom: 0.2rem; /* Add margin below the image container */
}

.service__image {
  width: 40%; /* Make sure images take the full width */
  max-width: none; /* Allow images to exceed screen width */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 1rem; /* Add margin below each image */
}

.service__card {
  margin-bottom: 0.4rem; /* Add margin between service cards */
}

.service__content,
.service__title {
  margin-bottom: 0.5rem; /* Add margin below content and title */
}
@media only screen and (max-width: 768px) {
  .join_container p  {
    visibility: hidden;
    height: 0;
    overflow: hidden;
  }
 
  .section__subheader h2{
    
    font-size: large;
    
  }
  .join__grid{
    visibility: hidden;
    height: 0;
    overflow: hidden; 
  }
}





