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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
}


/* Logo */

img.img-fluid.logo-white {
    height: 200px;
}

img.logo-color {
    width: 260px;
}


/* Animated Background */

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #ffffff 100%);*/
    z-index: -2;
}

.hearts-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.heart {
    position: absolute;
    color: rgba(233, 30, 99, 0.3);
    animation: float 15s infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}


/* Navigation */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

nav.scrolled {
    padding: 0.7rem 5%;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-nav {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}


/* Hero Section */

.hero {
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    padding: 0rem 2% 4rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 10rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 50%, #ad1457 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
}

.hero-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.1);
    margin-top: 1rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #e91e63;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(233, 30, 99, 0.3);
    border-radius: 10px;
    color: #333333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #e91e63;
    background: rgba(255, 255, 255, 1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
    color: #666666;
    font-size: 0.9rem;
}


/* Social Proof Section */

.social-proof {
    padding: 5rem 5%;
    background: rgba(233, 30, 99, 0.05);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    position: relative;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #e91e63;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    color: #333333;
}

.author-info p {
    color: #666666;
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}


/* Features Section */

.features {
    padding: 5rem 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.feature p {
    color: #666666;
    line-height: 1.8;
}


/* How It Works */

.how-it-works {
    padding: 5rem 5%;
    background: rgba(233, 30, 99, 0.05);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.step h3 {
    margin-bottom: 1rem;
    color: #333333;
}

.step p {
    color: #666666;
}


/* Pricing Section */

.pricing {
    padding: 5rem 5%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.pricing-card.featured {
    border-color: #e91e63;
    transform: scale(1.05);
    color: #fff;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #e91e63;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333333;
}

.plan-price {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.plan-price span {
    font-size: 1rem;
    color: #666666;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.7rem 0;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-features li::before {
    content: 'âœ“';
    color: #e91e63;
    font-weight: bold;
}


/* FAQ Section */

.faq {
    padding: 5rem 5%;
    background: rgba(255, 255, 255, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    /*color: #0463c5;*/
    color: #000;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #e91e63;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #e91e63;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #b8b8b8;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}


/* CTA Section */

.final-cta {
    padding: 5rem 5%;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.4);
}


/* Footer */

footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8b8b8;
}


/* Responsive */

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .trust-indicators {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        padding-right: 1rem;
    }
    .hero-content p {
        padding-right: 2rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .trust-indicators {
        padding-right: 1rem;
    }
    .hero-form {
        padding: 0.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
}

.tooltip-box {
    display: none;
    /* Initially hidden */
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    position: absolute;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: auto;
    max-width: 300px;
    border-radius: 15px;
    font-size: 10px;
    text-align: center;
    white-space: normal;
}

@media (max-width: 600px) {
    .tooltip-box {
        max-width: 250px;
        /* Smaller width for mobile */
        font-size: 12px;
        /* Reduce font size */
        padding: 5px;
    }
}

.signup-form {
    float: left;
    width: 100%;
    margin: 0 auto;
}

.signup-form-two {
    width: 60%;
    margin: 0 auto !important;
    background: #f6f6f6;
    padding: 15px;
    border: 1px solid #B90075;
    border-radius: 15px;
}

.bg-field {
    background: #f3f3f3;
    padding: 10px;
    border-left: 2px solid red;
}

span.error {
    color: red;
    font-size: 12px;
}

@media only screen and (max-width: 991px) {
    .signup-form-two {
        width: 100%;
        margin: 0 auto !important;
        background: #f6f6f6;
        padding: 15px;
        border: 1px solid #B90075;
        border-radius: 15px;
    }
    .a.social_bt.google {
        width: 80% !important;
    }
    span.or-button::before {
        content: '';
        height: 2px;
        width: 10%;
        background: #e9e9e9;
        float: none;
        display: inline-flex;
        margin-right: 7px;
    }
    span.or-button::after {
        content: '';
        height: 2px;
        width: 10%;
        background: #e9e9e9;
        float: none;
        display: inline-flex;
        margin-left: 7px;
    }
    .home-second-content {
        position: relative;
        top: 20px !important;
    }
}

@media only screen and (max-width: 443px) {
    .a.social_bt.google {
        width: 80% !important;
    }
}

#compatibility-check {
    scroll-margin-top: 200px !important;
}


/*Slider Css Starts*/

.wrapper {
    padding: 0;
}

.slider {
    overflow: hidden;
    margin: 0px !important;
    padding: 0px;
}

.slider__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transform: translateX(var(--slider-offset));
    transition-property: transform;
    transition-duration: var(--slider-time);
    transition-timing-function: ease;
    will-change: transform;
}

.slider__item {
    flex: 1 0 100%;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: auto;
}

.slider__image {
    width: 100%;
    height: auto;
    transform: translateX(0);
    animation-delay: var(--slide-distortion-delay), var(--slide-reset-delay);
    animation-duration: var(--slide-distortion-time), var(--slide-reset-time);
    animation-fill-mode: forwards, forwards;
    animation-direction: normal, reverse;
}

.slider__image:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
}

.slider__image:nth-child(1) {
    clip-path: inset(0 0 calc(var(--rate) * 4) 0);
}

.slider__image:nth-child(2) {
    clip-path: inset(calc(var(--rate) * 1) 0 calc(var(--rate) * 3) 0);
}

.slider__image:nth-child(3) {
    clip-path: inset(calc(var(--rate) * 2) 0 calc(var(--rate) * 2) 0);
}

.slider__image:nth-child(4) {
    clip-path: inset(calc(var(--rate) * 3) 0 calc(var(--rate) * 1) 0);
}

.slider__image:nth-child(5) {
    clip-path: inset(calc(var(--rate) * 4) 0 0 0);
}

.slider__item--animating .slider__image:nth-child(1) {
    animation-name: animation-1, animation-1;
}

.slider__item--animating .slider__image:nth-child(2) {
    animation-name: animation-2, animation-2;
}

.slider__item--animating .slider__image:nth-child(3) {
    animation-name: animation-3, animation-3;
}

.slider__item--animating .slider__image:nth-child(4) {
    animation-name: animation-4, animation-4;
}

.slider__item--animating .slider__image:nth-child(5) {
    animation-name: animation-5, animation-5;
}

@keyframes animation-1 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50px);
        transform: translateX(-5vw);
    }
}

@keyframes animation-2 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-3vw);
    }
}

@keyframes animation-3 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(1vw);
    }
}

@keyframes animation-4 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(3vw);
    }
}

@keyframes animation-5 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-1vw);
    }
}

@keyframes slide {
    to {
        transform: translateX(-100%);
    }
}


/*Slider Css Ends*/

.home-second-content {
    position: relative;
    top: 70px;
    margin-bottom: 30px;
}

.form-control,
.btn {
    border-radius: 0.5rem;
}

.form-box {
    background-color: rgb(242, 242, 242);
    border-radius: 1rem;
    padding: 2rem;
}