/* ===============================
   RESET & BASE STYLES
================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --themefont: "Plus Jakarta Sans", sans-serif;
    --textclr: #4F5E64;
    --btnclr: #ff671f;
    --hoverbtn: #B64A2E;
    --blackclr: #000;
    --whiteclr: #fff;
    --darkgrey: #6d6d6d;
    --lightgray: #e0e0e0;
    --sectionbg: #fff7f0;
    --themeclr: #ff671f;
    --white: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--themefont);
    line-height: 1.5;
}

/* ===============================
   TYPOGRAPHY
================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px;
    font-weight: 600;
}
h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
}

h3 {
    font-size: clamp(1.125rem, 3.2vw, 1.125rem);
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.125rem, 2.6vw, 1.375rem);
    line-height: 1.35;
}

h5 {
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    line-height: 1.4;
}

h6 {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.4;
}

p {
    margin-bottom: 0px;
}

/* ===============================
   LINKS & BUTTONS
================================= */

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

ul,
ol {
    list-style: none;
    padding-left: 0px;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1240px;
}

header {
    position: sticky;
    top: 0px;
    z-index: 9999;
    /* background: #fff; */
    padding: 2px 0px;
}

/* Base Button */
.nav-btn {
    padding: 8px 18px !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* OUTLINE BUTTON */
.nav-btn-outline {
    border: 1px solid #ff671f;
    color: #ff671f !important;
    text-align: center;
}

.rounded-pill {
    border-radius: 8px !important;
}

.nav-btn-outline:hover {
    background: linear-gradient(135deg, #ffb347, #ff671f) !important;
    color: #fff !important;
}

/* FILLED BUTTON (FIXED) */
.nav-btn-filled {
    background: linear-gradient(135deg, #ffb347, #ff671f);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #fff !important;
    border: none;
    transition: all 0.4s ease;
    text-align: center;
}

.navbar-brand {
    width: 50px;
}

.btn-success {
    background: linear-gradient(135deg, #ffb347, #ff671f) !important;
    border: none;
}

/* HOVER EFFECT */
.nav-btn-filled:hover {
    background-position: left bottom;
    background: linear-gradient(135deg, #ffb347, #ff671f) !important;
}

/* Hover lift */
.nav-btn:hover {
    transform: translateY(-2px);
}

a.nav-link {
    padding: 5px 1rem !important;
    font-size: .875rem;
    font-weight: 600;
    border-radius: 100vmax;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--themeclr);
    background: #ff671f1a !important;
}

.navbar-nav .nav-link:hover {
    color: var(--themeclr) !important;
    background: #ff671f1a !important;
}

.family-tree-nav {
    background: var(--white);
    padding: 0rem 10px;
    border-radius: 8px;
    border: 1.4px solid #E2E8F0;
    margin-top: 0rem;

}

.main-landing-banner {
    background: #1f1f1f;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.main-landing-banner .banner-wrapper {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

/* LEFT SIDE */
.main-landing-banner .banner-left {
    width: 50%;
}

.main-landing-banner .banner-content {
    max-width: 500px;
}

.main-landing-banner .logo-icon {
    font-size: 30px;
    color: #7ed321;
    margin-bottom: 20px;
}

.main-landing-banner h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.main-landing-banner p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
}
.info-section p {
    font-size: 14px;
}

.main-landing-banner .banner-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    padding: 10px 28px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.main-landing-banner .banner-btn:hover {
    background-position: left bottom;
    transform: translateY(-2px);
}

.btn {
    transform: translateY(-2px);
}

/* RIGHT SIDE */
.main-landing-banner .banner-right {
    width: 50%;
}

.main-landing-banner .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.main-landing-banner .img-box {
    overflow: hidden;
    border-radius: 10px;
}

.main-landing-banner .img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.main-landing-banner .img-box:hover img {
    transform: scale(1.1);
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
    .main-landing-banner .banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-landing-banner .banner-left,
    .main-landing-banner .banner-right {
        width: 100%;
    }

    .main-landing-banner .banner-content {
        margin: 0 auto;
    }

    .main-landing-banner h1 {
        font-size: 32px;
    }

    .main-landing-banner .banner-right {
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .main-landing-banner {
        padding: 50px 0;
    }

    .main-landing-banner h1 {
        font-size: 26px;
    }

    .main-landing-banner p {
        font-size: 14px;
    }

    .main-landing-banner .img-box img {
        height: 150px;
    }
}

.top-running-bar {
    background: #0f5f73;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
}

.top-running-bar .marquee {
    width: 100%;
    overflow: hidden;
}

.top-running-bar .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 15s linear infinite;
}

.top-running-bar a {
    color: #fff;
    text-decoration: underline;
    margin-left: 10px;
}

/* Animation */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.info-section {
    background: #fff;
}

/* Icon style */
.info-section .icon {
    width: 50px;
    height: 50px;
    background: navajowhite;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.sectionbg {
    background: var(--sectionbg) !important;
}

.feature-section {
    background: var(--sectionbg);
    color: var(--blackclr);
}

/* Text */
.feature-section p {
    color: var(--blackclr);
    font-size: 13px;
}

/* Box */
.feature-box {
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    /* height: 100%; */
}

/* Icons */
.feature-box .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Icon Colors */
.icon.green {
    background: navajowhite;
    color: #fff;
}

.icon.blue {
    background: #1e88a8;
    color: #fff;
}

.icon.light {
    background: #e5e5e5;
    color: #333;
}

/* Heading */
.feature-box h5 {
    line-height: 1.5;
    margin-bottom: 5px;
        font-weight: 700;
}

/* Hover effect */
.feature-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.main-footer {
    /* background: #f0eee9; */
    background: #0f0f0f;
    padding: 60px 0 20px;
    color: #555;
}

.logo-box img {
    width: 100px;
    /* mix-blend-mode: multiply; */

}

/* Logo */
.footer-logo h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Headings */
.main-footer h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

/* Links */
.main-footer ul {
    list-style: none;
    padding: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer p {
    color: var(--white);
}

.main-footer ul li a {
    text-decoration: none;
    color: var(--white);
    transition: 0.3s;
    font-size: .875rem;
}

.main-footer ul li a:hover {
    color: #ff671f;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.footer-links a {
    margin-left: 15px;
    text-decoration: none;
    color: var(--white);
    transition: 0.3s;
}
.footer-links a:hover {
    color: #ff671f;
}

.footer-links a:hover {
    color: linear-gradient(135deg, #ffb347, #ff671f);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1c1c1c;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Glow Effect */
.social::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    top: 100%;
    left: 0;
    transition: 0.4s;
    z-index: 0;
}

.social i {
    position: relative;
    z-index: 1;
}

/* Hover Animation */
.social:hover::before {
    top: 0;
}

.social:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Brand Colors (optional subtle glow) */
.social.fb:hover {
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social.ig:hover {
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social.tw:hover {
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social.ln:hover {
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.contact-box {
    background: transparent;
    padding: 0px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    min-width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
}

.contact-item .text .label {
    font-size: 12px;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-item .text .value {
    margin: 0;
    color: var(--white);
    font-size: 14px;
}

/* Hover Effect */
.contact-item:hover {
    transform: translateX(5px);
}

.testimonial-section {
    background: #f8f9fa;
}

/* Card */
.swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* Image */
.user-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 5px;
}

/* Name */
.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 0px;
}

/* Stars */
.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Text */
.testimonial-card p {
    font-size: 14px;
    color: #666;
}

/* Swiper spacing */
.swiper {
    padding-bottom: 40px;
}

/* Pagination */
.swiper-pagination-bullet {
    background: linear-gradient(135deg, #ffb347, #ff671f);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-slide {
    /* opacity: 0.6; */
    transform: scale(0.9);
    transition: 0.4s;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.herosection {
    padding-top: 1rem;
    padding-bottom: 1.875rem;
    background: linear-gradient(173deg, rgba(255, 255, 255, 0.7) 15%, #ff671f30 75%, #ff671f24 90%);
}

#type-above {
    color: var(--headingclr);
    font-size: 3rem;
    line-height: 60px;
    font-style: normal;
    font-weight: 800;
}

@media (max-width:575px) {
    #type-above {
        color: var(--headingclr);
        font-size: 2rem;
            line-height: 40px;
        font-style: normal;
        font-weight: 800;
    }
}

#type {
    color: var(--headingclr);
    font-size: 2rem;
    line-height: 60px;
    font-weight: 800;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    border-right: 5px solid black;
    animation: typing 3s steps(20, end) infinite, blink-caret 0.7s step-end infinite;
}

@keyframes typing {

    0%,
    10% {
        width: 0;
    }

    90%,
    100% {
        width: 70%;
    }
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

.hero-content p {
    font-size: 14px;
    color: #4F5E64;
    line-height: 24px;
    word-spacing: 3px;
}

.hero-image {
    background-image: url(../images/bg-banner.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    position: relative;
}


.hero-img {
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.hero-img>img {
    width: 100%;
    border-radius: 50% !important;
    height: 100%;
    object-fit: cover;
}

.central {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    /* transform: translate(-50%, -50%); */
    z-index: 10;
    animation: floatCenter 8s ease-in-out infinite alternate;
}

.herosec-img1,
.herosec-img2,
.herosec-img3,
.herosec-img4,
.herosec-img5,
.herosec-img6 {
    position: absolute;
    display: block;
    /* if they're <img> elements */
    object-fit: contain;
    border-radius: 50% !important;
    z-index: 15;
    pointer-events: none;
    /* optional so they don't block clicks */
}

.herosec-img1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
}

.herosec-img2 {
    width: 100px;
    height: 100px;
    top: 5%;
    right: 15%;
}

.herosec-img3 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 5%;
}

.herosec-img4 {
    width: 100px;
    height: 100px;
    bottom: 5%;
    right: 15%;
}

.herosec-img5 {
    width: 100px;
    height: 100px;
    top: 25%;
    left: 5%;
}

.herosec-img6 {
    width: 120px;
    height: 120px;
    bottom: 35%;
    right: 6%;
}

.pages {
    margin-top: 10px;
}


@keyframes floatCenter {
    0% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-18px) rotate(-2deg);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0) rotate(0deg);
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(25px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes floatDiagonal1 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes floatDiagonal2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-25px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes wobbleSoft {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    33% {
        transform: rotate(2deg) translate(10px, -10px);
    }

    66% {
        transform: rotate(-2deg) translate(-10px, 10px);
    }

    100% {
        transform: rotate(0deg) translate(0, 0);
    }
}

@keyframes circleFloat {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }

    75% {
        transform: translate(0, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes bounceFloat {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-18px);
    }

    60% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes tiltSwing {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.herosec-img1 {
    animation: floatLeftRight 22s ease-in-out infinite;
    animation-delay: 0.4s;
}

.herosec-img2 {
    animation: floatUpDown 18s ease-in-out infinite;
    animation-delay: 1s;
}

.herosec-img3 {
    animation: floatDiagonal1 20s ease-in-out infinite alternate;
    animation-delay: 0.6s;
}

.herosec-img4 {
    animation: floatDiagonal2 15s ease-in-out infinite alternate;
    animation-delay: 1.4s;
}

.herosec-img5 {
    animation: wobbleSoft 25s ease-in-out infinite;
    animation-delay: 0.2s;
    transform-origin: center center;
}

.herosec-img6 {
    animation: circleFloat 30s linear infinite;
    animation-delay: 0s;
}

.contact-section {
    background: var(--sectionbg);
    /* background: #fff; */
}

.contact-box {
    text-align: center;
    background: #ffffffe6;
    border-radius: 15px;
    height: auto;
    transition: transform .3s;
    box-shadow: 0 4px 8px #0000001a;
    padding: 35px 20px !important;
    }
    
    .contact-section p {
        line-height: 35px;
        word-spacing: 3px;
        font-size: 14px;
}

.floating-field {
    position: relative;
    margin-bottom: 20px;
}

.floating-field input,
.floating-field textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 14px 12px;
    font-size: 14px;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.with-icon {
    position: relative;
}

.with-icon input,
.with-icon textarea {
    padding-left: 40px;
}

.floating-field input:focus,
.floating-field textarea:focus,
.with-icon input:focus,
.with-icon textarea:focus {
    border-color: #ff671f;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #888;
    transition: 0.3s;
    font-size: 14px;
}

.textarea-field .input-icon {
    top: 18px;
    transform: none;
}

.floating-field label {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #888;
    background: #fff;
    padding: 0 5px;
    transition: 0.3s;
    pointer-events: none;
}

.textarea-field label {
    top: 18px;
    transform: none;
}

.floating-field input:focus+label,
.floating-field input:not(:placeholder-shown)+label,
.floating-field textarea:focus+label,
.floating-field textarea:not(:placeholder-shown)+label,
.with-icon input:focus+label,
.with-icon input:not(:placeholder-shown)+label,
.with-icon textarea:focus+label,
.with-icon textarea:not(:placeholder-shown)+label {
    top: -8px;
    font-size: 12px;
    color: #ff671f;
}

.with-icon input:focus~.input-icon,
.with-icon input:not(:placeholder-shown)~.input-icon,
.with-icon textarea:focus~.input-icon,
.with-icon textarea:not(:placeholder-shown)~.input-icon {
    top: -8px;
    font-size: 12px;
    color: #ff671f;
}

section.landingprice-box {
    background: #f8f9fa;
}

.landingprice-box .cardsone {
    background-color: #fff;
    padding: 22px 24px;
    border: 1px solid #ff671f;
    box-shadow: 0 4px 8px #0000001a !important;
    border-radius: 8px;
    position: relative;
}

.landingprice-box .plans-card h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.landingprice-box .plans-card h5 {
    font-weight: 500;
    color: var(--dark-3);
    text-align: center;
}

.landingprice-box .plans-card .plans-box {
    margin-top: 2rem;
}

.landingprice-box .plan-card {
    /* background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 15%, #ff671f1f 75%, #ff671f17 90%);
                                                                                                                                                                        border-radius: 12px;
                                                                                                                                                                        padding: 30px 20px 45px;
                                                                                                                                                                        text-align: center;
                                                                                                                                                                        position: relative;
                                                                                                                                                                        height: 100%;
                                                                                                                                                                        border: 1px solid #ffdfbf; */
        background: #fffbf7;
    border-radius: 12px;
    padding: 30px 20px 45px;
    text-align: center;
    position: relative;
    height: 100%;
    border: 1px solid #ffdfbf;
}

.landingprice-box .plan-card h3 {
    margin-bottom: 10px;
}
/* .plans-card .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: transparent;
    color: var(--btnclr);
    border-bottom: 1.5px solid var(--btnclr);
    border-radius: 0px;
    font-weight: 700;
}

.plans-card .nav-pills .nav-link {
    color: #000;
}

.plans-card ul.nav.nav-pills {
    border-bottom: 1px solid #c5c5c5;
}

*/

/* ===== Wrapper ===== */
.plans-card .nav.nav-pills {
    /* display: inline-flex; */
    justify-content: center;
    background: #f6f6f6;
    padding: 6px;
    border-radius: 50px;
    gap: 6px;
    flex-wrap: nowrap;
}

/* ===== Default Tab ===== */
.plans-card .nav-pills .nav-link {
    border: none !important;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 500;
    color: #555;
    background: transparent;
    transition: all 0.3s ease;
}

/* ===== Hover ===== */
.plans-card .nav-pills .nav-link:hover {
    color: #ff671f;
}

/* ===== Active Tab ===== */
.plans-card .nav-pills .nav-link.active,
.plans-card .nav-pills .show>.nav-link {
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 103, 31, 0.3);
}

/* ===== Focus हटाने के लिए ===== */
.plans-card .nav-link:focus {
    box-shadow: none !important;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 576px) {
    .plans-card .nav.nav-pills {
        width: 100%;
    }

    .plans-card .nav-pills .nav-link {
        flex: 1;
        text-align: center;
        padding: 10px;
    }
}
.landingprice-box .price {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
}
.landingprice-box .price span {
    font-size: 14px;
    font-weight: 400;
}

.landingprice-box .plan-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.landingprice-box .plan-features li {
    margin-bottom: 10px;
    font-size: 14px;
}
/* Section */
.family-section {
    padding: 3rem 0;
    background: var(--sectionbg);
    position: relative;
    overflow: hidden;
}

/* Background Shape */
.family-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #5fa36a;
    filter: blur(120px);
    opacity: 0.15;
    top: -100px;
    left: -100px;
}

/* Heading */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    color: #000;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* Card */
.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    box-shadow: 0 4px 8px #0000001a;
}

.feature-card:hover {
    transform: translateY(-12px);
}

/* Icon */
.feature-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
    margin-bottom: 20px;
}

/* Title */
.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Text */
.feature-card p {
    font-size: 14px;
    color: #777;
    font-size: 12px;
}

/* Highlight card */
.feature-card.active {
    /* background: linear-gradient(135deg, #ffb347, #ff671f); */
    background: linear-gradient(135deg, #a1a1a1, #2d2a2a);
    color: #fff;
}

.feature-card.active p {
    color: #e8f5ea;
}

.feature-card.active .feature-icon {
    background: #fff;
    color: #ff671f;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 22px;
    }
}
.how-it-works {
    background: #f5efe8;
}

/* Wrapper */
.steps-wrapper {
    position: relative;
}

/* Center dashed line */
.steps-wrapper::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5%;
    width: 90%;
    height: 2px;
    border-top: 2px dashed var(--btnclr);
    z-index: 0;
}

/* Step item */
.step-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

/* Top Circle */
.step-circle {
    width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    line-height: 50px;
        margin: 0 auto 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Card */
.step-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.step-card:hover {
    transform: translateY(-5px);
}

/* Active center card */
.step-card.active {
    transform: scale(1.05);
}

/* Icon */
.icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {

    .steps-wrapper::before {
        display: none;
    }

    .step-circle {
        margin-bottom: 15px;
    }
}
button.swal2-confirm.swal2-styled {
    background: linear-gradient(135deg, #ffb347, #ff671f);
}
.privacy-premium {
    padding: 3rem 20px;
    background: linear-gradient(135deg, #27160f, #433e20, #64422c);
    color: #fff;
}

/* Header */
.privacy-premium .header {
    text-align: center;
    margin-bottom: 30px;
}

.privacy-premium h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-premium .header p {
    color: #ccc;
    margin-bottom: 10px;
}

.privacy-premium .update {
    font-size: 14px;
    color: #aaa;
}

/* Grid */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Cards */
.card {
    position: relative;
    padding: 25px 15px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
    overflow: hidden;
}

/* Glow effect */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Number */
.card span {
    font-size: 40px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Title */
.card h3 {
    margin-bottom: 15px;
    color: #ffffff;
}

/* Text */
.card p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-premium h2 {
        font-size: 22px;
    }
}

.terms-pro {
    padding: 50px 20px;
    background: #f8f9fc;
    font-family: 'Poppins', sans-serif;
}

/* Header */
.terms-pro .header {
    text-align: center;
    margin-bottom: 20px;
}

.terms-pro h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    color: #111;
}

.terms-pro .header p {
    color: #666;
    margin-top: 8px;
}

/* Grid Layout */
.terms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Cards */
.term-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* Left Gradient Border */
.term-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(135deg, #ffb347, #ff671f);
}

/* Hover */
.term-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

/* Title */
.term-card h3 {
    margin: 0 0 10px;
    color: #111;
}

/* Text */
.term-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-wrapper {
        grid-template-columns: 1fr;
    }

    .terms-pro h2 {
        font-size: 22px;
    }
}
.vansh-uses {
    padding: 3rem 20px;
    background: #f9f9f9;
}

.section-header h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #777;
    max-width: 600px;
    margin: auto;
    margin-bottom: 50px;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

@media(max-width:767px) {
    .uses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: 10px;
    }
}

.use-card {
    background: #fff;
    padding: 25px 15px;
    text-align: center;
    font-weight: 600;
    border-radius: 16px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Gradient border effect */
.use-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Hover effect */
.use-card:hover {
    transform: translateY(-8px) scale(1.03);
    color: #fff;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    box-shadow: 0 20px 40px rgba(255, 103, 31, 0.3);
}

/* Hover text color fix */
.use-card:hover::before {
    display: none;
}

.banner-btn .nav-btn-filled {
    padding: 8px 15px;
    border-radius: 100vmax;
}

.banner-btn .nav-btn-outline {
    padding: 8px 15px;
    border-radius: 100vmax;
}

.vansh-section h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.vansh-text p {
    color: #666;
    line-height: 1.7;
}

.vansh-text ul {
    padding-left: 18px;
}

.vansh-text ul li {
    margin-bottom: 10px;
    color: #555;
}

/* Card */
.vansh-card {
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(255, 103, 31, 0.3);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.vansh-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.vansh-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* decorative effect */
.vansh-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

.vansh-list {
    list-style: none;
    padding: 0;
}

.vansh-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: flex-start;
}

.vansh-list i {
    color: #ff671f;
    margin-right: 10px;
    margin-top: 3px;
}

.vansh-modern {
    background: linear-gradient(135deg, #fff5e6, #fff);
}

/* Text */
.modern-text h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.modern-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Points (modern pill style) */
.modern-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.point {
    background: rgba(255, 103, 31, 0.1);
    color: #ff671f;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
}

.point:hover {
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
}

/* Card (Glassmorphism) */
.modern-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.modern-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.modern-card p {
    color: #555;
}

/* Hover */
.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Glow effect */
.modern-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    opacity: 0.2;
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modern-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #444;
    font-weight: 500;
}

.modern-list i {
    color: #ff671f;
    margin-right: 10px;
    margin-top: 3px;
}

.seo-futuristic {
    background: radial-gradient(circle at top, #fff3e0, #ffffff);
    position: relative;
    overflow: hidden;
}

/* Glow circles */
.seo-futuristic::before,
.seo-futuristic::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
}

.seo-futuristic::before {
    top: -100px;
    left: -100px;
}

.seo-futuristic::after {
    bottom: -100px;
    right: -100px;
}

/* Main box */
.seo-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    border-radius: 25px;
    padding: 50px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    transition: 0.4s;
}

/* Heading */
.seo-box h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff671f, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.seo-box p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
}

/* Hover effect */
.seo-box:hover {
    transform: translateY(-8px) scale(1.01);
    /* box-shadow: 0 30px 80px rgba(255, 103, 31, 0.2); */
}

.faq-modern {
    background: linear-gradient(135deg, #fff7ec, #ffffff);
}

/* Heading */
.faq-modern h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
}

.faq-modern p {
    color: #777;
}

/* Accordion */
.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Button */
.custom-faq .accordion-button {
    font-weight: 600;
    padding: 18px 20px;
    background: transparent;
    color: #333;
    box-shadow: none;
    transition: 0.3s;
}

/* Active */
.custom-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
}

/* Body */
.custom-faq .accordion-body {
    color: #555;
    line-height: 1.7;
    padding: 15px 20px;
}

/* Remove default icon */
.accordion-button::after {
    filter: brightness(0.5);
}

/* Hover */
.custom-faq .accordion-item:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}

.terms-section {
    padding: 3rem 10px;
    background: #f7f7f7;
}

.terms-header {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.terms-header h2 {
    font-size: clamp(1.375rem, 5vw, 2rem);
    font-weight: 700;
    color: #000;
}

.terms-header p {
    font-size: 16px;
    opacity: 0.9;
    color: #000;
}

.terms-box {
    /* max-width: 900px; */
    margin: auto;
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.term-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.term-item:last-child {
    border-bottom: none;
}

.term-item h3 {
    color: #ff671f;
    margin-bottom: 10px;
}

.term-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.term-item ul {
    padding-left: 18px;
}

.term-item ul li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.banner-checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.banner-checklist li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
}

/* H4 styling */
.banner-checklist h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-align: left;
}

/* ✅ Check Icon */
.banner-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge-list {
    max-width: 600px;
    margin: 30px auto 0;
}

/* item */
.feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

/* number badge */
.feature-badge .badge {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb347, #ff671f);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* heading */
.feature-badge h3 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #222;
}

/* text */
.feature-badge p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* subtle hover */
.feature-badge:hover {
    transform: translateX(5px);
    transition: 0.3s;
}
.landing-user-badge .usertop-name {
    font-size: .75rem;
    font-weight: 500;
    display: inline-block;
    max-width: 15ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-user-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08) !important;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #ededed;
}