.hover-effect .icon-circle,
.hover-effect .icon {
    transition: transform 0.3s ease-in-out;
}

.hover-effect:hover .icon-circle,
.hover-effect:hover .icon {
    transform: translateY(-10px);
}

.menu-icon {
    display: none;
}

@media (max-width: 740px) {
    .menu-icon {
        display: block;
        cursor: pointer;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.9);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 20;
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        margin: 10px 0;
        margin-left: 0 !important;
    }

    .flex-col-reverse {
        flex-direction: column-reverse;
    }
}




ul,
ol {
    list-style: none;

}

button {
    border: none;
    background: none;
    cursor: pointer;
    outline: none;

}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    outline: none;
}

* {
    font-family: 'poppinsregular';

}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}



.counter-item {
    transition: transform 0.3s;
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-value {
    font-size: 2.5rem;
    color: #1DEE7B;
}

.counter-label {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .counter-value {
        font-size: 1.8rem;
    }
}


#videoContainer {
    position: relative;
    background: #E5E5E5;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 35rem;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.play-icon {
    font-size: 4rem;
    color: white;
}





.features-section {
    margin: 78px;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    background-color: #1DEE7B;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
}

.icon {
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6c757d;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 10px;
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coming-soon-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #1DEE7B;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .features-section {
        padding: 5rem 2rem;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .features-section {
        padding: 6rem 3rem;
    }

    .features-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

#founders {
    margin: 48px 0;

}

#founders .content-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#founders h1 {
    font-size: 56px;
    color: #121514;
    font-weight: 300;
}

#founders p {
    font-size: 20px;
    color: #5D6561 !important;
    margin-top: 20px;
}

.zappq-color {
    color: #1DEE7B;

}

.button-zappq {
    background-color: #1DEE7B;
}

.slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide h3 {
    font-size: 14px;
    color: #000;
}

.slide p {
    font-size: 12px !important;
    color: #000;
    opacity: 60%;
    margin: 0 !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-image {}

.nav-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.nav-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 20px;
    color: white;
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .content-section {
        width: 100%;
        margin-bottom: 30px;
    }

    .slider-section {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}








#testimonial {
    margin: 48px 0;
}

#testimonial .top {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

#testimonial .top h3 {
    font-family: 'poppinsregular';
    font-size: 48px;
    color: #121514;
    text-transform: uppercase;
    margin-bottom: 38px;
    font-weight: 300;
    display: flex;
    justify-content: center;

}

#testimonial .top h3 span {
    display: flex;


}

#testimonial .top h3 span img:nth-child(1) {
    margin-left: 0;
}

#testimonial .top h3 span img {
    margin-left: -35px;
}

#testimonial .top h3 b {
    color: #1DEE7B;
}

#testimonial .top p {

    font-size: 20px;
    font-weight: 400;
    color: #5D6561;
    margin-bottom: 38px;
    line-height: 1.5;

}




.slick-dots li button:before {
    font-size: 12px;
    color: #cbd5e0;
}

.slick-dots li.slick-active button:before {
    color: #4299e1;
}

.testimonial-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 45px;
    margin: 10px;
    height: 300px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card h3 {
    font-size: 16px;
    color: #000;
    opacity: 60%;
}

.testimonial-card .quote-text {
    font-style: italic;
    font-size: 20px;
    color: #000;
    margin-top: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;

}

.user-info img {
    margin-right: 18px;
}

.user-info h4 {
    font-size: 14px;
    color: #000;
}

.user-info p {
    font-size: 12px;
    color: #000;
    opacity: 60%;
}



#faq {
    background: url(../images/faq\ \(1\).png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 48px;
    margin: 68px 0;
}

#faq .top h3 {
    font-size: 46px;
    font-weight: 400;
    color: #000;
    width: 45%;
}

#faq .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 68px;

}

#faq .bottom .left {
    width: 25%;
}

#faq .bottom .right {
    width: 70%;
}








.faq-icon {
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 300px;
}





#contact {
    margin: 48px 0;

}

#contact .top {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 38px;
}

#contact .top h3 {
    font-size: 46px;
    font-weight: 400;
    color: #000;
    margin-bottom: 28px;
}

#contact .top p {
    font-size: 24px;
    font-weight: 400;
    color: #5D6561;
}

#contact .bottom {
    margin-bottom: 68px;

}

#contact .bottom .form-container {
    width: 90%;
}

#contact .bottom .form-container input::placeholder {
    color: #5D6561;
    opacity: 50%;
}

#contact .bottom .form-container textarea::placeholder {
    color: #5D6561;
    opacity: 50%;
}

#contact .bottom .form-container label {
    color: #121514;
    font-size: 20px;
}

#contact .bottom .form-container button {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#contact .bottom .connect h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}

#contact .bottom .contact-option-item a {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 20px;
}

#contact .bottom .contact-option-item a i {
    color: #000;
}

#contact .bottom .contact-option-item a span {
    margin-left: 12px;
    font-size: 20px;
    color: #5D6561;
    font-family: 'poppinsitalic' !important;

}

#contact .bottom .contact-option-item a span:hover {
    text-decoration: underline;
}

#contact .bottom .hashtags {
    display: flex;
    flex-wrap: wrap;
    margin: 34px;
    color: #1DEE7B;
    font-size: 20px;
}


.footer {
    background-color: #000;
    color: white;
    padding: 2rem 0;
    width: 100%;
}

footer p {
    font-size: 16px;
    color: #fff;

}

footer .sponsor {
    margin-right: 100px;
}


.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00BFFF;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.copyright {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 28px;


}

hr {
    border: 1px solid #444444;
}

.social-icon {
    width: 36px;

    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon img:hover {
    color: #00BFFF;
}

.nav-pill {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.support-links button {
    color: #0DC7D8;
    text-decoration: none;
    margin-right: 15px;
    font-size: 16px;
}

.support-links button:hover {
    text-decoration: underline;
}

footer .media {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 18px;
}

footer .media div {
    font-size: 16px;
    margin-left: 60px;
}

footer .media div h3 {
    color: #6F7773;
}





@media (max-width: 1400px) {
    .wrapper {
        max-width: 1200px;

    }



}

@media (max-width: 1250px) {
    .wrapper {
        max-width: 1000px;

    }

    #testimonial .top h3 {
        display: block;
        font-size: 32px;
    }

    #testimonial .top h3 span {
        display: none;
    }


}

@media (max-width: 1050px) {
    .wrapper {
        max-width: 800px;

    }
}

@media (max-width: 920px) {
    #faq .bottom .right {
        width: 100%;
    }

    #faq .bottom .left {
        display: none;
    }

    footer .media div {
        margin-top: 38px;
    }

    #contact {
        padding: 48px;
    }

    #contact .top {
        width: 100%;
    }

    #contact .top h3 {
        font-size: 26px;
    }

    #contact .top p {
        font-size: 16px;
    }

}










.loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 80px;
    height: 80px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.slider-card {
    min-width: 100%;
    flex: 0 0 100%;
}



@media (min-width: 768px) {
    .slider-card {
        min-width: 50%;
        flex: 0 0 50%;
    }
}

@media (min-width: 992px) {
    .slider-card {
        min-width: 33.333%;
        flex: 0 0 33.333%;
    }
}

@media (min-width: 1200px) {
    .slider-card {
        min-width: 25%;
        flex: 0 0 25%;
    }
}



.logo-card {
  
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card:hover {
    transform: translateY(-5px);
}

.logo-example {
    width: 220px;
    height: 220px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-example img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.header-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 50px;
}