/* home page */

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Ensure no horizontal scrolling */
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure body width matches the viewport */
}

body {
    overflow-x: hidden; /* Ensure no horizontal scrolling */
    margin: 0;
    padding: 0;
    width: 100%; /* Ensure body width matches the viewport */
}

/* Nav Bar Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 11vh;
    background-color: white;
    z-index: 1000; 
    padding: 20px 30px;
}

nav a {
    text-decoration: none;
    color: black;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: right;
    align-items: right;
    height: 100%;
    margin-top: 10px;
}

nav ul li {
    margin: 0 30px;
    font-size: 0.9em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    vertical-align: middle;
}

nav img {
    height: 30%;
    max-height: 7vh;
    float: left;
    vertical-align: middle;
    translate: 0px -10px;
}

/*hero section*/

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    
    
}
.hero-section img {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}


.hero-section ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 10%;
    padding: 10%;
    text-align: Left;
    color: white;
}

.hero-section ul li h1 {
    font-size: 5em;
    max-width: 50%;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
}

.hero-section ul li h2 {
    font-size: 1.3em;
    max-width: 40%;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2%;
}

.hero-section ul li button {
    padding: 25px 40px;
    font-size: 1.5em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #60ceee;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Add initial shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hero-section ul li button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
    background-color: #4db8e6; /* Slightly darker shade on hover */
}

.hero-section ul li button:active {
    transform: translateY(2px); /* Simulate button press */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); /* Reduce shadow on press */
}

/* Testimonials section */

.testimonials {
    padding: 60px 6%;
    text-align: left;
    background-color: #f9f9f9;
    height: auto;
    width: 100%;
    
}

.testimonials h2 {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}
.testimonials .testimonial-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.testimonial-card {
    background-color: #c8d4e6;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    display: inline-block;
    width: 20vw;
    vertical-align: top;

}

.testimonial-card h3 {
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin-bottom: 10px;

}

/* Partner Section */

.partners {
    width: 100%;
    height: auto;
    padding: 60px 6%;
    background-color: #60ceee;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.partners h2 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
}

.carousel {
    margin: 100px auto;
    width: 90%;
    display: flex;
}
.group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.partners img {
    width: 7em;
    height: 7em;
    margin: 0 30px;
    border-radius: 100px;
    object-fit: contain;
    opacity: 0.8;
    flex: 0 0 5em;
    align-content: center;

    
}
/* Mission section */ 

.mission {
    padding: 30px;
    text-align: center;
    height: auto;
    width: 100%;
    background-color: white;
}

.mission h2 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    margin-top: 10px;
}

.mission p {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    max-width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
}

hr {
    border: none;
    border-top: 4px solid #60ceee;
    margin: 20px 5%;
    width: 90%;
   align-self: center; 
}

/* Feedback Section */

.feedback {
    height: auto;
    width: 100%;
}

.feedback h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 100px;
    text-align: center;
    margin-top: 100px;
    
}

.feedback-cards {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap; 
  }
  
  .feedback-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    width: 500px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
  }

  .feedback-card ul {
    list-style-type: disc;
    margin-top: 20px;
    padding: 0;
    color: black;
    list-style-type: none;
    }

    .feedback-card ul li::before {
        content: "✔";
        color: #60ceee;
        margin-right: 10px;
        font-weight: bold;
    
  }
.feedback-card ul li {
    
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap; 
   align-items: center;
   font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    

  }

  .feedback-card h3 {
    font-size: 1.8rem;
    font-weight: bold;

    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
  }

  .feedback-card p {
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
  }

    .feedback-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      margin-bottom: 20%;
      max-height: 70px;
      max-width: 70px;
      
    }
  /* Achievements Section */

  .achieve {
    padding: 60px 8%;
    height: auto;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    text-align: center;
    display: grid;
    grid-template-columns: 75% 25%;
    overflow-x: hidden; 
  }

.achieve .achieve-text {
    max-width: 90%;
    
}
  .achieve .achieve-header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap; 
   align-items: center;

  }

  
  .achieve h1 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color:#60ceee;
  }

  .achieve h3 {
    font-size: 1.0rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #60ceee;
    
  }

  .achieve h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
    margin-top: 3%;
    text-align: left;
    max-width: 80%;
    line-height: 1.2;
  }

  .achieve h4 {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-align: left;
    max-width: 75%;
    line-height: 1.5;
  }

  .achieve .achieve-list {
   font-size: 1.2rem;
   font-weight: 500;
    font-family: 'Inter', sans-serif;
    line-height: 2.5;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
    margin: 3% 3%;
    
  }
.achieve button {
    display: inline-block;
    margin-top: 20px;
    padding: 25px 50px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #60ceee;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
    margin-top: 5%;
    margin-left: -65%;
}

.achieve button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #4db8e6;
}

.achieve button:active {
    transform: translateY(2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
    .achieve button {
        margin: 0;
        margin-top: 10%;
    }
}
  .achieve .much-more{
    text-align: right;
  }

  .achieve .achieve-list img {
    width: 100%;
    height: auto;
    max-height: 30px;
    max-width: 30px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 2%;
  }

.achieve .computer {
    width: 250%;
    height: auto;
    object-fit: cover;
    overflow-x: hidden;
    margin-top: -60px;
    margin-left: -160px;
    display: flex;
    position: relative;
    clip-path: inset(0 0 0 0);
}

/* Transform Section */

  .transform {
    padding: 50px 8%;
    height: auto;
    width: 100%;
    background-color: #60ceee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }

  .transform h2 {
    font-size: 2.3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: black;
    max-width: 80%;
  }


  .transform .cta-bottom {
    text-align: right;
    margin-top: 6%;
    max-width: 80%;
    margin-left: 10px;
    gap: 10px;
    font-family: 'Inter', sans-serif;
  }

  .transform button {
    padding: 15px 25px;
    margin-top: 10px;
    font-size: 0.8em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
  }

  .transform button {
    padding: 15px 25px;
    font-size: 0.8em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    color: #60ceee;
    background-color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }

  /* about us page */

  /* About Us Section */

.aboutus-section {
    padding: 10% 11%;
    margin: 0;
    height: auto; 
    width: 100%;
    text-align: center;
    overflow-x: clip; 
    position: relative; 
}

.aboutus-section .aboutus-header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap; 
   align-items: center;
}

.aboutus-section h1 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color:#60ceee;
}

.aboutus-section h3{
    font-size: 1.0rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #60ceee;
}

.aboutus-section h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
    margin-top: 3%;
    text-align: left;
    max-width: 80%;
    line-height: 1.2;
}

.aboutus-section p {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-align: left;
    max-width: 75%;
    line-height: 1.5;
} 

.aboutus-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #60ceee 10%, #ffffff 60%);
    border-radius: 50%;
    z-index: -1;
    transform: translate(50%, 50%);
    clip-path: inset(0 50% 50% 0);
    max-width: 100%; 
    pointer-events: none; 
    overflow: clip;
}

/* Founder Story */

.founder-section {
    padding: 10% 11%;
    height: auto;
    width: 100%;
    background-color: #60ceee;
    position: relative; 
    margin-top: 0;
}

.founder-section .founder-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    float: left;
    margin-right: 20px;
    display: flex;
    border-radius: 10px;
    margin-right: 20px;

}

.founder-section .founder-header {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: right;
        gap: 5px;
        flex-wrap: wrap; 
       align-items: center;
}

.founder-section h1 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color:#ffffff;
}

.founder-section h3{
    font-size: 1.0rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.founder-section h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
    margin-top: 3%;
    text-align: right;
    max-width: 100%;
    line-height: 1.2;
}

.founder-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5px;
    text-align: right;
    max-width:100%;
    margin-bottom: 4px;
    line-height: 1.3;
    color: #ffffff;
}
.founder-section p {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-align: right;
    max-width:100%;
    line-height: 1.5;
    padding-left: 40%;
} 

.founder-contact {
    display: flex;
    justify-content: right;
    align-items: right;
    gap: 10px;
    
}
.founder-section .founder-contact img {
    width: 40px;
    height: 40px;
    margin-top: 20px;
    display: inline-flex;
    justify-content: right;
    align-items: right;
    gap: 10px;
    

}
/* how it works section */

.how-section {
    padding: 10% 11%;
    margin: 0;
    height: auto; 
    width: 100%;
    text-align: center;
    overflow-x: clip; 
    position: relative; 
}

.how-section .how-header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap; 
   align-items: center;
}

.how-section h1 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color:#60ceee;
}

.how-section h3{
    font-size: 1.0rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #60ceee;
}

.how-section h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
    margin-top: 3%;
    padding-right: 20%;
    text-align: left;
    max-width: 80%;
    line-height: 1.2;
}

.how-section p {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-align: left;
    max-width: 75%;
    line-height: 1.5;
}



/* Steps Section */

.pricingtitle-section {
    padding: 10% 11%;
    margin: 0;
    height: auto; 
    width: 100%;
    text-align: center;
    overflow-x: clip; 
    position: relative; 
}

.pricingtitle-section .pricing-header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap; 
   align-items: center;
}

.pricingtitle-section h1 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color:#60ceee;
}

.pricingtitle-section h3{
    font-size: 1.0rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #60ceee;
}

.pricingtitle-section h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
    margin-top: 3%;
    padding-right: 20%;
    text-align: left;
    max-width: 80%;
    line-height: 1.2;
}

.pricingtitle-section p {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-align: left;
    max-width: 75%;
    line-height: 1.5;
}

.steps-section {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
}


.steps-content {
    
    width: 70%;
    margin-top: 0;
    text-align: center;
}

.steps-content .step {
    padding-bottom: 100px;
}

.steps-content h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

.steps-content p {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    color: #333;
}

.step {
    margin-bottom: 50px;
    text-align: center;
}

.steps-section .step .stepvideo {
    width: 90%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 70px;
}
/* PRICING STYLES */

.pricing-section {
    text-align: center;
    padding: 10px;
    padding-bottom: 30px;

}

.pricing-title {
    font-size: 42px;
    font-weight: 800;
    color: Black;
    margin-bottom: 30px;
   
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 70px;
}
.pricing-section {
    font-family: 'Montserrat', sans-serif;
    margin-top: 5%;
    margin-bottom: 5%;
}
.pricing-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    border: 2px solid #58cced;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #ff5733;
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin: 10px 0;
}

.price-desc {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #a8ff7a;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #8cff5a;
    transform: scale(1.05);
}

.cta-button1 {
    background-color: #79e64b !important; /* Ensure green color is applied */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button1:hover {
    background-color: #60ceee !important; /* Ensure hover color changes to blue */
}

.plan-details {
    font-size: 14px;
    color: #555555;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features li {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    margin: 0 auto 20px auto; /* Center horizontally */
    gap: 10px;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.billing-option {
    background-color: #ffffff;
    border: 2px solid #58cced;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #58cced;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billing-option.active {
    background-color: #58cced;
    color: #ffffff;
}

.billing-option:hover {
    background-color: #a8e4f7;
    color: #ffffff;
}

.billing-option-container {
    position: relative;
    display: inline-block;
}

.save-feature {
    position: absolute;
    top: 120%; /* Adjust this value to move it down */
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background-color: #ff5733; /* Bright red background */
    padding: 5px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Contact Styles */
.contact-section {
    padding: 10% 11%;
    margin: 0;
    height: auto; 
    width: 100%;
    display: inline-block;
    text-align: center;
    overflow-x: clip; 
    position: relative; 
}


.contact-section .contact-header {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    flex-wrap: wrap; 
   align-items: center;
}


.contact-header h1 {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    text-align: center;
    color:#60ceee;
}

.contact-header h3 {
    font-size: 1.0rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #60ceee;
    
}

.contact-section h2 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2%;
    margin-top: 3%;
    padding-right: 20%;
    text-align: left;
    max-width: 80%;
    line-height: 1.2;
}

.contact-section p {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 5px;
    text-align: left;
    max-width: 50%;
    line-height: 1.5;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #60ceee 10%, #ffffff 60%);
    border-radius: 50%;
    z-index: -1;
    transform: translate(50%, 50%);
    clip-path: inset(0 50% 50% 0);
    max-width: 100%; 
    pointer-events: none; 
    overflow: clip;
}
.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.email span {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: black;
    gap: 10px;
    

}
.contact-details .email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
}

.contact-details .email img {
    width: 40px;
    height: 40px;
    display: inline-flex;
}

.contact-details .socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-socials {
    display: flex;
    width: fit-content;
}

.contact-socials .social-icons img {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    filter: invert(1);
}


.blue-divider {
    width: 100%;
    height: 150px;
    background-color: #60ceee;
    
}

/* FAQ styles */

.faq-container {
    display: flex;
    flex-direction: column; /* Change layout to a single column */
    gap: 20px;
    max-width: 800px; /* Adjust width for readability */
    margin: 40px auto;
    font-family: 'Montserrat', sans-serif;
}

.faq-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin: 20px 0;
    padding-top: 20px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-answer {
    padding: 15px 20px;
    font-size: 16px;
    color: #555555;
    display: none; /* Hidden by default */
    margin-top: 10px; /* Add spacing between question and answer */
}

.faq-item:hover .faq-answer {
    display: block; /* Show answer on hover */
}

.faq-item.active .faq-answer {
    display: block; /* Ensure answers remain visible */
}

.faq-item.active .faq-question::after {
    content: "-";
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

faq-question::after {
    content: "+";
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

/* privacy section */
.privacypolicy {
    padding: 10% 11%;
    margin: 0;
    height: auto; 
    width: 100%;
    text-align: left;
    overflow-x: clip; 
    position: relative; 
    font-family: 'Montserrat', sans-serif;
}

.privacypolicy h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #60ceee;
    margin-bottom: 20px;
}

.privacypolicy h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    text-align: left;

}

.privacypolicy p {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
}

.privacypolicy ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

/* terms section */
.terms {
    padding: 10% 11%;
    margin: 0;
    height: auto; 
    width: 100%;
    text-align: left;
    overflow-x: clip; 
    position: relative; 
    font-family: 'Montserrat', sans-serif;
}

.terms h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #60ceee;
    margin-bottom: 20px;
}

.terms h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    text-align: left;

}

.terms p {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 20px;
}

.terms ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}


/* Fade-in and slide-up animation */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    animation: fadeInSlideUp 1s ease-in-out;
}

section, header, footer {
    max-width: 100vw; /* Prevent sections from exceeding the viewport width */
    overflow-x: hidden;
}


/* Mobile menu styles */
.menu-button {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

@media screen and (max-width: 768px) {
    .body {
        overflow-x: hidden; 

    }

    .main {
        overflow-x: hidden;
    }


    /*nav bar */
     .menu-button {
            display: block;
            font-size: 35px;
     }
     
     
    .nav-bar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background-color: #58cced;
        flex-direction: column;
    
        transition: right 0.3s ease;
        z-index: 1000;
       
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 30px;
        margin-top: 60%;
        text-align: left;
    }

    .nav-links ul li  {
        font-size: 20px;
        color: #000;
        text-decoration: none;
        align-items: right;
        width: 100%;
    
    }


    /*how it works*/
    .how-section h2 {
        font-size: 2rem;
        padding-right: 0;
        padding-top: 15%;
    }
    

    /*pricing */
    .pricingtitle-section h2 {
        font-size: 2rem;
        padding-right: 0;
        padding-top: 15%;
    }

    .pricing-title {
        font-size: 32px;
    }

    /*contact*/

    .contact-section h2 {
        font-size: 2rem;
        padding-right: 0;
        padding-top: 15%;
    }

    .contact-section p {
        max-width: 100%;
    }

    .contact-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50vw; /* Adjust size relative to viewport width */
        height: 50vw; /* Maintain aspect ratio */
        background: radial-gradient(circle, #60ceee 10%, #ffffff 60%);
        border-radius: 50%;
        z-index: -1;
        transform: translate(50%, 50%);
        clip-path: inset(0 50% 50% 0);
        max-width: 100%; 
        pointer-events: none; 
        overflow: clip;
    }

    .faq-title {
        font-size: 28px;
    }  
    
    .faq-item {
        font-size: 12px;
        width: 85%;
        align-items: center;
        margin: 0 auto;
        
    }

    /*terms & privacy*/

    .terms h1, .privacypolicy h1 {
        margin-top: 30%;
    }

    /*home*/

    .hero-section ul li h1 {
        font-size: 3em;
        margin-top: 30%;
        max-width: 90%;
    }
    .hero-section ul li h2 {
        font-size: 1em;
        max-width: 90%;
    }

    .hero-section ul li button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin-top: 20px;
    }

    .hero-section img {
        max-height: 80vh;
        height: 70vh;

    }

    .hero-section {
        height: auto;
        
        padding-bottom: 30px;
        overflow-x: hidden;
        width: 100%; /* Ensure it doesn't exceed the viewport */
    }

    .hero-section img {
        max-width: 100%; /* Prevent images from overflowing */
       
    }

    .testimonial {
        flex-direction: column;
        align-items: center;
        display: flex;
        overflow-x: hidden;
    }

    .testimonial-card {
        width: 90%; /* Adjust card width for smaller screens */
        margin: 0 auto; /* Center the cards */
    }

    .testimonial-card {
        width: 80vw;
        margin: 20px 0;
       margin-right: 20px;
       animation: scrollCards 18s linear infinite;

    }

    

    @keyframes scrollCards {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-200%);
        }
    }
.partners {
    padding: 40px 6%;

}

.partners .partner-logos {
    
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    justify-content: center;
    align-items: center;
    
}

.partners .partner-logos {
    grid-template-columns: 1fr 1fr; /* Adjust grid for smaller screens */
    gap: 20px;
}

.mission h2 {
    font-size: 1.5rem;
}

.mission p {
    font-size: 1rem;
    max-width: 90%;
}

.feedback {
    padding: 20px 5%;
    overflow-x: hidden;
}

.feedback h2 {
    font-size: 1.5rem;
    margin-top: 50px;
    margin-bottom: 50px;
}

.feedback .feedback-cards {
    gap: 40px;

}




.achieve {
    display: block;
    padding: 50px 9%;
    overflow-x: hidden; 
}



.achieve-text {
    width: 120%;
   
}

.achieve-text h2 {
    font-size: 2rem;
    width: 90%;
}
.achieve .computer {
   display: none;
}

.achieve-text h4 {
    font-size: 0.9rem;
}

.achieve .achieve-list {
    font-size: 0.9rem;
    margin: 3% 0;
}

.achieve .achieve-text {
    width: 100%; /* Ensure text doesn't overflow */
}

.transform {
    display: block;
    padding: 40px 9%;
}

.transform h2 {
    font-size: 1.8rem;
    max-width: 100%;
}


.transform .cta-bottom {
    text-align: left;
    margin: 0;
    margin-top: 20px;
    max-width: fit-content;

    
}

.feedback {
    padding: 20px; /* Adjust padding for smaller screens */
}

/* about us*/

.aboutus-section {
    padding: 10% 9%;
    margin: 0;
    height: auto; 
    width: 100%;
    text-align: center;
    overflow-x: clip; 
    position: relative;

}
.aboutus-section .aboutus-header {
    margin-top: 30%;
   
}
.aboutus-section::after {
    width: 600px;
    height: 600px;
}

.aboutus-section h2 {
    font-size: 2rem;
    width: 100%;
}

.founder-header {
    margin-top: 20%;
}

.founder-section {
    padding: 10% 10%;
    
}

.founder-section h2 {
    font-size: 2rem;
    width: 100%;
    text-align: center;

}

.founder-section h4 {
    text-align: center;
}

.founder-section .founder-contact {
    justify-content: center;
    align-items: center;
}

.founder-section p {
    padding-left: 0;
    text-align: center;
    
}    

.founder-section .founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.founder-section .founder-image img {
    position: relative;
    display: flex;
    padding: 0;
   
    width: 75%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    margin: 20px 20px 20px 20px;
    
}
 
}

/* Product Hunt Badge */
.product-hunt-badge {
    position: absolute;
    bottom: 80px; /* Move it above the socials */
    right: 1px;
    text-align: right;
}