/* @font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helovitica/helveticanowtext-black-demo.ttf') format('woff');
} */

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helovitica/helvetica-light-587ebe5a59211.ttf') format('woff');
}

:root {
    --font-family: 'Helvetica';
    --bg-color: #F2EBE3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

.primary-button {
    border-radius: 110px;
    padding: 15px 50px;
    background: #168C7E;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    color: #FFFFFF;
    border: none;
    outline: none;
}

.secoundary-button {
    border-radius: 110px;
    padding: 15px 40px;
    border: 1px solid #095E54;
    background-color: transparent;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    color: #095E54;
}

header {
    background: var(--bg-color);

}

.navbar-menu-items {
    list-style: none;
    display: flex;
    gap: 40px;
}

.navbar-menu-items li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0%;
}

.contact-us-btn {
    border: 1px solid #000000;
    background-color: transparent;
    width: 118;
    border-radius: 45px;
    padding: 10px 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    vertical-align: middle;
    color: #000000;

}


/* hero-section */

.hero-section {
    background: var(--bg-color);
    padding: 100px 0;
    height: 900px;
}

.hero-section .hero-section-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s linear;
}

.hero-section .hero-section-inner h1 {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 70px;
    line-height: 140%;
    letter-spacing: 1%;
    text-align: center;
    color: #000000;

}

.hero-section .hero-section-inner p {
    margin-bottom: 50px;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
    color: #000000;


}

@media (min-width:768px) {
    .hero-section .hero-section-inner p {
        max-width: 70%;
    }
}

.start-and-watch-free-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-bottom-frame {
    position: absolute;
    width: 100%;
    text-align: center;
    transform: translate(0px, -50%);
}

.how-it-works-section {
    padding: 50px 0;
    margin-top: 25rem;
}

.heading-section {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.heading-section .left-heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: self-start;
}

.heading-section span {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;

}

.heading-dot {
    width: 14px;
    height: 14px;
    background: #168C7E;
    border-radius: 50%;
}


.heading-section h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 3rem;
    line-height: 140%;
    letter-spacing: 1px;
    vertical-align: middle;

}

.heading-section p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 1%;
    text-align: center;

}

.how-it-works-section .how-it-works-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    border-left: 1px solid #168C7E;
}

.how-it-works-section .how-it-works-card span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;
    color: #168C7E;
}

.how-it-works-section .how-it-works-card h4 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1%;
    color: #000000;

}

.how-it-works-section .how-it-works-card p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 1%;
    vertical-align: middle;

}

.heading-section-margin {
    margin-bottom: 50px;
}


.features-section {
    padding: 100px 0;
}

.features-section .feature-container {
    background: #F2EBE3;
    padding: 40px;
    border-radius: 20px;
}

.features-section .feature-container .feature-col {
    display: flex;
    padding: 20px;
    border-radius: 20px;
    gap: 27px;
    background: #FFFFFF;
    flex-direction: column;

}

.features-section .feature-container .feature-col .feature-col-top {
    display: flex;
    align-items: self-start;
    flex-direction: column;
    gap: 20px;

}

.features-section .feature-container .feature-col .feature-col-bottom img {
    width: 100%;
}

.features-section .feature-container .feature-row {
    --bs-gutter-y: 24px;
}

.who-it-is-for-section .swiper {
    touch-action: pan-y;
}

.who-it-is-for-section .slide-inner {
    background-color: #F2EBE3;
    border-radius: 20px;
    overflow: hidden;
}

.who-it-is-for-section .slide-inner img {
    width: 100%;
}

.who-it-is-for-section .slide-inner h4 {
    padding: 20px 0;
    text-align: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1%;
    color: #000000;

}

.testmonials-section {
    padding-top: 100px;
}

.testmonial-swiper {
    overflow: hidden;
    padding-bottom: 200px;
    position: relative;
}

.testmonial-swiper .swiper-wrapper.marquee-swiper {
    transition-timing-function: linear;
    align-items: center;
}

.testmonial-swiper .testmonial-swiper-inner {
    box-shadow: 0px 2px 6px 0px #1B1E3E14;
    border: 1px solid #EBEBF0;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 29px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.testmonial-swiper .testmonial-swiper-inner .testmonial-swiper-left img {
    border-radius: 100%;
    width: 48px;
    height: 48px;
}

.testmonial-swiper .testmonial-swiper-inner .testmonial-swiper-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testmonial-swiper .testmonial-swiper-inner .testmonial-swiper-right h4 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;

}

.testmonial-swiper .testmonial-swiper-inner .testmonial-swiper-right p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;

}

.testmonial-swiper .testmonial-swiper-inner .testmonial-swiper-right span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0%;
    color: #168C7E;
}

.testmonial-swiper .swiper-top {
    margin-bottom: 50px;
}

.swiper-left-gradient,
.swiper-right-gradient {
    position: absolute;
    top: 0;
    z-index: 99;
}

.swiper-right-gradient {
    right: 0;
}


/* pricing */
.pricing-section {
    padding-bottom: 100px;
}

.pricing-section .pricing-header {
    text-align: center;
    margin: 40px 0;
}

.pricing-section .pricing-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-section .pricing-header p {
    font-size: 1.1rem;
    color: #666;
}

.pricing-section .toggle-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.pricing-section .toggle-switch label {
    margin: 0 10px;
    font-weight: bold;
}

.pricing-section .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.pricing-section .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-section .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #095e54;
    transition: 0.4s;
    border-radius: 34px;
}

.pricing-section .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.pricing-section input:checked+.slider {
    background-color: #095e54;
}

.pricing-section input:checked+.slider:before {
    transform: translateX(26px);
}

.pricing-section .pricing-card {
    border: none;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing-section .pricing-card-top {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #168C7E;
}

.pricing-section .pricing-card.free {
    background-color: #F7F9FA;
}

.pricing-section .pricing-card.standard {
    background-color: #F2EBE3;
    position: relative;
    padding: 0;
}

.pricing-card-standard {
    padding: 20px;
}

.pricing-section .pricing-card.custom {
    background-color: #F7F9FA;
}

.pricing-section .pricing-card .badge {
    background-color: #095E54;
    color: white;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    display: block;
    width: 100%;
    height: 32px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 1%;
    text-align: center;
    align-content: center;

}

.pricing-section .pricing-card h2 {
    color: #168C7E;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 1%;

}

.pricing-section .pricing-card .price {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: 1%;
    color: #22271F;
}

.pricing-section .pricing-card p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 1%;
}

.pricing-section .pricing-card .price span {
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

.pricing-section .pricing-card ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 16px;
}

.pricing-section .pricing-card ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-section .pricing-card ul li.disable-list {
    opacity: 0.5;
}



.pricing-section .pricing-card button {
    width: 100%;
    margin-top: 70px;
    border-radius: 110px;
    padding: 15px 40px;
}

.pricing-section .pricing-card .btn:hover {
    background-color: #218838;
}

.pricing-section .left-heading {
    width: 100%;
    align-items: center;
}

/* FAQ */

.faq-section {
    padding-bottom: 100px;
}

.faq-container {
    position: relative;
    padding: 60px 0;
}

.faq-container::before {
    content: '';
    box-shadow: 0px 0px 4px 1px #00000026;
    background: #FAFBFF;
    border-radius: 16px;
    height: 100%;
    width: 100%;
    width: 60%;
    position: absolute;
    right: 0;
    top: 0;
}

.faq-container h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.faq-question-col {
    background-color: white;
    position: relative;
    z-index: 999;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 24px 16px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
    /* border-bottom: 1px solid #dee2e6; */
    box-shadow: 0px 0px 1px 1px #00000026;
    gap: 24px;
}

.faq-question::before {
    content: '';
    width: 24px;
    height: 24px;
    background: #168C7E66;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    flex-shrink: 0;
}

.faq-question.active {
    background-color: #FAFBFF;
}

.faq-question.active::before {
    background-color: #168C7E;
}

.faq-answer-container {
    padding: 15px;
    min-height: 100%;
    position: relative;
    z-index: 999;
}



.faq-answer {
    opacity: 0;
    /* max-height: 0; */
    overflow: hidden;
    transition: opacity 0.4s linear, max-height 0.4s linear;
    position: absolute;
}



.faq-answer p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1%;
    color: #000000;
    transform: translateX(-100%);
    transition: transform 0.4s linear;
}

.faq-answer h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 1%;
    color: #18191F;
    transform: translateX(-100%);
    transition: transform 0.4s linear;
}


.faq-answer.active {
    opacity: 1;
    /* max-height: 500px; */
    display: flex;
    gap: 30px;
    flex-direction: column;
    position: relative;
}

.faq-answer.active h3,
.faq-answer.active p {
    transform: translateX(0);
}


.faq-question::after {
    content: '';
    font-size: 1.2rem;
    margin-left: auto;
    transition: transform 0.3s;
    background: url('../img/disable-icon.svg') no-repeat;
    width: 24px;
    height: 24px;
}

.faq-question.active::after {
    transform: rotate(90deg);
    background: url('../img/dropdown-icon.svg') no-repeat;
}


/*  */
.contact-us-section {
    padding-bottom: 100px;
}

.content-area {
    background-color: #168C7E;
    border-radius: 28px;
    padding: 60px 87px;
}

.content-area h2 {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 1%;
    color: #FFFFFF;

}

.content-area h2 span {
    font-weight: 700;
}


.contact-us-button {
    margin-top: 80px;
    display: flex;
    gap: 30px;
}

.Start-button {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
    color: #168C7E;
    background-color: white;
    padding: 15px 50px 15px 50px;
    border: none;
    border-radius: 110px;
}

.Watch-button {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 1%;
    color: white;
    background-color: transparent;
    padding: 15px 40px 15px 40px;
    border: 1px solid white;
    border-radius: 110px;
}

/* footer */
footer {
    padding-bottom: 100px;
}

footer .footer-logo-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: self-start;
    height: 100%;
}

footer .footer-logo-col .logo-and-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: self-start;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #7E7F88;
}


footer .footer-logo-col .social-link ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* footer .footer-logo-col .social-link ul li a {} */

footer .footer-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

footer .footer-body h5 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1B1E3E;

}

footer .footer-body ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-direction: column;

}

footer .footer-body ul li a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #7E7F88;
    text-decoration: none;
}

footer .footer-body ul li a strong {
    color: #000000;
}

footer .footer-body ul li a span {
    width: 30.479999542236328px;
    height: 16px;
    left: 96.39px;
    border-radius: 18px;
    background: #168C7E;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 8px;
    line-height: 8px;
    letter-spacing: 0%;
    color: #FFFFFF;
    display: inline-block;
    text-align: center;
    align-content: center;
}


.overflow-hidden,
.hero-section,
.how-it-works-section,
.features-section,
.who-it-is-for-section {
    overflow: hidden !important;
}

@media (max-width:1400px) {
    .hero-bottom-frame {
        display: none;
    }

    .how-it-works-section {
        margin-top: 0;
    }

    .hero-section {
        height: 100%;
    }
}




/* privacy-policy css start here */


.privacy-policy-content {
    padding: 4rem 0;
    background-color: #fff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    /* font-family: var(--font-family); */
    color: #333;
    line-height: 1.6;
}

.privacy-policy-navbar {
    background-color: #fff !important;
}

.privacy-policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-policy-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.privacy-policy-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    margin-right: 0;
}

.info-type-card {
    background: #f8f9fa;
    border-left: 4px solid #168C7E;
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-type-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.usage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .usage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.usage-item {
    display: flex;
    gap: 1rem;
}

.usage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #168c7e26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #168C7E;
    font-size: 1.2rem;
}

.usage-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 576px) {
    .contact-methods {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #168C7E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.consent-notice {
    background: #e3f2fd;
    border-left: 4px solid #3498db;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    border-radius: 0 6px 6px 0;
}

.consent-notice i {
    color: #3498db;
    margin-top: 2px;
    font-size: 1.2rem;
}

/* Additional styles for new sections */
.retention-list,
.security-content,
.transfer-content,
.cookie-content,
.changes-content {
    margin: 1.5rem 0;
}

.retention-item,
.security-item,
.transfer-item,
.cookie-item,
.changes-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.retention-item i,
.security-item i,
.transfer-item i,
.cookie-item i,
.changes-item i {
    color: #168C7E;
    font-size: 1.1rem;
    margin-top: 3px;
}

.note-box,
.action-box,
.warning-box {
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.note-box {
    background: #e3f2fd;
    border-left: 4px solid #3498db;
}

.action-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.warning-box {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.note-box i {
    color: #3498db;
}

.action-box i {
    color: #4caf50;
}

.warning-box i {
    color: #f44336;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.right-icon {
    width: 50px;
    height: 50px;
    background: #168c7e26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #168C7E;
    font-size: 1.2rem;
}

.right-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.sharing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .sharing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sharing-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sharing-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #168c7e26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #168C7E;
    font-size: 1.2rem;
}

.sharing-text h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');