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

:root {
  --primary-color: #111317;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #6F19DE;
  --secondary-color-dark: #A896EA;
  --text-light: #d1d5db;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  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: 600;
  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: 5px;
  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", sans-serif;
  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: 100px;
  margin-top: 10px;
}

.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__blur {
  bottom: 5rem;
  right: 0;
}

.header__content h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: white !important;
  margin-left: 320px;
  margin-right: -20px;
}

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

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

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
  text-align: center;
  margin-left: 200px;
  margin-right: -150px;
}

.header__image {
  position: relative;
}

.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 {
  max-width: 350px;
  margin: auto;
}

.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);
}

.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);
}

.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 h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-left: 500px;
}

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

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

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



/* footer2 */

/* General Footer Styling */
footer2 {
  background-color: #333; /* Dark background */
  color: #fff; /* White text */
  padding: 20px 0; /* Padding around the footer */
  text-align: center; /* Center-align content */
  font-family: Arial, sans-serif;
}

footer2 .footer-content {
  margin-bottom: 20px; /* Space between footer content and sponsors */
}

footer2 a {
  color: #fff; /* White links */
  text-decoration: none; /* Remove underline */
  margin: 0 10px; /* Space between links */
}

footer2 a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* Sponsors Section */
footer2 .sponsors {
  margin-top: 20px; /* Space above the sponsors section */
  text-align: center;
}

footer2 .sponsors p {
  font-size: 1.2em; /* Larger font size for "Our Sponsors" */
  margin-bottom: 10px;
}

footer2 .sponsors a {
  display: inline-block;
  margin: 0 15px; /* Space between sponsor logos */
  margin-top: 10px;
}

footer2 .sponsors img {
  max-height: 50px; /* Limit logo height */
  max-width: 100px; /* Limit logo width */
  transition: transform 0.3s ease; /* Smooth transition for hover */
  margin-bottom: 30px;
}

footer2 .sponsors img:hover {
  transform: scale(1.1); /* Slightly enlarge logos on hover */
}


@media (width < 600px) {

  .header__container {
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    margin-left: -205px;
    margin-right: 300px;
  }
  
  .header__blur {
    bottom: 5rem;
    right: 0;
  }
  
  .header__content h4 {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white !important;
    margin-left: 320px;

  }
  
  .header__content h1 {
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 2rem;
    color: var(--white);
    margin-left: 290px;
  }
  
  .header__content h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
    margin-left: -35px;
  }
  
  .header__content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    text-align: center;
    margin-left: 200px;
    margin-right: -20px;
  }
  
  .header__image {
    position: relative;
  }
  
  .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 {
    max-width: 350px;
    margin: auto;
  }

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

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

}