/* =========================================================
   Global Styles
========================================================= */
:root {
    /* --primary-color: <?= htmlspecialchars($site['primary_color']) ?>; */
    --primary-red: #E62F47;
    --deep-red: #E62F47;

    --cream-bg: #fff3e6;
    --card-border: #f2d3ad;

    --green-btn: #219651;

    --blue: #3b82f6;
    --purple: #7c3aed;
    --heart: #E62F47;

    --footer-green: #219651;

}

html {
    scroll-behavior: smooth;
}

/* @font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
} */


body {

    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    line-height: 1.6;
}


#page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-box {
    position: relative;
    width: 60px;
    height: 60px;
}

.loader-img {
    width: 30px;
    height: 30px;
    /* border-radius: 20px; */
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-ring {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E62F47;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

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

a {
    text-decoration: none;
    transition: 0.3s ease;
}

.section-title {
    font-weight: bold;
    font-size: 2rem;
    color: #1f1f1f;
    margin-bottom: 0.75rem;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    color: #6c757d;
    max-width: 720px;
}

/* =========================================================
   Header
========================================================= */
.site-header .navbar-brand span {
    color: var(--primary-color);
}

.site-header .nav-link {
    font-weight: 500;
    color: #222;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--primary-red);

}

/* =========================================================
   Top Strip
========================================================= */
.top-strip {
    background: linear-gradient(90deg, #fff5f8, #fff2d8);
    border-bottom: 1px solid #f0e6e6;
}

/* =========================================================
   Hero Section
========================================================= */
.hero-wrapper {
    background: #fff;
    padding: 20px 0px 20px 0px;
    font-family: 'Poppins', sans-serif;
}

/* Heading */

.hero-top-text {
    font-size: 22px;
    color: #3D3044;

    margin-bottom: 5px;
    font-weight: 600;
}

.hero-main-title {
    font-weight: bold;
    font-size: 34px;
    font-family: Lexend;

}

.badge-no {
    background: #fff4c2;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 14px;
    margin-right: 6px;
    border: 1px solid #e6d188;
}

.kongu {
    color: #1e8e3e;
    font-weight: 700;
}

.in-text {
    margin: 0 6px;
}

.tn-pill {
    font-size: 22px;
    background: var(--state-btn-color);
    color: var(--state-btn-textcolor);
    padding: 2px 14px;
    border-radius: 20px;
    font-weight: 400;
}

/* Hero Card */

.hero-box {
    /* background: #fff3e6;
    border-radius: 18px;
    padding: 25px;
    margin-top: 20px; */

    padding: 0px 45px;
    border-radius: 18px;
}

/* Couple Image */

.hero-couple {
    border-radius: 12px;
    width: 100%;
}

/* Form Card */

.hero-box {
    background: #ffffff;
    /* padding: 20px; */
    border-radius: 20px;
    margin-top: 1%;
}

/* image wrapper */
.hero-image-wrapper {
    position: relative;
}

/* banner image */
.hero-couple {
    width: 100%;
    border-radius: 20px;
}

/* form overlay */
.hero-form {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 24px;
    width: 360px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-form input::placeholder,
textarea::placeholder {
    color: #000000;
    /* font-weight: 700; */
}

.hero-form .form-control {
    border-radius: 11px !important;
    border: 1px solid #D2D2D2;
    margin-bottom: 10px !important;
    padding: 5px 10px;
    /* font-weight: 600; */
    color: #000000;
    font-size: 15px;
}

/* title */
.form-title {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* register button */
.register-btn {
    margin: auto;

    color: var(--form-text-color);
    /* background: #219651; */
    background: var(--primary-color);
    border: none;
    width: 100%;
    padding: 5px 10px;
    border-radius: 15px;
    color: #fff;
    font-weight: 500;
}

/* verified text */
.verified-text {
    text-align: center;
    font-size: 12px;
    margin-top: 8px;
}

/* Responsive */
.aboutcommunity {
    margin-top: 17%;
}

.about-image {
    margin-top: 6%;
}

@media (max-width:768px) {
    .aboutcommunity {
        margin-top: 6%;
    }

    .hero-main-title {
        font-size: 22px;
    }

    .hero-box {
        padding: 0px 15px;
    }

    .hero-form {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 20px;
        width: 100%;
    }

}

/* .why-section {
    background:#f1f1f1;
    padding: 20px 0;
} */

/* Box */

.why-box {
    text-align: center;
}

/* Icon circles */
.why-box img {
    width: 95px;
}

.why-icon {
    width: 67px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 36px;
    color: white;
}

/* Blue */

.blue {
    background: #2da1e7;
}

/* Purple */

.purple {
    background: #7b6ad6;
}

/* Heart */

.heart {
    background: #e53935;
}

/* Text */

.why-text {
    font-size: 18px;
    color: #222;
    font-weight: 500;
}

.success-section {

    background: var(--testimony-div-color);
    color: var(--testimony-text-color);


    padding: 30px 0;
    text-align: center;
}

.success-story-div {
    padding: 0px 40px !important;
}

/* Title */

.success-title {
    color: white;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.line {
    width: 80px;
    height: 2px;
    background: white;
    display: inline-block;
}

.subtitle {
    color: white;
    margin-bottom: 20px;
}

/* Cards */

/* Card container */
.story-card {
    background: #fff;
    /* border-radius:8px; */
    padding: 8px;
    /* box-shadow:0 4px 10px rgba(0,0,0,0.15); */
}

/* Image container */
.story-card img {
    width: 100%;
    /* height: 240px; */
    /* controls card size */
    /* object-fit: cover; */
    /* prevents distortion */
    border-radius: 6px;
}

/* Caption */
.story-caption {
    /* background:#f3f3f3; */
    padding: 4px;
    text-align: center;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 17px;
    color: #000000;
    font-weight: 400;

    height: 70px;
    /* same height for all cards */
    display: flex;
    align-items: center;
    justify-content: center;

}

.about-section {
    /* background:#f2f2f2; */
    padding: 60px 0;
    position: relative;
}

/* About badge */

.about-header {
    margin-bottom: 30px;
}



/* Title */

.about-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-community {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.aboutcommunity {
    font-size: 28px;
    font-weight: 500;

    color: var(--primary-color);

}

.maintext {
    /* font-size: 28px; */

    color: var(--primary-color);

}

.community {
    color: #e11d48;
}

/* Image */

/* .about-image img {
    width: 180px;
    border-radius: 50%;
    margin-top: 10px;
} */
.about-image {
    /* width: 70%; */

    margin: auto;
    margin-top: 7%;

}

/* Text */

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.app-container {
    /* background: #1f8f4f; */
    background: var(--primary-color);
    padding: 25px 0;
    border-radius: 55px;
}

.download-title {
    /* font-size:22px; */
    font-weight: 600;
    margin-bottom: 15px;
}

.store-btn {
    height: 60px;
    margin-right: 10px;
}


.download-count {
    font-size: 16px;
    margin-top: 10px;
}

.download-users {
    font-size: 14px;
}

.qr-box img {
    width: 265px;
    margin-top: 15px;
}

.app-screen {
    height: 420px;
    object-fit: contain;
}

.videoSwiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.site-footer {
    /* background: #2e8b57; */
    background: var(--primary-color);
    color: #fff;
    padding: 50px 0 0 0;
}

.footer-col h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* App buttons */
.footer-store-buttons img {
    height: 30px;
    margin-right: 10px;
    margin-top: 10px;
}

.store-buttons img {
    height: 58px;
    margin-right: 10px;
    margin-top: 10px;
}

/* Bottom copyright */

.footer-bottom {
    background: #ffffff;
    color: #333;
    text-align: center;
    padding: 15px;
    font-weight: 500;
    margin-top: 40px;
}

.form-check-label a {
    /* color:#E62F47; */
    text-decoration: underline;
    font-weight: 500;
}

.primary_color {
    background: var(--primary-color);
}

/* .primary_text_color {
    color: var(--primary-text-color);
} */

.footer_color {
    background: var(--primary-color);
}

.header_btn_color,
.enquiry_btn_color {
    width: 120px;
    /* same width */
    height: 40px;
    border-radius: 20px;
    text-align: center;
}

.header_btn_color {
    background: var(--header-btn-color);
    color: var(--header-btn-textcolor);
}

.header_btn_color:hover {
    background: var(--header-btn-color) !important;
    color: var(--header-btn-textcolor) !important;
}

.enquiry_btn_color {
    background: var(--primary-red) !important;
    color: #ffffff !important;
}

.enquiry_btn_color:hover {
    background: var(--primary-red) !important;
    color: #ffffff !important;
}

.testimony_div_color {
    background: var(--testimony-div-color);
}

.testimony_text_color {
    color: var(--testimony-text-color);
}

.cat_text_color {
    color: var(--cat-text-color);
}

.feature_div {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
}




.about-badge-wrap {
    position: relative;
    display: inline-block;
    padding-top: 33px;
}

.about-badge-wrap::before,
.about-badge-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 3px;
    height: 40px;
    background: var(--testimony-div-color);
}

.about-badge-wrap::before {
    left: 14px;
}

.about-badge-wrap::after {
    right: 14px;
}

.about-badge {
    position: relative;
    display: inline-block;
    background: var(--testimony-div-color);
    color: var(--testimony-text-color);
    font-weight: bold;
    font-size: 24px;
    padding: 3px 73px;
    border-radius: 25px;
    min-width: 360px;
    text-align: center;
}

.video-testimonial {
    font-weight: bold;
    font-size: 26px;

}

.about-badge::before,
.about-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-badge::before {
    left: 10px;
}

.about-badge::after {
    right: 10px;
}

.review-section {
    /* background: #fff8f2; */
    padding: 70px 0;
}

.review-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.review-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
    /* box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-top: 2px solid var(--primary-color);
    ;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    /* border-top: 4px solid var(--header-btn-color); */
}


.review-stars {
    color: #f4b400;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    min-height: 90px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: #e69500; */
    background: var(--header-btn-color);
    color: var(--header-btn-textcolor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
}


.hanging-badge-section {
    /* margin-top: -22px; */
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.hanging-badge-section .about-badge-wrap {
    display: inline-block;

}

.hanging-badge-section .about-badge {

    padding: 4px 105px !important;
}

.review-section {
    /* background: url('../images/review.png') center/cover no-repeat; */
    /* border-radius: 20px; */
    padding: 25px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); */
}


@media (max-width: 768px) {
    .why-text {
        font-size: 14px !important;
    }

    .about-image {
        width: 50% !important;
    }

    .review-div {
        padding: 10px !important;
    }

    .app-container {
        /* background: #1f8f4f; */
        background: var(--primary-color);
        padding: 25px 0;
        border-radius: 20px 20px 0px 0px;
    }

    .success-title {

        font-size: 24px !important;
    }

    .hanging-badge-section .about-badge-wrap::before,
    .about-badge-wrap::after {

        height: 35px;

    }

    .about-badge,
    .hanging-badge-section .about-badge {
        min-width: 250px;
    }

    .hero-top-text {
        font-size: 16px;
    }

    .tn-pill {
        font-size: 18px;

        padding: 2px 14px;
    }

    .hero-side-img {
        width: 35px !important;
        height: 35px;
        object-fit: contain;
    }

    .review_msg p {
        text-align: justify;
        padding: 10px !important;
    }

}

.hero-side-img {
    width: 65px;
    height: 45px;
    object-fit: contain;
}

.seo-subheading {
    color: #e62f47;
    font-size: 21px;
    /* font-weight:600; */
    margin: 20px 0 10px;
}

.review-div {
    font-size: 28px;
}


.wa-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.whatsapp-float {
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.wa-text {
    background: #fff;
    color: #333;
    padding: 6px 10px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
    background: #1ebe5d;
}

@media (max-width: 768px) {
    .wa-text {
        display: none;
    }
}


.video-section {
    /* background: #f5ecd8; */
}

/* CARD */
.video-card {
    cursor: pointer;
}

.video-thumb {
    aspect-ratio: 9/16;
    /* perfect for video */
    height: auto;
}

/* FIXED HEIGHT (important) */
.video-thumb {
    position: relative;
    width: 100%;

    overflow: hidden;
    border-radius: 12px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: #fff;
    border-radius: 5px;
    padding: 0px 12px;
    font-size: 18px;
}

/* MODAL FIX (center issue solved) */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-box {
    width: 90%;
    max-width: 500px;
    background: #000;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

.video-box iframe {
    width: 100%;
    height: 300px;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
}

.hero-heading {
    position: relative;
}

.birds {
    position: absolute;
    width: 40px;
}

/* Left bird */
.birds-left {
    left: 25%;
    top: 50%;
    transform: translateY(-50%);
}

/* Right bird */
.birds-right {
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .birds {
        display: none;
    }
}

/* MOBILE FRAME */
.mobile-frame {
    width: 100%;
    height: 400px;
    margin: auto;
    background: #000;
    border-radius: 30px;
    padding: 10px;
    position: relative;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.4); */
}

/* notch (top speaker) */
.mobile-frame::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 10px;
}

/* screen */
.mobile-screen {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* video thumbnail */
.mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* play button center */
.mobile-screen .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 24px;
    padding: 8px 14px;
    border-radius: 8px;
}

.mobile-frame::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #333;
    border-radius: 10px;
}

@media (max-width:768px) {
    .mobile-frame {
        width: 170px;
        height: 320px;
    }
}


.videoSwiper .swiper-wrapper {


    width: auto !important;
}
/* =========================
   Couple Journey Section
========================= */

.couple-journey-section{
    background: #fff7f7;
    overflow: hidden;
}

/* =========================
   Mobile Phone Frame
========================= */

.mobile-video-frame{
    width: 250px;
    height: 430px;
    margin: auto;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.mobile-video-frame::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 9px;
    background: #000;
    border-radius: 20px;
    z-index: 2;
}

.mobile-video-frame iframe{
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

/* =========================
   Right Content
========================= */

.story-badge{
    display: inline-block;
    background: #ffe4ea;
    color: #d63384;
    padding: 8px 38px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.story-title{
    /* font-size: 52px; */
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.story-description{
    font-size: 18px;
    line-height: 2;
    color: #555;
}

/* =========================
   Feature Boxes
========================= */

.story-features{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-box{
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    min-width: 170px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.feature-icon{
    width: 55px;
    height: 55px;
    background: #ffe4ea;
    color: #d63384;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 12px;
    font-size: 24px;
}

.feature-box p{
    margin: 0;
    font-weight: 600;
    color: #333;
}

/* =========================
   Mobile Responsive
========================= */

@media(max-width:991px){

    .story-title{
        /* font-size: 36px; */
    }

    .story-description{
        font-size: 16px;
        line-height: 1.9;
    }

    .couple-story-content{
        text-align: center;
    }

    .story-features{
        justify-content: center;
    }

}

@media(max-width:576px){

    .mobile-video-frame{
        width: 240px;
        height: 480px;
    }

    .story-title{
        /* font-size: 28px; */
    }

}