@import url('https://fonts.googleapis.com/css2?family=Sofadi+One&display=swap');
/*----  font-family: "Sofadi One", system-ui;  -----*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sofadi+One&display=swap');
/*----  font-family: "Roboto", sans-serif;  -----*/
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@100..800&display=swap');
/*---- font-family: "Playpen Sans", cursive;  -----*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,700;1,800;1,900&display=swap');
/*---- font-family: poppins;  -----*/


:root{
  --primary-color: #28bf96;
  --primary-color-dark: #209677;
  --text-dark: #111827;
  --text-light: #6b7280;
  --white: #ffffff;
}


*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: poppins;
}
::-webkit-scrollbar{
    display: none;
}


nav{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.871);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 50px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

nav .logo{
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu{
    display: flex;
    list-style: none;
    transition: 0.3s ease-in-out;
}

.nav-menu li{
    margin: 0 5px;
    padding: 10px 20px;
}

.nav-menu a{
    text-decoration: none;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-menu a:hover{
    color: var(--primary-color);
}

nav .menu-btn i{
    color: var(--primary-color-dark);
    font-size: 30px;
    cursor: pointer;
    display: none;
    transition: 0.3s ease-in-out;
}

#login_btn{
    background-color: #28bf96;
    border-radius: 6px;
    transition: all 0.3s ease;
}
#login_btn>a{
    color: var(--white);
    padding: 10px 20px;
    transition: all 0.3s ease;
}
#login_btn:hover{
    background-color: var(--primary-color-dark);
}


@media (max-width: 940px) {
    nav{
        padding: 0 20px 0 20px;
    }
    .nav-menu{
        position: fixed;
        top: 70px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.926);
        height: 100vh;
        width: 100%;
        display: block;
        text-align: center;
        left: -100%;
    }   
    
    .nav-menu li{
        margin: 40px 0;
        width: 100%;
    }

    .nav-menu a{
        padding: 10px 100px;
        border: none;
    }

    .nav-menu a:hover{
        color: var(--primary-color);
        background: none;
    }


    nav .menu-btn i{
        display: block;
    }
}




.header {
    padding: 2rem 2rem;
    margin-top: 70px;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    min-height: 100vh;

  }
  
  .png_image{
    top: 80px;
    left: 25vw;
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
  }

  .png_image>img{
    width: 50vw;
  }
  .content h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .content h1 span {
    font-weight: 400;
    color: var(--primary-color-dark);
  }
  
  .content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.75rem;
  }
  
  .image {
    position: relative;
    text-align: center;
    isolation: isolate;
  }
  
  .image__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 450px;
    width: 450px;
    background-color: var(--primary-color);
    border-radius: 100%;
    z-index: -1;
  }
  
  .image img {
    width: 100%;
    max-width: 475px;
  }

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

  .join_now_btn:hover{
    background-color: var(--primary-color-dark);
  }  
  
  @media (width < 900px) {
    .nav__links {
      display: none;
    }
  
    .header {
      padding: 1rem;
      grid-template-columns: repeat(1, 1fr);
    }
  
    .content {
      text-align: center;
    }
  
    .image {
      grid-area: 1/1/2/2;
    }
  }

  /* Features Section ================================================================= */

/* Features Section Styles */
.features {
    padding: 4rem 2rem;
    background-color: #f5f9ff;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsiveness for Features Section */
@media (max-width: 1200px) {
    .feature-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* Testimonial Section ======================================================= */
/* Testimonial Section */
.testimonials {
    padding: 50px 20px;
    background-color: #e9ecef;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    flex-wrap: wrap;
}

.testimonial {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.testimonial p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.testimonial-container .testimonial {
    display: none;
}

.testimonial-container .testimonial.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        gap: 20px;
    }
}


/*  Pricing Section ============================================= */

/* Pricing Section */
.pricing {
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.pricing .card:hover {
    transform: translateY(-10px);
}

.pricing .card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color-dark);
}

.pricing .price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

.pricing .card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing .card ul li {
    margin: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.pricing .btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

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

.premium {
    background-color: #f0fdf4;
    border: 2px solid var(--primary-color);
    padding: 40px;
}

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



/* Footer Section ========================================================== */

/* Footer */
.footer {
    background-color: #28bf96;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 1rem;
    color: #f5f5f5;
    line-height: 1.6;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffffa0;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #f5f5f530;
    margin-top: 40px;
}

.footer-bottom p {
    color: #ffffffc0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}
