/* ================= RESET (SAFE) ================= */
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('../images/site-bg.webp') no-repeat center center;
    background-size: cover;
}

html {
    scroll-behavior: smooth;
}

.d-f {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= WOW EFFECTS ================= */
.wow {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.animate__animated {
    --animate-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wow.in-view {
    opacity: 1;
    transform: none;
}

.fade-up {
    transform: translateY(40px);
}

.zoom-in {
    transform: scale(.95);
}

.zoom-in.in-view {
    transform: scale(1);
}

.pop {
    transform: scale(.92);
}

.pop.in-view {
    transform: scale(1);
}

.rise {
    transform: translateY(60px);
    filter: blur(6px);
}

.rise.in-view {
    filter: blur(0);
}

/* Stagger */
.stagger li {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.stagger.in-view li {
    opacity: 1;
    transform: none;
}

.stagger.in-view li:nth-child(1) {
    transition-delay: .1s
}

.stagger.in-view li:nth-child(2) {
    transition-delay: .2s
}

.stagger.in-view li:nth-child(3) {
    transition-delay: .3s
}

.slide-left {
    transform: translateX(-50px);
}

.zoom-in {
    transform: scale(0.94);
}

/* ================= STAGGER DELAYS ================= */
.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

.delay-3 {
    transition-delay: .36s;
}

.delay-4 {
    transition-delay: .48s;
}

/* ================= LAYOUT ================= */
.page-wrapper {
    padding: 24px;
}

.w-90 {
    width: 90%;
    margin: auto;
}

/* ================= STICKY NAV ================= */
.sticky-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1400px;
    z-index: 9999;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sticky-nav.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= HERO SECTION ================= */
.hero-section {
    padding: 24px;
    border-radius: 24px;
    min-height: calc(100vh - 48px);
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('../images/hero-bg.webp') center / cover no-repeat;

    backdrop-filter: blur(6px);
}

/* .nav-spacer {
    height: 88px;
} */

/* ================= NAVBAR ================= */
.hero-navbar {
    background: rgba(255, 255, 255, 0.6);
    /* semi-transparent */
    backdrop-filter: blur(10px);
    /* glass blur */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border-radius: 100px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.nav-link {
    color: #000 !important;
    font-weight: 500;
    position: relative;
    padding: 6px 18px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(123, 47, 247, 0.08);
    color: #7b2ff7 !important;
}

/* ACTIVE / SELECTED */
.nav-link.active {
    background: rgba(123, 47, 247, 0.12);
    color: #7b2ff7 !important;
    box-shadow: inset 0 0 0 1px rgba(123, 47, 247, 0.25);
}

/* ================= SOCIAL ICONS ================= */
.social-icons i,
.mobile-social i {
    color: #7b2ff7;
    font-size: 16px;
    margin-left: 16px;
    cursor: pointer;
}

.mobile-social i {
    margin-left: 0;
    margin-right: 16px;
}

/* ================= NAV TOGGLER ================= */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ================= HERO CONTENT ================= */
.hero-content {
    padding: 80px 0 40px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* ================= FEATURES ================= */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features li {
    margin-bottom: 10px;
}

.features i {
    color: #22c55e;
    margin-right: 8px;
}

/* ================= HERO IMAGE ================= */
.hero-image {
    border-radius: 16px;
    padding: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* ================= SEARCH BOX ================= */
.search-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    /* margin-top: 40px; */
    color: #000;
}

.search-box label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.search-box input,
.search-box select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: #f1f1f1;
}

/* ================= CTA BUTTONS ================= */
.book-btn,
.submit-btn {
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 40px;
    border: none;
    transition: all 0.3s ease;
}

.book-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 47, 247, 0.35);
    color: #fff;
}

.book-btn:active,
.submit-btn:active,
.waa-btn:active {
    transform: scale(0.97);
}

.waa-btn {
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 42px;
    border-radius: 40px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.waa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 47, 247, 0.35);
    color: #fff;
}

/* ================= INFO SECTION ================= */

.info-section {
    position: relative;
    padding: 80px 0;
}

.info-title {
    position: relative;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

/* .section-decor {
    position: absolute;
    z-index: 2;
} */

/* .decor-left {
    top: 110px;
    left: calc(50% - 450px);
}

.decor-right {
    top: 60px;
    left: calc(50% + 430px);
}

.section-decor img {
    width: 32px;
    height: auto;
    display: block;
} */

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.info-number {
    min-width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    color: #d1d1d1;
}

.video-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Play button */
.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: rgba(154, 54, 230, 0.9);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    animation: playPulse 2s infinite;
}

.play-btn i {
    color: #fff;
    font-size: 22px;
    margin-left: 3px;
}

.play-btn::before,
.play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(154, 54, 230, 0.6);
    animation: ripple 2.5s infinite;
}

.play-btn::after {
    animation-delay: 1.25s;
}

/* ================= KEYFRAMES ================= */

@keyframes playPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(154, 54, 230, 0.7);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(154, 54, 230, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(154, 54, 230, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* Hidden SEO text */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.trust-item img {
    width: 100%;
    border-radius: 14px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.trust-item img:hover {
    transform: scale(1.04);
}

.trust-item img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.trust-item img:hover {
    transform: scale(1.03);
}

/* ===== Modal Popup ===== */
.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.review-modal.active {
    opacity: 1;
    visibility: visible;
}

.review-modal-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: zoomIn 0.3s ease;
}

.review-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile fix */
@media (max-width: 576px) {
    .review-close {
        top: 15px;
        right: 20px;
    }
}

/* ================= REVIEWS SECTION ================= */

.rreviews-section {
    position: relative;
    padding: 100px 0;

    background:
        url('../images/reviewbg.webp') center / cover no-repeat;
    overflow: hidden;
}

/* Title */
.reviews-title {
    max-width: 720px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    /* margin-bottom: 60px; */
}

/* Decorative image */
/* .section-decor {
    position: absolute;
    z-index: 1;
}

.cdecor-left {
    top: 80px;
    left: 40px;
} */

/* Wrapper */
.reviews-wrapper {
    position: relative;
}

/* Arrows (VERTICALLY CENTERED) */
.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    /* remove circle */
    border: none;
    padding: 0;
    color: #ffffff;
    /* white arrows */
    font-size: 28px;
    z-index: 10;
    cursor: pointer;
}

.review-nav.prev {
    left: 0;
}

.review-nav.next {
    right: 0;
}

.review-nav:hover {
    opacity: 0.8;
    /* subtle hover */
}

/* Marquee */
.reviews-marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

/* Pause ONLY when hovering images */
.review-card:hover~.marquee-track,
.review-card:hover {
    animation-play-state: paused;
}

/* Cards */
.review-card {
    flex: 0 0 auto;
    width: 340px;
}

.review-card img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Animation */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* card review */
/* SECTION */
/* .owl-stage {

    height: 240px !important;
} */

/* SECTION */
.app-reviews {
    padding: 100px 0;
    background: url('../images/review2bg.webp') center / cover no-repeat;
    overflow: hidden;
}

.app-reviews-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
}

/* OWL FIX */
.app-review-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.app-review-carousel .owl-item {
    display: flex;
    justify-content: center;
}

/* CARD */
.app-review-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    max-width: 360px;
    width: 100%;
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-review-card:hover {
    transform: translateY(-6px);
}

.app-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 18px;
}

.app-review-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.app-review-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.app-review-user span {
    font-size: 14px;
    font-weight: 600;
    color: #000;

}

.app-review-stars {
    color: #7b3cff;
    font-size: 14px;
    letter-spacing: 2px;
}

/* POPUP */
.review-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.review-popup-overlay.active {
    display: flex;
}

.review-popup {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupScale 0.3s ease;
    color: #000;
}

@keyframes popupScale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.review-popup-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
    color: #000;
}

.review-popup-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.review-popup-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.review-popup-stars {
    color: #7b3cff;
    font-size: 15px;
    letter-spacing: 2px;
}

.review-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}



/* ================= CTA SECTION ================= */
.cta-love {
    position: relative;
    background: #f6eaff;
    padding: 110px 20px;
    overflow: hidden;
    text-align: center;
    margin-top: -10px;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.cta-love h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.cta-love h2 span {
    color: #9A36E6;
}

.cta-quote {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* ================= CTA BUTTON BASE ================= */

/* ================= CTA TEXT ================= */

.cta-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    color: #000;
}

.cta-heading .highlight {
    display: block;
    color: #9A36E6;
}

/* ================= IMAGE ================= */

.cta-image {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.cta-image img {
    max-width: 280px;
    width: 100%;
    height: auto;
}

/* ================= DOWNLOAD TEXT ================= */

.cta-sub {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #444;
}

.cta-sub .app-name {
    font-weight: 700;
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= QUOTE ================= */

.cta-quote {
    max-width: 720px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* ================= MOBILE PERFECT ================= */

@media (max-width: 768px) {

    .cta-love {
        padding: 80px 16px;
    }

    .cta-heading {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .cta-image img {
        max-width: 220px;
    }

    .cta-sub {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .cta-quote {
        font-size: 12px;
        /* ✅ exactly as requested */
        line-height: 1.5;
        margin-bottom: 28px;
    }

    .cta-btn {
        padding: 14px 34px;
        font-size: 15px;
    }
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;

    padding: 16px 46px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;

    position: relative;
    overflow: hidden;
    cursor: pointer;

    box-shadow: 0 12px 30px rgba(154, 54, 230, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= HEARTBEAT (IDLE) ================= */
/* ===== PREMIUM CTA ANIMATION ===== */
.cta-btn.premium-cta {
    background: linear-gradient(135deg,
            #9A36E6,
            #C321A8,
            #9A36E6);
    background-size: 200% 200%;

    animation:
        gradientMove 5s ease infinite,
        softGlow 3.5s ease-in-out infinite;

    box-shadow: 0 14px 35px rgba(154, 54, 230, 0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Gradient flow */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Soft breathing glow */
@keyframes softGlow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 14px 35px rgba(154, 54, 230, 0.35);
    }

    50% {
        transform: scale(1.040);
        box-shadow: 0 20px 55px rgba(154, 54, 230, 0.55);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 14px 35px rgba(154, 54, 230, 0.35);
    }
}

/* Hover — confident lift (NO extra chaos) */
.cta-btn.premium-cta:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 26px 65px rgba(154, 54, 230, 0.6);
}

/* Active click */
.cta-btn.premium-cta:active {
    transform: scale(0.97);
}


/* ================= HOVER EFFECT ================= */
.cta-btn:hover {
    animation: none;
    /* stop heartbeat */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 45px rgba(154, 54, 230, 0.55);
    color: #fff;
}

/* Subtle shimmer */
.cta-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 25%,
            rgba(255, 255, 255, 0.35),
            transparent 75%);
    transform: translateX(-100%);
}

.cta-btn:hover::after {
    animation: shimmer 0.8s forwards;
}

@keyframes shimmer {
    to {
        transform: translateX(100%);
    }
}

/* Click feedback */
.cta-btn:active {
    transform: scale(0.96);
}

/* ================= HEART PARTICLES ================= */
.heart-particle {
    position: absolute;
    font-size: 18px;
    color: #C321A8;
    pointer-events: none;
    animation: heartBurst 900ms ease-out forwards;
    opacity: 0.9;
}

@keyframes heartBurst {
    0% {
        transform: translate(0, 0) scale(0.6);
        opacity: 1;
    }

    100% {
        transform: translate(var(--x), var(--y)) scale(1.3);
        opacity: 0;
    }
}

/* ================= HEART DECOR ================= */
/* ===== HEART IDLE ANIMATION ===== */
.heart-group img {
    animation: floatLove 6s ease-in-out infinite;
    will-change: transform;
}

.left-hearts img:nth-child(1) {
    animation-delay: 0s;
}

.left-hearts img:nth-child(2) {
    animation-delay: 1.2s;
}

.left-hearts img:nth-child(3) {
    animation-delay: 2.4s;
}

.right-hearts img:nth-child(1) {
    animation-delay: 0.8s;
}

.right-hearts img:nth-child(2) {
    animation-delay: 2s;
}

@keyframes floatLove {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-10px) rotate(2deg) scale(1.03);
        opacity: 1;
    }

    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .heart-group img {
        animation: none;
    }
}


.heart-group {
    position: absolute;
    z-index: 1;
    display: flex;
    gap: 16px;
}

.heart-group img {
    width: 90px;
    height: auto;
}

/* LEFT HEARTS (3) */
.left-hearts {
    top: 40%;
    left: -40px;
    flex-direction: column;
}

.left-hearts img:nth-child(1) {
    width: 160px;
}

.left-hearts img:nth-child(2) {
    width: 70px;
    margin-left: 340px;
    margin-top: -270px;
}

.left-hearts img:nth-child(3) {
    width: 50px;
    margin-left: 200px;
}

/* RIGHT HEARTS (2) */
.right-hearts {
    top: 20%;
    right: -40px;
    flex-direction: column;
}

.right-hearts img:nth-child(1) {
    width: 160px;
}

.right-hearts img:nth-child(2) {
    width: 60px;
    margin-left: -170px;
}

/* .sdecor-left {
    top: 30px;
    left: calc(49% - 360px);
}

.sdecor-right {
    top: -22px;
    left: calc(40% + 430px);
} */

/* ================= ACCESSIBILITY ================= */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}





/* SECTION */
.trust-section {
    background: #222;
    padding: 60px 0;
}


/* CAROUSEL FIX */
.trust-carousel {
    display: block;
}

/* ITEM */
.trust-item {
    min-height: 160px;
    /* 🔑 CRITICAL */
    text-align: center;
    color: #fff;
    padding: 20px;
}

/* ICON */
.trust-item i {
    font-size: 40px;
    color: #9A36E6;
    margin-bottom: 12px;
}

/* TITLE */
.trust-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* TEXT */
.trust-item p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

/* REMOVE OWL DEFAULT NAV */
.owl-nav,
.owl-dots {
    display: none !important;
}

/* ICON BASE */
.gradient-icon {
    font-size: 42px;
    margin-bottom: 14px;

    background: linear-gradient(135deg, #9A36E6, #C321A8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    display: inline-block;
}

/* Trust item layout */

.trust-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.trust-item p {
    font-size: 15px;
    color: #d1d1d1;
    margin: 0;
}


/* ================= SECTION ================= */
.social-section {
    background: #efefef;
    padding: 120px 40px;
    overflow-x: hidden;
    /* 🔥 prevents horizontal scroll */
}

/* ================= HEADER ================= */
.social-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.social-line {
    flex: 1;
    max-width: 380px;
    height: 4px;
    background: #7b2ff7;
    border-radius: 10px;
}

.ssocial-line {
    flex: 1;
    max-width: 100px;
    height: 4px;
    background: #7b2ff7;
    border-radius: 10px;
}

.sssocial-line {
    flex: 1;
    max-width: 80px;
    height: 4px;
    background: #7b2ff7;
    border-radius: 10px;
}

.ssssocial-line {
    flex: 1;
    max-width: 40px;
    height: 4px;
    background: #7b2ff7;
    border-radius: 10px;
}


.social-header h2 {
    max-width: 920px;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
}

.highlight {
    background: #3f6ff3;
    color: #fff;
    padding: 0 6px;
}

.header-arrow {
    font-size: 36px;
    color: #7b2ff7;
}

/* ================= GRID ================= */
.social-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ================= CARDS ================= */
.social-card {
    border-radius: 22px;
    padding: 30px 24px;
    text-align: center;
    color: #fff;
}

.instagram {
    background: linear-gradient(180deg, #d6249f, #fd5949);
}

.facebook {
    background: #3f51c6;
}

.snapchat {
    background: #f4ea00;
    color: #000;
}

.youtube {
    background: #ff0033;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
}

/* ================= ICONS ================= */
.icon-circle {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
}

.icon-circle i {
    font-size: 22px;
}

/* Force visibility */
.instagram-icon {
    color: #d6249f;
}

.facebook-icon {
    color: #1877f2;
}

.icon-circle.outline-red {
    background: #fff !important;
    color: #ff0033 !important;
    background: transparent;
}


/* ================= TEXT ================= */
.social-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.social-card strong {
    font-size: 22px;
}

.followers {
    font-size: 13px;
    margin-bottom: 18px;
    display: block;
}

/* ================= THUMBS ================= */
.thumb-box {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.thumb-box.outline-red {
    border: 2px solid red;
}

.thumb-box img {
    width: 56px;
    height: 44px;
    border-radius: 8px;
    object-fit: cover;
}

/* ================= BUTTON ================= */
.card-btn {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* Gradient button */
.card-btn.gradient {
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    box-shadow: 0 10px 25px rgba(154, 54, 230, .35);
}

/* Outline */
.card-btn.outline {
    background: transparent;
    border: 2px solid #9A36E6;
    color: #9A36E6;
}



/* ================= FAQ SECTION ================= */
.faq-section {
    padding: 100px 20px;
    background: #ededed;
    margin-top: -10px;
}

/* Heading */
.faq-heading {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.faq-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    position: relative;
}

/* Decorative strokes */
.faq-decor {
    position: absolute;
    width: 18px;
    height: 6px;
    border-radius: 4px;
    background: #9A36E6;
}

.faq-decor.left {
    left: 50%;
    top: -18px;
    transform: translateX(-120px) rotate(-20deg);
}

.faq-decor.right {
    right: 50%;
    top: -18px;
    transform: translateX(120px) rotate(20deg);
}

/* Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 18px;
}

/* FAQ Card */
.faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover (desktop only) */
@media (hover:hover) {
    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    }
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    font-size: 18px;
    font-weight: 600;
    color: #7b2ff7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

/* Chevron */
.faq-question i {
    font-size: 16px;
    color: #9A36E6;
    transition: transform 0.35s ease;
}

/* Active state */
.faq-item.active {
    /* box-shadow: 0 18px 40px rgba(154, 54, 230, 0.25); */
    border-left: 4px solid #9A36E6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Answer content */
.faq-answer p {
    padding: 0 26px 24px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #333;
}



/* ================= WHATSAPP OFFER ================= */
.whatsapp-offer {
    position: relative;
    padding: 60px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url('../images/hero-bg.webp') center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.offer-card {
    background: #fff;
    border-radius: 36px;
    padding: 50px 40px;
    max-width: 680px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: floatIn 0.8s ease-out;
}

/* Title */
.offer-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.offer-card h2 strong {
    color: #22c55e;
}

/* Sub text */
.offer-sub {
    font-size: 18px;
    color: #666;
    margin-bottom: 26px;
}

/* WhatsApp Button */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #22c55e;
    color: #fff;
    padding: 16px 34px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(34, 197, 94, .45);
    transition: all 0.3s ease;
    animation: pulseWA 2.5s infinite;
}

/* Icon */
.wa-btn i {
    font-size: 22px;
}

/* Hover */
.wa-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 20px 45px rgba(34, 197, 94, .6);
    color: #fff;
}

/* Small note */
.offer-note {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    color: #888;
}

/* ================= ANIMATIONS ================= */
@keyframes pulseWA {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================= CEO SECTION ================= */
.ceo-section {
    background: #eeeeee;
    padding: 100px 20px;
    font-family: Arial, sans-serif;
}

.ceo-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.ceo-label {
    font-size: 18px;
    letter-spacing: 1px;
    color: #9A36E6;
    font-weight: 800;
}

.ceo-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 8px 0 18px;
    color: #111;
}

.ceo-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

/* View more */
.ceo-view-more {
    display: inline-block;
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 600;
    color: #9A36E6;
    cursor: pointer;
}

/* ACTIONS */
.ceo-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* BUTTON */
/* .ceo-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 24px;
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
} */

/* .ceo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(154, 54, 230, .4);
} */

/* Button */
.motivate-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #9A36E6, #C321A8);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}

/* Overlay */
.popup-wrapper {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup Container */
.popup-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  max-width: 90%;
}

/* Image */
.popup-photo {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Close Icon */
.popup-exit {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 24px;
  cursor: pointer;
}

/* Download Link */
.download-link {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: #009688;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

/* GIFT BOX */
.gift-box {
    background: #22c55e;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
}

.gift-box small {
    color: #fff;
    font-size: 13px;
}

.gift-amount {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* IMAGE */
.ceo-image {
    background: #111;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.ceo-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* ================= POPUP ================= */
.ceo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.ceo-popup {
    background: #fff;
    max-width: 520px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    animation: popupFade 0.3s ease;
}

.ceo-popup h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.ceo-popup p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.ceo-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* blog */
/* ================= BLOGS SECTION ================= */
.blogs-section {
    padding: 90px 0;
    background: #eee;
    position: relative;
}

.blogs-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    color: #000;
}

/* .blogs-decor {
  display: inline-block;
  width: 6px;
  height: 14px;
  background: #9A36E6;
  border-radius: 4px;
  margin-left: 6px;
} */

/* Carousel Wrapper */
.blogs-carousel-wrapper {
    position: relative;
}

/* ================= BLOG CARD ================= */
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0,0,0,.12); */
}

/* Image */
.blog-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT STRIP OVER IMAGE */
.blog-img-title {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;

    padding: 10px 14px;

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;

    /* 🔥 BLUR ONLY FOR TEXT AREA */
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);

    /* smooth edges */
    /* border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
}


/* Content */
/* Blog content */
.blog-content {
    padding: 16px;
    text-align: left;
}

/* Title */
.blog-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

/* 🔹 Purple line under title */
.title-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Description */
.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

/* 🔹 Centered button */
.blog-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;

    padding: 10px 28px;
    border-radius: 30px;

    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(154, 54, 230, 0.2);
}

/* ================= NAV ARROWS ================= */
.blog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9A36E6;
    font-size: 28px;
    z-index: 10;
    cursor: pointer;
}

.blog-nav.prev {
    left: -40px;
}

.blog-nav.next {
    right: -40px;
}

/* Remove owl default */
.blogs-carousel .owl-nav,
.blogs-carousel .owl-dots {
    display: none;
}

/* ================= FOOTER BASE ================= */
.site-footer {
    background: #1e1e1e;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    align-items: start;
}

/* ================= BRAND ================= */
.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ================= COLUMNS ================= */
.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #d1d1d1;
    font-size: 14px;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

/* ================= SOCIAL ================= */
.footer-social .social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}



.footer-social .social-icons a i {
    font-size: 16px;
    color: #fff;
}


/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    text-align: center;
    padding: 14px 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand .brand-logo {
        justify-content: center;
    }
}

/* ================= MOBILE (PERFECT LAYOUT) ================= */
@media (max-width: 576px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        text-align: center;
    }

    /* Logo full width */
    .footer-brand {
        grid-column: span 2;
    }

    .footer-brand .brand-logo {
        justify-content: center;
    }

    /* Social media full width at bottom */
    .footer-social {
        grid-column: span 2;
    }

    .footer-social .social-icons {
        justify-content: center;
        gap: 18px;
        margin-top: 10px;
    }

    .footer-col h4 {
        font-size: 15px;
    }
}



/* ================= BASE ================= */

/* ================= HERO ================= */
.blog-hero {
    position: relative;
    background: url('../images/hero-bg.webp') center / cover no-repeat;
    min-height: 500px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 18px;
}

.blog-hero h1 {
    position: relative;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    z-index: 2;
}

/* ================= NAVBAR ================= */
.blog-navbar {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: #fff;
    border-radius: 50px;
    z-index: 3;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 26px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    font-size: 14px;
    cursor: pointer;
}

.nav-links .active {
    background: #efe3ff;
    padding: 6px 16px;
    border-radius: 20px;
    color: #7b2ff7;
}

.nav-social i {
    margin-left: 14px;
    color: #7b2ff7;
}

/* ================= BLOG CONTENT ================= */

.blog-article h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    font-size: 14px;
}

.blog-meta .author {
    background: linear-gradient(135deg, #9A36E6, #C321A8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
}

.blog-feature img {
    width: 70%;
    border-radius: 18px;
    margin-bottom: 24px;
    text-align: center;
}

.blog-article p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* ================= SUB SECTIONS ================= */
.blog-sub h3 {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
}

.blog-sub h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #9A36E6;
    display: block;
    margin-top: 6px;
}

.blog-sub img {
    width: 300px;
    border-radius: 12px;
    margin-bottom: 12px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 30px;
    }

    .blog-article h2 {
        font-size: 24px;
    }

    .nav-links {
        display: none;
    }
}