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

body {
    color: #ffffff;
    background: linear-gradient(135deg, #2450b6, #d56bff);

}

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

.logo {
    font-size: 15px;
    font-weight: bold;
    font-family: 'Ubuntu', sans-serif;
}

.social-icon i {
    font-size: 20px; /* Adjust the icon size */
    margin-left: 5px; /* Optional spacing */
    padding-left: 10px;

}

.logo-container {
    display: flex;
    align-items: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.download-btn {
    background: #fff;
    color: #6b24b6;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
}

.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 20px;
}

.hero-text {
    max-width: 500px;
    text-align: center;

}

.hero-text h1 {
    font-size: 44px;
    margin-bottom: 20px;
    justify-self: center;
    text-align: center;
}

.hero-text h2 {
    font-size: 45px;
    margin-bottom: 20px;
    justify-self: center;
    text-align: center;
}

.hero-text p {
    color: #ffffffbd;
    justify-self: center;
    text-align: center;
}

.user-stats {
    display: flex;
    max-width: 380px;
    flex-direction: column; /* Stack items vertically */
    align-items: start;
    gap: 10px; /* Space between items */
}

.store-buttons img {
    height: 50px;
    margin: 10px;
}

.hero-image img {
    width: 380px;
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
}

.features {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
    color: #333;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.features h3 {
    margin-bottom: 20px;
    color: #0000009a;
}

.features span {
    color: #6b24b6;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    width: 250px;
    text-align: center;
    color: #333;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center contents vertically */
}

.card img {
    display: block;
    margin: 0 auto; /* Center image horizontally */
    max-width: 60%; /* Ensure image does not exceed card width */
    height: auto; /* Maintain aspect ratio */
}

.card h3 {
    font-size: 21px;
    margin-bottom: 18px;
    margin-top: 10px;
}

.card p {
    font-size: 18px;
    color: #666;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    line-height: 1.5;

}

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

    .hero-image img {
        width: 100%;
    }

    .feature-cards {
        flex-direction: column;
        justify-content: center;
        gap: 20px
    }

    .user-stats {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .app-logo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        align-self: center;
        margin-left: 20px;
        align-items: center;
        align-content: center;
        
    }
    .hide-on-mobile {
        display: none;
    }

    .feature-shortcuts-text {
        text-align: center;
    }
}

.app-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    
}

/* Footer styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #333);
    padding: 40px 20px;
    color: #ddd;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-info {
    flex: 1 1 200px;
    color: #aaa;
    text-align: left; /* Left-align on wide screens */
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-logo {
    flex: 1 1 100px;
    text-align: center;
}

.footer-contact {
    flex: 1 1 200px;
    color: #ddd;
    text-align: left;
}

.footer-contact p {
    margin: 5px 0;
    margin-left: 15px;
    font-size: 15px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

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

.footer a {
    color: #90c1e6;
    text-decoration: none;
}

.footer a:hover {
    color: #b2e8e4;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center; /* Center-align items on mobile */
        text-align: center;
    }

    .footer-info, .footer-logo, .footer-contact {
        flex: 1 1 100%;
        text-align: center; 
        margin-bottom: 10px;
    }

    .footer-links {
        justify-content: center; /* Center-align links */
    }

    .mySlides img {
        width: 100%; /* Make images responsive */
        height: auto; /* Maintain aspect ratio */
        max-width: 600px; /* Optional max width for larger screens */
        margin: auto; /* Center images */
    }
}

.spacer {
    height: 20px; /* Adjust the height as needed */
}

.ubuntu-font {
    font-family: 'Ubuntu', sans-serif;
}

@keyframes colorCycle {
    0% { color: #98b8fc; }
    25% { color: #fac4cb; }
    50% { color: #c2fbed; }
    75% { color: #dee7f6; }
    100% { color: #98b8fc; }
}

.color-changing-text {
    font-family: 'Ubuntu', sans-serif;
    animation: colorCycle 10s ease-in-out infinite;
    text-align: center;
}

hr.solid {
    border: 0.01px solid #ffffff44;
  }


  * {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgb(0, 0, 0);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(157, 114, 243, 0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #9483f4;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot-container {
    text-align: center;
  }

.active, .dot:hover {
  background-color: #f2f2f2d6;
}


@keyframes scale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-container.scale {
    animation-name: scale;
    animation-duration: 1s;
}

.feature-summary {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.feature-summary-content {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap; /* Prevent wrapping to keep them side by side */
}

.feature-summary-image {
    flex: 1;
    
}

.feature-summary-video {
    flex: 1;
    width: 60%;
}

.feature-summary-text {
    flex: 1;
    color: #333;
}

.feature-summary-text h2 {
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.feature-summary-text ul {
    list-style-type: disc; /* Hide the list dots */
    padding-left: 0;
    text-align: left;
}

.feature-summary-text li {
    position: relative; /* Positioning for custom bullets */
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 15px;
    font-size: 17px;
    font-family: 'Ubuntu', sans-serif;


}



/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-summary-content {
        flex-direction: column;
        text-align: center;
    }
    .feature-summary-image video {
        max-width: 100%;
    }
    .feature-summary-text ul {
        list-style-type: none; 
        padding-left: 20px;
        padding-left: 0; 
        text-align: left;

    }

    .feature-summary-video {
        flex: 1;
        width: 80%;
    }
}
.faq {
    padding: 40px;
    background-color: #ffffff;
}

.faq-header {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    color: #000;
}

.faq-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.faq-column {
    flex: 1;
    max-width: 450px;
    min-width: 300px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    background-color: #ffffff;
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: #fafafa;
    font-size: 0.95em;
    color: #555;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Optional: add a hover effect for the question button */
.faq-question:hover {
    background-color: #f1f1f1;
}


.heyimg {
    background: #ffffff;
    border-radius: 0px;
    padding: 0px;
    width: 250px;
    text-align: center;
    color: #333;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center contents vertically */
}

.feature-shortcuts {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.feature-shortcuts-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.feature-shortcuts-text {
    flex: 1;
    min-width: 300px;
}

.feature-shortcuts-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-shortcuts-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.feature-shortcuts-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.feature-shortcuts-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.centered-icon {
    display: block;
    margin: 0 auto;
    width: 16%;
    height: auto;
}

