/*your custom css goes here*/

/* WRAPPER */
.vv-about-wrapper {
    padding: 60px;
    background: linear-gradient(135deg, #f1faee, #fff1f2);
    font-family: Arial, sans-serif;
}
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* -----------------------------------
   GLOBAL CONTAINER & LAYOUT
----------------------------------- */
.vv-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.vv-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* -----------------------------------
   LEFT CONTENT SECTION
----------------------------------- */
.vv-left-box {
    flex: 1;
    min-width: 320px;
}

.vv-tagline {
    color: #f5c400;
    font-size: 16px;
    font-weight: bold;
}

.vv-heading {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #dc3545;
    margin-top: 10px;
}

.vv-description {
    font-size: 16px;
    color: #444;
    margin-top: 15px;
    line-height: 1.6;
}

.vv-learn-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #cd3545;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.vv-learn-btn:hover {
    background: #a72836;
}

/* -----------------------------------
   RIGHT IMAGE SECTION
----------------------------------- */
.vv-right-box {
    flex: 1;
    min-width: 320px;
    position: relative;
    padding: 30px;
}

.right-box-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

/* -----------------------------------
   FLOATING CARD
----------------------------------- */
.vv-floating-card {
    position: absolute;
    bottom: -15px;
    left: 14px;
    width: 220px;
    height: 170px;
    background: #ffffff;
    padding: 15px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vv-floating-card h3 {
    font-size: 25px;
    color: #d90429;
    margin: 0;
}

.vv-floating-card p {
    font-size: 18px;
    color: #888;
    margin: 5px 0;
}

.vv-floating-card h2 {
    font-size: 60px;
    font-weight: 700;
    color: #dc3545;
    margin: 8px 0;
}

/* -----------------------------------
   FEATURE CARDS
----------------------------------- */
.vv-feature-row {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vv-feature-card {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid #ddd;
    transition: 0.3s ease;
}

.vv-feature-card:hover {
    background: #cd3545;
    border-color: #f5c400;
    color: #fff;
    transform: translateY(-5px);
}

/* ICON */
.vv-icon i {
    font-size: 40px;
    color: #cd3545;
    transition: 0.3s;
}

.vv-feature-card:hover .vv-icon i {
    color: #ffffff;
}

/* Headings & Text inside features */
.vv-feature-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #cd3545;
}

.vv-feature-card:hover h4 {
    color: #fff;
}

.vv-feature-card p {
    font-size: 14px;
    color: #666;
}

.vv-feature-card:hover p {
    color: #fff;
}
/* ---------------------------------------------------
   MAIN WRAPPER — auto height only when expanded
--------------------------------------------------- */
.vv-circle-wrapper {
    background: linear-gradient(135deg, #f1faee, #fff1f2);
    position: relative;
    width: 100%;
    height: 200px; /* Default small height */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.5s ease;
}

.vv-circle-wrapper.vv-open {
    height: 500px; /* Height increases after click */
}

/* ---------------------------------------------------
   CENTER CIRCLE — clean modern UI
--------------------------------------------------- */
.vv-center-circle {
    width: 180px;
    height: 180px;
    background: #dc3545;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding-top: 55px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.35);
    transition: 0.4s ease;
    z-index: 10;
}

.vv-center-circle:hover {
    transform: scale(1.08);
}

/* ---------------------------------------------------
   SERVICE CIRCLES — modern, soft, beautiful
--------------------------------------------------- */
.vv-service-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    font-size: 15px;
    border-radius: 50%;
    background: white;
    color: #dc3545;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 6px 22px rgba(225, 89, 89, 0.12);

    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.7s ease-out;
}
.vv-service-btn {
    font-size: 14px;
    border: none;
    background: #dc3545;
    padding: 5px 10px;
    border-radius: 20px;
    color: white;
}
.vv-icon {
    font-size: 28px;
    margin-bottom: 5px;
    color: #dc3545;
}

/* WHEN OPEN -> show circles */
.vv-circle-wrapper.vv-open .vv-service-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---------------------------------------------------
   PERFECT RADIAL POSITIONS
--------------------------------------------------- */
.vv-p1 {
    top: calc(50% - 170px);
    left: 50%;
}
.vv-p1 p {
    color: #f5c400;
}
.vv-p1 .vv-service-btn {
    background: #f5c400;
}
.vv-p1:hover {
    background: #f5c400;
    color: #fafafa;
}
.vv-p1:hover p {
    color: #ffffff;
}

.vv-p2 {
    top: calc(50% - 85px);
    left: calc(50% + 150px);
}
.vv-p3 {
    top: calc(50% + 85px);
    left: calc(50% + 150px);
}
.vv-p4 {
    top: calc(50% + 170px);
    left: 50%;
}
.vv-p5 {
    top: calc(50% + 85px);
    left: calc(50% - 150px);
}
.vv-p6 {
    top: calc(50% - 85px);
    left: calc(50% - 150px);
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */
@media (max-width: 768px) {
    .vv-circle-wrapper.vv-open {
        height: 480px;
    }

    .vv-center-circle {
        width: 150px;
        height: 150px;
        font-size: 16px;
        padding-top: 40px;
    }

    .vv-service-circle {
        width: 95px;
        height: 95px;
        font-size: 12px;
    }

    .vv-p1 {
        top: calc(50% - 140px);
    }
    .vv-p4 {
        top: calc(50% + 140px);
    }
}
.score-section-ashu {
    margin: 10px 30px;
    padding: 10px 20px;
    border-radius: 20px;
    align-self: center;
    width: 90%;
    height: 200px;
    background: #f8f8f8;
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* } */
}
.score-section-box {
    width: 200px;
    height: 140px;
    background: rgb(220 53 69);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: #fff;
    transition: 0.3s;
}
.score-section-box:hover {
    transform: translateY(-5px);
    cursor: pointer;
}
.score-section-box h2 {
    font-size: 3vw;
    margin-top: 20px;
}
.score-section-box h3 {
    font-size: 1.5vw;
    margin-top: 5px;
}
/* WRAPPER */
.vv-security-wrapper {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f1faee, #fff1f2);
    text-align: center;
    font-family: "Poppins", sans-serif;
}

/* SUBTITLE */
.vv-subtitle {
    font-size: 16px;
    color: #ffd400;
    font-weight: 600;
}

.vv-subtitle i {
    margin-right: 6px;
}

/* TITLE */
.vv-title {
    font-size: 34px;
    font-weight: 800;
    color: #dc3545;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* STEP LINE */
.vv-steps-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.vv-step-number {
    font-size: 40px;
    font-weight: 700;
    color: #dc3545;
    padding: 0 10px;
}

.vv-step-separator {
    width: 180px;
    height: 2px;
    background: #ddd;
}

/* GRID */
.vv-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 20px;
}

/* BOX */
.vv-security-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #eee;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.vv-security-box:hover {
    box-shadow: 0px 15px 40px rgba(255, 0, 80, 0.15);
    transform: translateY(-8px);
}

/* ICON CIRCLE */
.vv-icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    margin-bottom: 20px;
}
.vv-icon {
    font-size: 45px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.vv-icon-circle.yellow {
    color: #dc3545;
}

/* TEXTS */
.vv-security-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 10px;
}

.vv-security-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 290px;
}
.choose-section {
    padding: 40px;
    background: #fff;
    font-family: Arial, sans-serif;
}
.choose-section-mid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.choose-section-left {
    min-width: 350px;
    flex: 1;
    position: relative;
}
.choose-float-box {
    position: absolute;
    width: 200px;
    height: 120px;
    border-radius: 15px 0px 15px 0px;
    bottom: -18px;
    right: -15px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}
.choose-float-box h2 {
    font-size: 55px;
    font-weight: 600;
    color: #dc3545;
}
.star-float-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    padding-bottom: 5px;
}
.choose-float-box h3 {
    font-size: 12px;
    color: #ff3b96;
    margin-top: 4px;
}
.choose-section-left img {
    width: 100%;
    max-height: 650px;
    border-radius: 20px;
    object-fit: cover;
}
.choose-section-right {
    min-width: 350px;
    flex: 1;
    padding: 5px;
    background: rgb(255, 255, 255);
    position: relative;
}
.choose-right-caption {
    font-size: 12px;
}
.choose-section-right h2 {
    font-size: 32px;
    font-weight: 600;
    color: #dc3545;
    margin-top: 10px;
}
.choose-section-right-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-bottom: gray solid 1px;
}
.choose-section-right-box h3 {
    margin-top: 10px;
    color: #d90429;
    font-size: 18px;
}
.choose-section-right-box-part {
    min-width: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
    border-radius: 50%;
    font-size: 40px;
    background: rgb(84, 73, 73);
}
/* Animation classes */
.fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.9s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.9s ease-out;
}

.show {
    opacity: 1;
    transform: translateX(0);
}

/* GLOBAL */

/* UNIQUE HERO SECTION */
.lux-hero {
    height: 95vh;
    width: 90%;
    background: linear-gradient(
            135deg,
            rgba(255, 36, 77, 0.45),
            rgba(0, 0, 0, 0.6)
        ),
        url("https://vivahvows.org/uploads/all/kqnva93DCNQAqoAYnYFqWOu5uPfMvLK6eKKTMRFE.png")
            center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

/* FLOATING GLOW EFFECT */
.lux-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 71, 87, 0.55),
        transparent 70%
    );
    top: -120px;
    right: -100px;
    filter: blur(120px);
    opacity: 0.7;
}

/* GLASS CARD WITH UNIQUE GLOW BORDER */
.lux-content {
    max-width: 850px;
    padding: 60px 45px;
    text-align: center;

    background: rgba(15, 15, 20, 0.55);
    backdrop-filter: blur(20px);
    border-radius: 22px;

    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;

    /* gradient border unique trick */
    box-shadow: 0 0 35px rgba(255, 30, 60, 0.2);
}

.lux-content::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #ff244d, #ff8c53);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

/* headings */
.lux-content h1 {
    font-size: 42px;
    color: #dc3545;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 22px;
    text-shadow: 0 0 15px rgba(255, 36, 77, 0.4);
}

/* paragraph */
.lux-content p {
    font-size: 17px;
    color: #f5f2f4;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* button */
.lux-btn {
    background: linear-gradient(303deg, #dc3545, #ffd60091, #dc3545);
    border: none;
    padding: 14px 38px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;

    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 36, 77, 0.4);
}

.lux-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 36, 77, 0.55);
}

/* INITIAL STATE FOR SCROLL ANIMATION */
.lux-content {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(8px);
    transition: all 1s cubic-bezier(0.17, 0.67, 0.31, 1.32);
}

/* ACTIVE STATE */
.lux-content.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}
.pricing-section {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9ff;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 10px auto 40px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-image {
    width: 100%;
    height: 150px;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 15px;
}

.plan-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-features li {
    margin: 8px 0;
    font-size: 15px;
    text-align: left;
    padding-left: 20px;
}

.plan-features .disabled {
    opacity: 0.5;
}

.price {
    font-size: 34px;
    margin: 10px 0 0;
}

.duration {
    margin-bottom: 20px;
    font-size: 13px;
    color: gray;
}

.plan-btn {
    padding: 10px 25px;
    border: 2px solid #dc3545;
    background: #ffffff;
    color: #dc3545;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #dc3545;
    color: #fff;
}

.highlight {
    border: 2px solid #4f46e5;
    transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .lux-content h1 {
        font-size: 28px;
    }
    .lux-content {
        padding: 45px 25px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .vv-security-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vv-step-separator {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .vv-security-grid {
        grid-template-columns: 1fr;
    }

    .vv-title {
        font-size: 28px;
    }

    .vv-step-separator {
        width: 50px;
    }

    .vv-step-number {
        font-size: 30px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vv-heading {
        font-size: 28px;
    }

    .vv-feature-row {
        flex-direction: column;
    }

    .score-section-ashu {
        flex-direction: column;
        height: 700px;
    }
    .score-section-box h2 {
        font-size: 10vw;
        margin-top: 20px;
    }
    .score-section-box h3 {
        font-size: 4vw;
        margin-top: 5px;
    }
    .score-section-box {
        width: 250px;
        height: 120px;
    }
    .choose-section {
        padding-right: 80px;
        /* margin-right: 120px;  */
    }
}
/* ================== RESPONSIVE FIX ================== */
@media (max-width: 850px) {
    .choose-section-mid {
        flex-direction: column;
        gap: 30px;
    }

    .choose-section-left,
    .choose-section-right {
        width: 100%;
        min-width: 100%;
    }

    .choose-section-right {
        padding: 10px 0;
    }

    /* Image full width — no cut */
    .choose-section-left img {
        width: 100%;
        max-height: 450px;
        object-fit: cover;
    }

    /* Float box reposition for mobile */
    .choose-float-box {
        right: 10px;
        bottom: 10px;
        transform: scale(0.9);
    }

    /* Content blocks full width */
    .choose-section-right-box {
        align-items: flex-start;
        padding: 10px 0;
        gap: 10px;
    }

    .choose-section-right-box-part {
        min-width: 60px;
        height: 60px;
        font-size: 28px;
    }

    /* Title resize */
    .choose-section-right h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .choose-right-caption {
        font-size: 14px;
    }
}

/* Extra Small Screen Fix (MAX 500px) */
@media (max-width: 500px) {
    .choose-float-box {
        width: 150px;
        height: 100px;
        padding: 5px;
    }

    .choose-float-box h2 {
        font-size: 38px;
    }

    .choose-float-box h3 {
        font-size: 10px;
    }

    .choose-section-right h2 {
        font-size: 22px;
    }

    .choose-section-right-box-part {
        min-width: 55px;
        height: 55px;
        font-size: 25px;
    }

    .choose-section-right-box h3 {
        font-size: 16px;
    }
}

/* ================== RESPONSIVE FIX ================== */
@media (max-width: 900px) {
    /* Row goes into column */
    .vv-row {
        flex-direction: column;
        gap: 40px;
    }

    /* Left box full width */
    .vv-left-box {
        width: 100%;
    }

    /* Right box full width */
    .vv-right-box {
        width: 100%;
        padding: 15px;
        position: relative;
    }

    /* Image full visible, no side cut */
    .right-box-img {
        width: 100%;
        max-height: 360px;
        object-fit: cover;
        border-radius: 20px;
    }

    /* Floating card always inside screen */
    .vv-floating-card {
        bottom: 15px !important;
        left: 15px !important;
        transform: scale(0.9);
        width: 180px;
        height: auto;
    }
}

/* ================== SMALL DEVICES FIX (MAX 550px) ================== */
@media (max-width: 700px) {
    /* Text resizing */
    .vv-heading {
        font-size: 26px;
        line-height: 1.35;
    }

    .vv-description {
        font-size: 14px;
        line-height: 1.45;
    }

    /* Image */
    .right-box-img {
        max-height: 300px;
    }

    /* Floating card smaller so no overflow */
    .vv-floating-card {
        transform: scale(0.75);
        width: 160px;
        padding: 10px;
        bottom: 10px !important;
        left: 10px !important;
    }

    .vv-floating-card h2 {
        font-size: 40px;
    }

    .vv-floating-card h3 {
        font-size: 18px;
    }

    /* Feature box column layout */
    .vv-feature-row {
        flex-direction: column;
        gap: 15px;
    }

    .vv-feature-card {
        width: 100%;
        padding: 25px;
    }
}

/* ================== NO CUT — NO OVERFLOW ================== */
.vv-about-wrapper,
.vv-container,
.vv-row,
.vv-right-box,
.vv-left-box {
    overflow: visible !important;
}
@media (min-width: 1000px) {
    .score-section-box {
        width: 250px;
        height: 150px;
    }
}
@media (max-width: 768px) {
    .score-section-box {
        width: 300px;
        height: 160px;
    }
}

.footer-text-color {
    color: #ffffff !important;
}

.how-it-works-section {
    background: #fcf3f1;
}
