.match-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin-bottom: 70px;
}

/* LEFT FORM */
.match-form-box {
    width: 40%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.match-field {
    margin-bottom: 15px;
}

.match-field label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.match-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* BUTTON */
.match-btn {
    width: 100%;
    padding: 12px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.match-btn:hover {
    background: #c2185b;
}

/* RIGHT RESULT */
.match-result-box {
    width: 60%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.match-table {
    width: 100%;
    border-collapse: collapse;
}

.match-table th,
.match-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.match-yes {
    color: green;
    font-weight: bold;
}

.match-no {
    color: red;
    font-weight: bold;
}

@media (max-width:900px) {
    .match-form-box {
        width: 100%;
    }

    .match-container {
        display: block;
    }

    .match-result-box {
        width: 100%;
        margin: 25px 0 0;
    }

    .section-padding {
        padding: 50px 0 0;
    }

    .ab-wel.ab-info {
        padding: 0;
    }

    .home-tit.home-info {
        padding: 0;
    }

    .home-acces-main .slick-dots {
        padding-top: 30px;
    }

    .ab-sec2 ul li {
        width: 100%;
    }

    .fot-ban-inn {
        margin: 0px 0px 10px 0px;
    }
}

.floating-contact-bar {
    position: fixed;
    right: 20px;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-contact-bar a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-decoration: none;
}

/* Call */
.contact-call {
    background: #ff6b6b;
}

/* Mail */
.contact-mail {
    background: #4a69bd;
}

/* WhatsApp */
.contact-whatsapp {
    background: #25D366;
}

/* Hover Animation */
.floating-contact-bar a:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation */
.contact-whatsapp {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.community-scroll {
    background-color: #100006;
    background-image: url(../images/bg1.png);
    padding: 40px 0 70px;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    gap: 35px;
    white-space: nowrap;
    animation: scrollLeft 18s linear infinite;
}

.scroll-content span {
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.looking-title {
    text-align: center;
    margin-bottom: 25px;
}

.scroll-content i {
    color: #ff4d6d;
    font-size: 13px;
}

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

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

/* Hide input */
.custom-file-btn input {
    display: none;
}

/* Equal size button */
.custom-file-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 50px;

    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
}

/* 💍 Photo – Royal Maroon */
.btn-photo {
    background: linear-gradient(45deg, #800000, #b30000);
}

.btn-photo:hover {
    background: linear-gradient(45deg, #660000, #990000);
}

/* 📄 Bio Data – Gold Theme */
.btn-bio {
    background: linear-gradient(45deg, #c9a227, #ffd700);
    color: #000;
}

.btn-bio:hover {
    background: linear-gradient(45deg, #b8961e, #e6c200);
}

/* 🪔 Jathagam – Deep Purple (Traditional) */
.btn-jathagam {
    background: linear-gradient(45deg, #5a189a, #9d4edd);
}

.btn-jathagam:hover {
    background: linear-gradient(45deg, #3c096c, #7b2cbf);
}

.links a {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(45deg, #ff4e75, #ff7a9c);
    /* pink theme */
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.pro-detail .links a:hover {
    background: linear-gradient(45deg, #e6004c, #ff4e75);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 78, 117, 0.4);
}

.matching-list .profile-list {
    display: -webkit-box;
    /* OLD WebKit (Safari old) */
    display: -webkit-flex;
    /* OLD Chrome/Safari */
    display: -moz-box;
    /* OLD Firefox */
    display: -ms-flexbox;
    /* IE 10 */
    display: flex;
    /* Modern browsers */

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blur-list .call-btn {
    background: #e91e63;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
}

.blur-list .call-btn:hover {
    background: #c2185b;
}

.call-highlight {
    animation: softBlink 1.5s infinite;
    color: #e91e63;
    font-weight: 600;
    margin-bottom: 0;
    display: block;
}

@keyframes softBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-text {
    padding: 50px 0 30px;
    text-align: center;
}

/* BACKGROUND SLIDE */
.royal-slide {
    position: relative;
    height: 100vh;
}

.royal-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK GOLD OVERLAY */
.royal-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 59%), rgba(0, 0, 0, 0.4));
}

/* MAIN CONTENT */
.royal-layer {
    position: absolute;
    top: 57%;
    left: 6%;
    right: 6%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* LEFT TEXT */
.royal-content {
    color: #fff;
    max-width: 600px;
}

.royal-subtitle {
    color: #e91e63;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.royal-title {
    font-size: 52px;
    font-weight: 700;
}


.royal-desc {
    margin-top: 15px;
    opacity: 0.85;
}

/* RIGHT FORM (ROYAL GLASS) */
.royal-form-box {
    width: 340px;
    padding: 25px;
    border-radius: 12px;

    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.5);
    backdrop-filter: blur(10px);
}

/* FORM */
.royal-field {
    margin-bottom: 12px;
}

.royal-field label {
    color: #e91e63;
    font-size: 13px;
}

.royal-field select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #111;
    color: #fff;
    border: 1px solid #d4af37;
    border-radius: 6px;
}

/* BUTTON */
.royal-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #d4af37, #b8962e);
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

/* SLICK FIX */
.royal-slider .slick-slide {
    outline: none;
}

/* MOBILE */
@media(max-width:768px) {
    .royal-layer {
        flex-direction: column;
        text-align: center;
    }

    .royal-form-box {
        margin-top: 20px;
        width: 90%;
    }

    .royal-title {
        font-size: 32px;
    }

    .royal-layer {
        position: absolute;
        top: 75%;
        left: 6%;
        right: 6%;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
    }
}

/* INITIAL STATE */
.animate-item {
    color: #fff;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ACTIVE ANIMATION */
.slick-current .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* DELAY EFFECT (ROYAL STAGGER) */
.slick-current .royal-subtitle {
    transition-delay: 0.2s;
}

.slick-current .royal-title {
    transition-delay: 0.5s;
    color: #fff;
}

.slick-current .royal-desc {
    transition-delay: 0.8s;
    color: #fff;
}

.royal-title span {
    color: #e91e63;
    /* animation: goldGlow 2s infinite alternate; */
}

@keyframes goldGlow {
    from {
        text-shadow: 0 0 5px #e91e63;
    }

    to {
        text-shadow: 0 0 20px #ffd700;
    }
}

/* FORM HEADER */
.royal-form-head h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.royal-form-head span {
    color: #e91e63;
}

.royal-form-head p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 15px;
}

/* INPUT */
.royal-field input,
.royal-field select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #111;
    color: #fff;
    border: 1px solid #e91e63;
    border-radius: 6px;
}

/* GROUP (COUNTRY + CODE) */
.royal-field-group {
    display: flex;
    gap: 10px;
}

.royal-field-group .royal-field {
    flex: 1;
}

/* CHECKBOX */
.royal-check {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin: 10px 0;
    color: #ccc;
}

.royal-check input {
    margin-right: 8px;
}

/* BUTTON */
.royal-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #d4af37, #b8962e);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* FORM BOX */
.premium-form-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 340px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.premium-form-head h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.premium-form-head span {
    color: #e91e63;
}

.premium-form-head p {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

/* FIELD */
.premium-field {
    margin-bottom: 12px;
}

.premium-field label {
    font-size: 13px;
    color: #333;
    width: 100%;
}

/* INPUT + SELECT */
.premium-field input,
.premium-field select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
}

/* GROUP */
.premium-group {
    display: flex;
    gap: 10px;
}

/* CHECKBOX */
.premium-check {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin: 10px 0;
}

.premium-check input {
    margin-right: 6px;
}

/* BUTTON */
.premium-btn {
    width: 100%;
    padding: 12px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.premium-btn:hover {
    background: #c2185b;
}

/* ROW STRUCTURE */
.premium-row {
    display: flex;
    gap: 12px;
}

/* EACH FIELD */
.premium-row .premium-field {
    flex: 1;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .premium-row {
        flex-direction: column;
    }
}

/* ROW */
.premium-row {
    display: flex;
    gap: 12px;
}

.premium-row .premium-field {
    flex: 1;
}

/* GENDER OPTIONS */
.gender-options {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.gender-box {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    background: #f9f9f9;
    font-size: 14px;
}

/* HIDE RADIO */
.gender-box input {
    display: none;
}

/* ACTIVE SELECT */
.gender-box input:checked+span,
.gender-box input:checked {
    background: #e91e63;
    color: #fff;
}

/* HOVER EFFECT */
.gender-box:hover {
    border-color: #e91e63;
}

/* MOBILE */
@media (max-width: 768px) {
    .premium-row {
        flex-direction: column;
    }
}

/* CHECKBOX WRAPPER */
.premium-check {
    margin: 12px 0;
}

/* LABEL STYLE */
.check-box {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    color: #555;
    cursor: pointer;
}

/* HIDE DEFAULT */
.check-box input {
    margin-right: 8px;
    margin-top: 3px;
}

/* LINKS */
.check-box a {
    color: #e91e63;
    text-decoration: none;
}

.check-box a:hover {
    text-decoration: underline;
}

.premium-form {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
}

.back-light {
    background-color: #f0f8ff;
}

/* SECTION WITH BACKGROUND */
.feature-section {
    position: relative;
    background: url("../images/bg/matrimony-bg.jpg") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
}

/* DARK OVERLAY */
.feature-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* ROW */
.feature-row {
    position: relative;
    display: block;
    align-items: center;
    z-index: 2;
}

/* LEFT EMPTY */
.feature-left {
    width: 100%;
}

/* RIGHT CONTENT */
.feature-right {
    width: 100%;
    color: #fff;
}

/* TITLE */
.feature-title {
    font-size: 34px;
    margin-bottom: 10px;
}

/* SUBTEXT */
.feature-sub {
    margin-bottom: 20px;
    color: #ddd;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

/* ICON */
.feature-list img {
    width: 45px;
    margin-right: 15px;
}

/* TEXT */
.feature-list span {
    font-size: 16px;
}

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

    .feature-row {
        flex-direction: column;
    }

    .feature-left {
        display: none;
    }

    .feature-right {
        width: 100%;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }
}

/* LIST GRID */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

/* 4 ITEMS PER ROW (EQUAL WIDTH) */
.feature-list li {
    width: calc(25% - 12px);
    /* 🔥 adjust for gap */
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ICON */
.feature-list li img {
    width: 90px;
    margin-bottom: 12px;
    padding: 12px;
}

/* TEXT */
.feature-list li span {
    font-size: 16px;
    color: #fff;
}

/* HOVER EFFECT */
.feature-list li {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #ffffff0f;
    border-radius: 5px;
    padding: 20px;
}

.feature-list li:hover {
    transform: translateY(-8px);
}

.profile-section {
    padding-bottom: 100px;
}

/* MOBILE */
@media (max-width: 1399.99px) {
    .royal-slide {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .feature-list li {
        width: 100%;
    }

    section.back-light.section-padding {
        margin: 130px 0 0;
    }

}

@media (max-width: 580px) {
    .feature-list li {
        width: 100%;
    }

    .royal-layer {
        top: 110%;
    }

    .home-tit {
        padding-top: 300px;
        margin-bottom: 32px;
    }
}