/* =========================================================
   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: 700;
    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: 24px;
    color: #3D3044;

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

.hero-main-title {
    font-weight: 700;
    font-size: 37px;
    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: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 24px;
    width: 400px;
    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: #ED1F25;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

/* register button */
.register-btn {
    margin: auto;
    /* background: #219651; */
    background: var(--primary-color);
    border: none;
    width: 100%;
    padding: 5px 10px;
    border-radius: 15px;
    color: #fff;
    font-weight: 600;
}

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

/* Responsive */

@media (max-width:768px) {

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

    .hero-box {
        padding: 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: 28px;
    font-weight: 600;
    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;
}

.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: 23px;

    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;
}

/* Text */

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

.app-container {
    /* background: #1f8f4f; */
    background: var(--footer-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;
}

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

.site-footer {
    /* background: #2e8b57; */
    background: var(--footer-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(--footer-color);
}



.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(--green-btn) !important;
    color: #ffffff !important;
}

.enquiry_btn_color:hover {
    background: var(--green-btn) !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(--feature-text-color);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
}


.register-btn {
    background: var(--form-btn-color);
    color: var(--form-text-color);
}

.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: 600;
    font-size: 18px;
    padding: 4px 73px;
    border-radius: 25px;
    min-width: 360px;
    text-align: center;
}

.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 #1e8e3e;
    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: 700;
    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) {
    .about-image {
        width: 50% !important;
    }

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

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

    .success-title {

        font-size: 20px !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;
}