@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

/* navbar */
.nav-container {
  padding: 10px 100px;
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  position: absolute;
  width: 100%;
}

.nav-container .logo img {
  width: 110px;
  height: 50px;
}

.nav-container .logo h2 {
  color: aliceblue;
  text-transform: capitalize;
}

nav .main-nav {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: space-between;
}

nav .main-nav li a {
  text-decoration: none;
  color: bisque;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

nav .main-nav li a:hover {
  color: #fff;
}

/* Your existing CSS */
/* Add this CSS for hamburger menu */

.menu-toggle{
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: bisque;
  margin: 3px 0;
  transition: 0.4s;
}

.nav-container .logo h2 {
  color: aliceblue;
  text-transform: capitalize;
}

nav .main-nav {
  display: flex;
  list-style-type: none;
  align-items: center;
  gap: 20px;
}

nav .main-nav li a {
  text-decoration: none;
  color: bisque;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

nav .main-nav li a:hover {
  color: #fff;
}

/* Media queries for tablet and mobile */
@media screen and (max-width: 768px) {
  .nav-container {
    padding: 10px 20px;
  }
  .menu-toggle {
    display: flex; /* Show on smaller screens */
  }
 
  .nav-container .main-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 40%;
    background-color: rgb(255 255 255 / 30%);
    backdrop-filter: blur(10px);
    top: 70px;
    right: 10px;
    z-index: 1000;
    text-align: center;
    border-radius: 10px;
  }

  .main-nav li {
    margin: 4px 0;
  }

  nav .main-nav li a {
    color: white; 
  }

 
  nav .main-nav li a:hover {
    color: #fff;
  }
}

@media screen and (max-width: 600px) {
  .main-nav {
    width: 40%;
  }
}

/* hero section */

.hero-container {
  width: 100%;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  /* padding: 10px 50px; */
  padding: 10px 100px;
  background: linear-gradient(0deg,
      rgba(92, 1, 120, 1) 0%,
      rgba(255, 103, 87, 1) 100%);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.hero-container .hero-left {
  flex: 1;
}

.hero-container .hero-left span {
  color: aliceblue;
}

.hero-container .hero-left h1 {
  color: #ff6757;
  font-size: 50px;
  font-weight: 900;
}
.hero-container .hero-left h2 {
  color: bisque;
}
.hero-container .hero-left p {
  color: #fff;
  margin: 10px 0px;
}

.hero-container .hero-left button {
  color: #333;
  font-weight: 500;
  text-decoration: underline;
  background: #862ec1;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  margin: 10px 0px;
  text-decoration: none;
}

.hero-container .hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-container .dating-img {
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
}

.hero-container .dating-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /* Ensure the image is circular */
  border: 10px solid transparent;
  /* Set a transparent border */
  border-image: linear-gradient(0deg,
      rgb(239, 237, 240) 0%,
      rgba(255, 103, 87, 1) 100%);
  /* Apply linear gradient as border */
  border-image-slice: 1;
  /* Ensure the entire border is filled with the gradient */
}


@media (max-width: 950px) {
  .hero-container {
    flex-direction: column;
  }
}

@media (max-width:470px){
  .hero-container {
    flex-direction: column-reverse;
  }
  .hero-container {
    padding-top: 100px;
    padding-bottom: 30px;
    padding-inline: 20px;
  }
  .hero-container .hero-right{
    width: 380px;
  }
  .hero-container .hero-left h1 {
    font-size: 40px;
  }
  .hero-container .hero-left h2 {
    font-size: 20px;
  }
}
.form textarea {
  width: 100%; 
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px; 
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
.form .users {
  display: flex;
  column-gap: 15px;
}

.form .input-box {
  width: 100%;
  margin-top: 20px;
  align-items: center;
}

.input-box label {
  color: #333;
}

.form :where(.input-box input) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.form button {
  max-width: 200px;
  padding: 10px 30px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: linear-gradient(0deg,
      rgba(92, 1, 120, 1) 0%,
      rgba(255, 103, 87, 1) 100%);
  border-radius: 10px;
}

@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }

  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}

/* enroll Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content h3{
text-align: center;
}
.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 5px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/* About Us section */
.about-container {
  width: 100%;
  padding: 10px 100px;
  background-color: #ffffff;
}

.about-container .about-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.about-container .about-heading h1 {
  font-size: 2rem;
  text-align: justify;
}

.about-container .about-heading span {
  display: inline-block;
  width: 100px;
  height: 2px;
  background: linear-gradient(0deg,
      rgba(92, 1, 120, 1) 0%,
      rgba(255, 103, 87, 1) 100%);
  border-radius: 20px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.about-text {
  max-width: 50%;
  color: #62615B;
}

.about-text p {
  margin-bottom: 10px;
}

.about-container h2 {
  text-align: center;
}

.about-image {
  max-width: 70%;
  text-align: right;
}

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

@media (max-width:470px) {
  .about-container {
    padding: 40px 20px;
  }

  .about-container .about-content {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image {
    max-width: 100%;
  }
}


/* How It Works Section Styles */
.how-it-works-container {
  padding: 20px 100px;
  background-color: white;
}

.how-it-works-heading {
  text-align: center;
  margin-bottom: 30px;
}

.how-it-works-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.how-it-works-heading span {
  display: inline-block;
  width: 100px;
  height: 4px;
  background: linear-gradient(0deg,
      rgba(92, 1, 120, 1) 0%,
      rgba(255, 103, 87, 1) 100%);
  border-radius: 2px;
}

.how-it-works-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  text-align: center;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #500a5f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -17px;
  margin: 0 auto;
}

.step img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.step p {
  font-size: 1rem;
  color: #555;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background-color: #f0f0f0;
}

@media (max-width: 950px) {
  .how-it-works-container {
    padding: 10px 50px;
  }

  .how-it-works-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 470px) {
  .how-it-works-heading h2 {
    margin-bottom: 5px;
  }

  .how-it-works-container {
    padding: 10px 20px;
  }

  .how-it-works-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*  features sections  */

.features-container {
  width: 100%;
  background-color: #f9f9f9;
  padding: 20px 100px;
}

.features-container .features-heading{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 1rem;
}

.features-container .features-heading span{
   display: inline-block;
   width: 150px;
   height: 2px;
   background: #500a5f;
}

.features-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 auto;
}

.feature-box {
  background-color: white;
  padding: 1.5rem;
  border-radius: 40px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

.feature-box:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.feature-box .fas {
  font-size: 2rem;
  color: #500a5f;
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-box p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 470px) {
  .features-container {
    padding: 40px 20px;
  }
  .features-content{
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-box{
    padding: 1rem;
  }
}

/* our partner */
.our-partner {
  width: 100%;
  background: #fff;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 0px;
}

.our-partner h2 {
  font-size: 30px;
  color: #333;
}

.our-partner .partner-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}

.our-partner .partner-heading span {
  width: 150px;
  height: 2px;
  background: linear-gradient(0deg,
      rgba(92, 1, 120, 1) 0%,
      rgba(255, 103, 87, 1) 100%);
  border-radius: 10px;
}

.our-partner .logos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.our-partner .logos-container .club-logo img {
  width: 200px;
  height: 200px;
}

.our-partner .logos-container .club-logo:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 950px) {
  .our-partner .logos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .our-partner .logos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 470px) {
  .our-partner .logos-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .our-partner .logos-container .club-logo img{
    width: 320px;
  }
}

/* testimonials */

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  width: 300px;
}

.swiper-button-prev {
  display: none;
}

.swiper-button-next {
  display: none;
}

.swiper-container .swiper-wrapper .swiper-slide .testimonials-profile1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 10px;
  background: #ffff;
  padding: 40px 0px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.swiper-container .swiper-wrapper .swiper-slide .testimonials-profile1 .testimonials-profile-content h2 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px;
}

.swiper-container .swiper-wrapper .swiper-slide .testimonials-profile1 .testimonials-profile-content p {
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
}

/* contact us form */
.contact-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
  padding-top: 50px;
}

.contact-title span {
  width: 150px;
  height: 2px;
  background: linear-gradient(0deg,
      rgba(92, 1, 120, 1) 0%,
      rgba(255, 103, 87, 1) 100%);
  border-radius: 10px;
}

.contact-container {
  width: 90%;
  background: #fff;
  margin: auto;
  border-radius: 6px;
  padding: 10px 100px;
  margin-bottom: 40px;

}

.contact-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
}

.content .left-side .details i {
  font-size: 30px;
  color: #5c0178;
  margin-bottom: 10px;
}

.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}

.contact-container .content .right-side {
  width: 75%;
  margin-left: 75px;
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #5c0178;
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;
  /* background: #3e2093; */
}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

.right-side .button input[type="button"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #5c0178;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button input[type="button"]:hover {
  background: #5c0178;
}

@media (max-width: 950px) {
  .contact-container {
    width: 90%;
    padding: 30px 40px 40px 35px;
  }

  .contact-container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}

@media (max-width: 820px) {
  .contact-container {
    /* margin: 40px 0; */
    height: 100%;
  }

  .contact-container .content {
    flex-direction: column-reverse;
  }

  .contact-container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-container .content .left-side::before {
    display: none;
  }

  .contact-container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width:470px){
  .contact-container {
    padding: 10px 20px;
  }
}

.center-gradient {
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.center-gradient::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #e65c00, #f9d423);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.about-icons {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 20px;
}

.icon-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-box i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.icon-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.icon-box p {
  font-size: 1rem;
  color: #666;
}

.icon-box:nth-child(1) i {
  color: #e65c00;
}

.icon-box:nth-child(2) i {
  color: #3b5998;
}

.icon-box:nth-child(3) i {
  color: #26a69a;
}
/* contact us end */


/******* footer start *****************/
.footer-container {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  width: 100%;
}

.footer-content h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #fff;
}

.footer-info,
.footer-links,
.footer-social {
  margin-bottom: 10px;
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li {
  margin: 5px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffff;
}

.social-icon {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}

.social-icon:hover {
  color: #ffff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  margin-top: 10px;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-around;
}

.footer-info,
.footer-links,
.footer-social {
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  text-align: center;
}

@media (max-width:470px){
  .footer-content{
    flex-direction: column;
  }
}