﻿@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);

@font-face {
    font-family: Poppins-Thin;
    src: url('../fonts/Poppins-Thin.ttf')
}

@font-face {
    font-family: Poppins-Light;
    src: url('../fonts/Poppins-Light.ttf')
}

@font-face {
    font-family: Poppins-ExtraLight;
    src: url('../fonts/Poppins-ExtraLight.ttf')
}

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/Poppins-Regular.ttf')
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/Poppins-Medium.ttf')
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/Poppins-SemiBold.ttf')
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/Poppins-Bold.ttf')
}

@font-face {
    font-family: Poppins-ExtraBold;
    src: url('../fonts/Poppins-ExtraBold.ttf')
}

.Poppins-Thin {
    font-family: Poppins-Thin, sans-serif
}

.Poppins-Light {
    font-family: Poppins-Light, sans-serif
}

.Poppins-ExtraLight {
    font-family: Poppins-ExtraLight, sans-serif
}

.poppins-Regular {
    font-family: Poppins-Regular, sans-serif
}

.Poppins-Medium {
    font-family: Poppins-Medium, sans-serif
}

.Poppins-SemiBold {
    font-family: Poppins-SemiBold, sans-serif
}

.Poppins-Bold {
    font-family: Poppins-Bold, sans-serif
}

.Poppins-ExtraBold {
    font-family: Poppins-ExtraBold, sans-serif
}
/* ========== FONT ========== */

/* ========== GENERAL ========== */
body {
    margin: 0;
    font-size: 14px;
    font-family: Poppins-Regular, sans-serif;
padding-top:25px;
}

::selection {
    background: #b0283a;
    color: #fff;
}
/* ========== HEADER ========== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    
    transition: transform 0.6s ease, box-shadow 0.6s ease; /* slower than before */
    box-shadow: 0 2px 5px rgba(0,0,0,0); /* Initial shadow */
}

.main-header.hide {
    transform: translateY(-120px); /* Hide header */
    box-shadow: 0 0 0 rgba(0,0,0,0);
}

.main-header.show-shadow {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(0deg, rgb(109, 36, 81), rgb(149, 28, 34));
    padding: 8px 20px;
    flex-wrap: wrap;
}
a{text-decoration:none;}

/* ========== LOGO ========== */
.logo-search {
    display: flex;
    align-items: center;
}

.logo-holder img {
    height: 40px;
}

/* ========== MAIN MENU ========== */
.main-menu {
    display: flex;
    align-items: center;
}

    .main-menu ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-menu li a {
        color: #fff;
        padding: 10px 15px;
        text-decoration: none;
        font-size: 14px;
    }

/* ========== MENU TOGGLE (MOBILE) ========== */
.menu-header {
    display: none;
    font-size: 30px;
    color: #fff;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.menu-close {
    display: none;
    cursor: pointer;
}

/* ========== RIGHT SIDE TOOLS ========== */
.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-search_btn {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
}

    .header-search_btn:hover {
        color: #fff;
    }

/* ========== USER & REGISTER BUTTONS ========== */
.user-button,
.add-list {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 18px;
    text-decoration: none;
    color: #fff;
    border-left: 1px solid rgba(249, 249, 249, 0.39);
    font-weight: 500;
    cursor: pointer;
}

    .user-button svg,
    .add-list svg {
        stroke: currentColor;
    }

.add-list {
    border-radius: 4px;
    background: #510002;
    box-shadow: 0px 0px 0px 6px rgba(255,255,255,0.1);
}

    .add-list:hover {
        box-shadow: 0px 0px 0px 6px rgba(255,255,255,0);
    }

    .add-list span,
    .user-button span {
        color: #fff;
        /*padding-left: 10px;*/
    }

/* ========== MENU TOGGLE ICON ========== */
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* ========== OVERLAY ========== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-menu.show + .menu-overlay {
    display: block;
    opacity: 1;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1097px) {
    .main-menu {
        position: fixed;
        overflow-y: auto;
        top: 0;
        right: -320px;
        width: 280px;
        height: 100vh;
        background-image: linear-gradient(0deg, rgb(109, 36, 81), rgb(149, 28, 34));
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 1000;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

        .main-menu.show {
            right: 0;
        }

        .main-menu ul {
            flex-direction: column;
            padding-top: 20px;
        }

        .main-menu li {
            margin-bottom: 15px;
        }

            .main-menu li a {
                color: #fff;
                font-size: 14px;
                display: block;
                border-radius: 6px;
                transition: background 0.2s;
            }

                .main-menu li a:hover {
                    background-color: rgba(255, 255, 255, 0.1);
                }

    .menu-header,
    .menu-close {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hide login/register text at small width */
@media (max-width: 590px) {
    .user-button span,
    .add-list span {
        display: none;
    }

    .user-button,
    .add-list {
        padding: 4px 10px;
        gap: 0;
    }
}
/* By default hide icons on desktop */
.mobile-icon {
    display: none !important;
    margin-right: 10px;
}

/* Show icons on mobile only */
@media screen and (max-width: 1097px) {
    .mobile-icon {
        display: inline-block !important;
    }
}

.call-us-link {
    font-weight: 600;
    color: #fff;
    /*display: block;*/
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
    background-color: #510002;
}

    .call-us-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }

.register-link {
    font-weight: 600;
    color: #fff;
    /*display: block;*/
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
}

    .register-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        text-decoration: none;
    }

/* Icon visibility already handled by this */
.mobile-icon {
    display: none;
    margin-right: 10px;
}


/* Hide/show "Call Us" links based on screen width */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media screen and (max-width: 1097px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}
/*a:hover{color:#fff !important;}*/





.swiper {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
}

.swiper-slide {
    background: #f3f3f3;
    border-radius: 20px;
    overflow: hidden;
    /*padding: 20px;*/
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.user-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.tooltip {
    position: absolute;
    top: calc(100% + 14px); /* increase gap slightly for bigger arrow */
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 9px 25px;
    border-radius: 4px;
    font-size: 16px !important;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.tooltip-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #000;
    z-index: 100;
}

.tooltip.visible {
    opacity: 1;
}

.tooltip.shake {
    animation: zigzag 0.4s ease-in-out;
}

@keyframes zigzag {
    0% {
        transform: translateX(-50%) translateY(0);
    }

    25% {
        transform: translateX(-48%) translateY(-2px);
    }

    50% {
        transform: translateX(-52%) translateY(2px);
    }

    75% {
        transform: translateX(-48%) translateY(-2px);
    }

    100% {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 590px) {
    .tooltip,
    .tooltip-arrow {
        display: block !important;
    }
}


.user-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 18px;
    text-decoration: none;
    color: #fff;
    border-left: 1px solid rgba(249, 249, 249, 0.39);
    cursor: pointer;
}

    .user-button:hover {
        text-decoration: none;
        color: #fff;
    }

    .user-button svg {
        stroke: currentColor;
    }



.add-list {
    float: right;
    padding: 0 12px;
    position: relative;
    height: 36px;
    text-decoration: none;
    line-height: 36px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    transition: all .2s ease-in-out;
    box-shadow: 0px 0px 0px 6px rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .add-list:hover {
        box-shadow: 0px 0px 0px 6px rgba(255,255,255,0.0);
        color: #fff;
    }

    .add-list span {
        color: #fff;
        /*padding-left: 10px;*/
    }
/* 👇 Login text hide when screen <= 512px */
@media (max-width: 590px) {
    .user-button span {
        display: none;
    }

    .user-button {
        padding: 4px 10px; /* reduce padding when only icon */
        gap: 0; /* no gap needed */
    }



    .add-list span {
        display: none;
    }

    .add-list {
        padding: 0 10px;
        gap: 0;
    }
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    /*font-family: 'Inter', sans-serif;*/
    /*background: #111;
                color: #fff;*/
}

#bakimage {
    position: relative;
    background-image: url('https://rishtonkasansar.com/assets/img/back11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 125px 20px 80px 20px;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
}

    #bakimage .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(17, 17, 17, 0.7); /* blackish overlay */
        z-index: 2;
    }

    #bakimage > *:not(.overlay) {
        position: relative;
        z-index: 3;
    }

.intro-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

    .intro-item h1 {
        font-size: 46px;
        line-height: 70px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
    }

    .intro-item h3 {
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        margin-top: 0px;
    }

.section-separator {
    display: block;
    width: 60px;
    height: 3px;
    background: #5ec3ff;
    margin: 0 auto 0px;
}

.bubbles {
    position: relative;
    width: 100%;
    /*height: 100px;*/
    overflow: hidden;
    z-index: 1;
}

.individual-bubble {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    animation: bubble-rise 4.5s ease-in forwards;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    70% {
        transform: translateY(-60px) scale(1);
        opacity: 0.7;
    }

    85% {
        transform: translateY(-70px) scale(1.2);
        opacity: 0.2;
    }

    100% {
        transform: translateY(-80px) scale(0.2);
        opacity: 0;
    }
}

.navm {
    display: flex;
    justify-content: center;
    /*background: rgba(0, 0, 0, 0.5);*/
    /*padding: 1rem 0;*/
    margin-bottom: 20px;
}

.nav-tabs {
    display: flex;
    gap: 2rem;
}

    .nav-tabs a {
        text-decoration: none;
        color: #ccc;
        font-weight: 600;
        padding-bottom: 5px;
        position: relative;
    }

        .nav-tabs a.active {
            color: #9af97f;
        }

a:focus {
    outline: none;
}

.nav-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -33px;
    left: 50%;
    transform: translateX(-50%);
    width: 13px;
    height: 13px;
    background: #fff;
    /* Arrow pointing UP */
    clip-path: polygon(50% 0%, 0 100%, 100% 100%);
}

.search-box {
    max-width: 1000px;
    background: #fff;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 0.2);
}

.d-form-group {
    position: relative;
    flex: 1 1 250px;
    padding: 10px;
    margin: 0;
}

    .d-form-group label {
        position: absolute;
        left: 14px;
        top: 14px;
        color: #23232f;
        font-size: 14px;
        transition: 0.2s;
        pointer-events: none;
        background: #f9f9f9;
        padding: 0 4px 6px 0px;
        width:75%;
    }

    .d-form-group input {
        width: 100%;
        padding: 14px 14px 4px;
        font-size: 14px;
        border: 1px solid #e5e7f2;
        outline: none;
        border-radius: 4px;
        background: #f9f9f9;
        color: #000;
    }

        .d-form-group input:focus {
            background: #fff;
            box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
        }

            .d-form-group input:focus + label,
            .d-form-group input:not(:placeholder-shown) + label/*,
            .d-floating-label select:focus + label,
            .d-floating-label select:valid + label*/ {
                top: -3px;
                font-size: 12px;
                color: #111;
                background-color: #fff;
                padding: 2px 5px;
                width: none;
            }
            .d-form-group input:focus + label,
            .d-form-group input.has-value + label {
                top: -3px;
                font-size: 12px;
                color: #111;
                background-color: #fff;
                padding: 2px 5px;
            }



    .d-form-group select {
        width: 100%;
        padding: 14px 14px 4px;
        font-size: 14px;
        border: 1px solid #e5e7f2;
        outline: none;
        border-radius: 4px;
        background: #f9f9f9;
        color: #000;
        height: 38px;
    }


        .d-form-group select:focus {
            background: #fff;
            box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
        }


            .d-form-group select:focus + label,
            .d-form-group select.filled + label {
                top: -3px;
                font-size: 12px;
                color: #111;
                background-color: #Fff;
                padding: 2px 5px;
                width: none;
            }

@media (max-width: 769px) {
    .search-box {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* form fields ke beech ka gap control karega */
    }

    .d-form-group {
        flex: 1 1 100%;
        padding: 5px 0; /* zyada gap kam karega */
        width: 100%;
    }

        .d-form-group input,
        .d-form-group select {
            width: 100% !important;
        }
}

@media (max-width: 769px) {
    .d-form-group label {
        top: 12px;
    }
}

/***************************************************/

.form-group {
    position: relative;
    flex: 1 1 180px;
    padding: 0px 0px 20px 0px;
    margin: 0;
}

    .form-group label {
        position: absolute;
        left: 16px;
        top: 10px;
        color: #495057;
        font-size: 14px;
        transition: 0.2s;
        pointer-events: none;
        background: #fff;
        padding: 4px 4px;
    }

    .form-group input {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #acb5bd;
        outline: none;
        border-radius: 8px;
        /*background: #f9f9f9;*/
        color: #495057;
    }

        /*input[type="text"] {
    text-transform: capitalize;
}*/

        .form-group input:focus {
            background: #fff;
            box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
        }

            .form-group input:focus + label,
            .form-group input:not(:placeholder-shown) + label,
            .floating-label select:focus + label,
            .floating-label select:valid + label {
                top: -11px;
                left: 10px;
                font-size: 12px;
                color: #111;
                background-color: #fff;
                padding: 2px 5px;
            }


    .form-group select {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #acb5bd;
        outline: none;
        border-radius: 8px;
        background: #fff;
        color: #495057;
    }


        .form-group select:focus {
            background: #fff;
            box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
        }


            .form-group select:focus + label,
            .form-group select.filled + label {
                top: -11px;
                font-size: 12px;
                color: #000;
                background-color: #fff;
                padding: 2px 5px;
            }


    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #acb5bd;
        outline: none;
        border-radius: 8px;
        color: #495057;
        resize: vertical; /* user ko height resize karne dega */
        min-height: 120px; /* multiline ke liye height */
    }

        .form-group textarea:focus {
            background: #fff;
            box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
        }

            .form-group textarea:focus + label,
            .form-group textarea:not(:placeholder-shown) + label {
                top: -11px;
                left: 10px;
                font-size: 12px;
                color: #111;
                background-color: #fff;
                padding: 2px 5px;
            }

/***************************************************/


.search-btn {
    background-image: linear-gradient(0deg, rgb(109, 36, 81) 0%, rgb(149, 28, 34) 100%);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    /*margin: 10px;*/
}

.clear {
    color: red;
    cursor: pointer;
    padding: 14px;
}

@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-box {
        flex-direction: column;
    }



    .intro-item h1 {
        font-size: 28px;
        line-height: 40px;
        font-weight: 900;
        margin-bottom: 10px;
        color: #fff;
        font-family: 'Raleway', sans-serif;
    }

    .intro-item h3 {
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        margin-top: 0px;
    }

    .centeral {
        display: flex;
        justify-content: center;
    }

    .search-btn {
        width: 140px;
        text-align: center;
    }
}

/*<!-- Bubble Hero Text -->*/

.typewriter-wrapper {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
    /*margin-bottom: 10px;*/
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 970px) {
    .typewriter-wrapper {
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        position: relative;
        font-size: 30px;
        line-height: 40px;
        font-weight: 900;
        /*margin-bottom: 10px;*/
        color: #fff;
        font-family: 'Raleway', sans-serif;
    }
}

@media (max-width: 830px) {
    .typewriter-wrapper {
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        position: relative;
        font-size: 24px;
        line-height: 34px;
        font-weight: 900;
        /*margin-bottom: 10px;*/
        color: #fff;
        font-family: 'Raleway', sans-serif;
    }
}

@media (max-width: 680px) {
    .typewriter-wrapper {
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        position: relative;
        font-size: 18px;
        line-height: 28px;
        font-weight: 900;
        /*margin-bottom: 10px;*/
        color: #fff;
        font-family: 'Raleway', sans-serif;
    }
}

@media (max-width: 530px) {
    .typewriter-wrapper {
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        position: relative;
        font-size: 14px;
        line-height: 24px;
        font-weight: 900;
        /*margin-bottom: 10px;*/
        color: #fff;
        font-family: 'Raleway', sans-serif;
    }
}

.typewriter-text {
    display: inline-block;
    border-right: 6px solid #fff;
    animation: blink 0.7s steps(1) infinite;
    white-space: nowrap;
    overflow: hidden;
}

.hidden-measure {
    visibility: hidden;
    padding-right: 15px;
    position: absolute;
    white-space: nowrap;
}




/*<!-- Search Tab -->*/

.hero-categories {
    position: relative;
    z-index: 3;
    margin-top: 40px;
    text-align: center;
    padding: 0 20px;
}

.hero-categories_title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-categories ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-categories li {
    display: inline-flex;
}

    .hero-categories li a {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        padding: 10px 18px;
        border-radius: 40px;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .hero-categories li a i {
            font-size: 16px;
        }

        .hero-categories li a:hover {
            background: #5ec3ff;
            color: #111;
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    .hero-categories_title {
        font-size: 16px;
    }

    .hero-categories ul {
        gap: 16px;
    }

    .hero-categories li a {
        padding: 8px 16px;
        font-size: 13px;
    }
}



.section-title {
    width: 100%;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

    .section-title h2 {
        color: #283965;
        font-size: 34px;
        font-weight: bold;
        margin: 0 0 10px;
        position: relative;
        
    }

.section-subtitle {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: -18px;
    font-size: 50px;
    opacity: 0.08;
    z-index: -1;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
    color: #283965;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(255,255,255,0.95) 100%);
}

.section-separator {
    display: inline-block;
    width: 100px;
    height: 3px;
    background: #283965;
    margin: 5px auto;
    border-radius: 2px;
}

.section-title p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}


.gallery-item {
    max-width: 400px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 14px 0 rgba(37, 44, 65, 0.12);
    transition: transform 0.3s ease;
}

/*.gallery-item:hover {
    transform: translateY(-5px);
}*/

.listing-item,
.listing-card {
    display: flex;
    flex-direction: column;
}

.listing-image {
    overflow: hidden; /* This is important for inner zoom */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .listing-image img {
        width: 100%;
        height: 280px;
        display: block;
        object-fit: cover;
        object-position: top;
        transition: transform 0.5s ease;
    }

.gallery-item:hover .listing-image img {
    transform: scale(1.1); /* Zooms the image on hover */
}

.listing-content {
    padding: 10px 10px 0px 10px;
    background-color: #fff;
    top: -15px;
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.listing-title {
    font-size: 18px;
    font-weight: 600;
    color: #283965;
    margin: 0;
    text-align: center;
}

    .listing-title a {
        text-decoration: none;
        color: #283965;
    }

/*<!-- video section-->*/

.face2face-section {
    background-image: linear-gradient(50deg, rgb(149, 28, 34) 0%, rgb(109, 36, 81) 100%);
    padding: 0px 0;
    color: #fff;
}

.video-box video {
    width: 100%;
    max-height: 265px;
    border: 12px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.video-link img {
    margin-top: 20px;
    width: 100px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 5px;
}

.content-box {
    padding: 20px;
    font-size: 20px;
    line-height: 1.6;
}


.more-videos-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    color: #d32f2f;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
}

    .more-videos-btn:hover {
        background-color: #fbe9e7;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        color: #d32f2f;
    }

.yt-play-icon {
    width: 34px;
    height: 24px;
}




/*<!-- success story -->*/

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.left-section {
    flex: 1 1 300px;
    /*max-width: 350px;*/
    color: #283965;
}

    .left-section h2 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .left-section p {
        font-size: 22px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

.know-more-btn {
    display: inline-block;
    background-image: linear-gradient(0deg, rgb(109, 36, 81) 0%, rgb(149, 28, 34) 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
}

    .know-more-btn:hover {
        background-color: #00989a;
    }

.register-btn {
    display: inline-block;
    background-color: #fff;
    color: #283965;
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
}

    .register-btn:hover {
        color: #283965;
    }

.swiper {
    width: 100%;
    max-width: 800px;
    flex: 2 1 600px;
}

.swiper-slide {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .swiper-slide img {
        width: 100%;
        height: 280px;
        display: block;
        object-fit: cover;
        object-position: top;
        transition: transform 0.5s ease;
        display: block;
    }

.story-content {
    padding: 20px;
}

    .story-content h4 {
        margin: 0 0 10px;
        font-size: 22px;
        font-weight: 700;
        color: #283965;
    }

    .story-content p {
        font-size: 18px;
        color: #283965;
        line-height: 1.5;
    }

.swiper-pagination-bullets {
    margin-top: 6px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-section {
        max-width: 100%;
        text-align: center;
    }

    .swiper {
        max-width: 100%;
    }

    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: unset;
        top: var(--swiper-pagination-top,auto);
        left: 0;
        width: 100%;
    }
}

.swiper-pagination-bullet-active {
    opacity: 0.8;
    background: rgb(149, 28, 34);
}

.swiper-button-next, .swiper-button-prev {
    opacity: 0.8;
    color: #fff !important;
    background-color: #00000080;
    padding: 35px 22px;
    top: 39.5%;
}

:root {
    --swiper-navigation-size: 25px;
}

/*<!-- Swiper Slider -->*/


/* Force pagination to be relative to position it */
.swiper {
    position: relative;
}

.swiper-pagination {
    position: relative !important;
    /*background-color: rgba(0, 0, 0, 0.29);*/
    display: inline-flex; /* Flex to align bullets */
    align-items: center;
    justify-content: center;
    height: 14px;
    padding: 0 4px; /* Reduce horizontal padding */
    border-radius: 20px;
    overflow: hidden;
    width: auto !important; /* Prevent full width */
}

/* Center using flex wrapper */
.swiper-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background-color: rgba(202, 202, 202, 0.89) !important;
    width: 6px;
    height: 6px;
    margin: 0 2px; /* Reduce space between bullets */
    opacity: 1;
    display: inline-block;
}

.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.67);
}






/* Wider bullet container */
.swiper-pagination-bullet {
    position: relative;
    width: 40px !important; /* ⬅️ Increased width */
    height: 5px !important; /* ⬅️ Slim pill shape */
    background: #c1c1c1;
    border-radius: 10px !important;
    overflow: hidden;
    margin: 0 6px;
    display: inline-block;
}

    /* Fill animation layer */
    .swiper-pagination-bullet::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: #6C63FF; /* Fill color */
        width: 0%;
        transition: none;
    }

/* Active bullet fill animation */
.swiper-pagination-bullet-active::after {
    animation: fillProgress 5s linear forwards; /* Match autoplay delay */
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/*<!-- we are proude -->*/

.section {
    text-align: center;
    padding: 60px 20px;
    margin: auto;
    background-color: #E6F0FC;
}

    .section h2 {
        font-size: 34px;
        color: #283965;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .section p {
        color: #283965;
        max-width: 600px;
        margin: 0 auto 40px;
        font-size: 16px;
    }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.feature-box {
    flex: 1 1 220px;
    max-width: 250px;
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.73);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #6C63FF;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.15);
}

.feature-box h4 {
    font-size: 18px;
    color: #1a1a4a;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-box p {
    font-size: 14px;
    color: #283965;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
}

.icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: #6C63FF;
}

/*<!-- Our App Available Now -->*/

.app-section {
    position: relative;
    background-image: linear-gradient(0deg, rgb(109, 36, 81), rgb(149, 28, 34));
    padding: 30px 20px;
    color: white;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;
      justify-content: space-between;*/
    /*gap: 40px;*/
    z-index: 2;
    position: relative;
}

.app-content {
    flex: 1 1 500px;
}

    .app-content h2 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .app-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.store-btn {
    background: white;
    color: #000;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

    .store-btn i {
        font-size: 20px;
        margin-right: 10px;
    }

    .store-btn:hover {
        transform: scale(1.05);
    }

.app-image {
    flex: 1 1 500px;
    text-align: center;
    /*transform: rotate(-15deg) skewY(-2deg);*/
    transform-origin: center;
}

    .app-image img {
        max-width: 100%;
        height: auto;
        border-radius: 40px;
        /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
    }

/* Parallax Shapes */
.shape-wrap {
    position: absolute;
    z-index: 1;
}

.circle, .capsule {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    animation: float 8s ease-in-out infinite;
}

    .circle.small {
        width: 30px;
        height: 30px;
    }

    .circle.big {
        width: 100px;
        height: 100px;
    }

    .circle.medium {
        width: 60px;
        height: 60px;
    }

.capsule {
    border-radius: 50px;
    width: 180px;
    height: 60px;
    transform: rotate(25deg);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .app-image {
        transform: none;
    }
}

@media (max-width: 768px) {
    .app-section {
        padding: 40px 20px;
    }

    .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .store-buttons {
        justify-content: center;
    }

    .app-content,
    .app-image {
        flex: 1 1 auto !important; /* Fixes the height forcing issue */
        width: 100%;
    }

    .app-image {
        transform: none;
        padding: 0;
    }

        .app-image img {
            max-width: 300px;
            width: 100%;
            margin: 0 auto;
            display: block;
        }
}



/*<!--aboutus-->*/

.aboutus-archives {
    padding: 0px 0px;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.aboutus-content {
    /*max-width: 800px;*/
    margin: 0 auto;
}

    .aboutus-content .subtitle {
        font-size: 16px;
        font-weight: 600;
        color: #888;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .aboutus-content .title {
        font-size: 36px;
        font-weight: 700;
        margin: 0px;
        color: #222;
    }

    .aboutus-content .icon img {
        margin: 10px 0;
    }

    .aboutus-content .description {
        font-size: 18px;
        color: #555;
        text-align: justify !important;
        line-height: 1.7;
        margin-top: 15px;
    }

.register-content .title {
    font-size: 24px;
    font-weight: 700;
    margin: 0px;
    color: #222;
}

.register-content .subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .register-content .title {
        font-size: 22px;
    }

    .register-content .description {
        font-size: 14px;
    }

    .register-content .subtitle {
        font-size: 12px;
        font-weight: 600;
        color: #888;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}


.secure-badge-wrapper {
    /*width: 100%;*/
    max-width: 100%;
    padding: 20px 10px 10px;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}

.secure-heading-box {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 900;
    color: #555;
    z-index: 1;
    border: 1px solid #ccc;
    white-space: nowrap;
}

.secure-badge {
    border: 1px solid #ccc;
    padding: 20px 10px 10px;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    background: #f9f9f9;
    box-sizing: border-box;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}


.badge-item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    background-color: #555;
    border-radius: 2px;
    white-space: nowrap;
}

/* ✅ Media query for screen width less than 511px */
@media (max-width: 550px) {
    .secure-badge {
        flex-direction: column;
        align-items: center;
    }

    .badge-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}


.footer-nav {
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
}

    .footer-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .footer-nav ul li {
            flex: 1 1 auto;
            max-width: 200px;
            text-align: center;
        }

            .footer-nav ul li a {
                text-decoration: none;
                color: #283965;
                font-size: 14px;
                font-weight: 600;
                padding: 8px 10px;
                display: block;
                border-radius: 4px;
                transition: background 0.3s ease;
            }

                .footer-nav ul li a:hover {
                    background: rgba(255, 255, 255, 0.1);
                    color: #6C63FF;
                }

/* Mobile View */
@media (max-width: 600px) {
    .footer-nav ul {
        /*flex-direction: column;*/
        align-items: center;
        gap: 0px;
    }

        .footer-nav ul li {
            max-width: 100%;
        }
}

.social-icons a {
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease;
}

    .social-icons a:hover i {
        color: #0077cc; /* Hover color */
        transform: scale(1.1);
    }

.custom-footer {
    background: #f8f8f8;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    border-top: 1px solid #ddd;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #283965;
    font-weight: 600;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    background-color: #e5e4e4;
}

.footer-column ul {
    padding: 0;
    list-style: none;
}

    .footer-column ul li {
        margin-bottom: 6px;
    }

        .footer-column ul li a {
            color: #283965;
            text-decoration: none;
            transition: color 0.3s, transform 0.3s ease;
            display: inline-block;
            padding-left: 10px; /* slight left indent */
            font-weight: 500;
        }

            .footer-column ul li a:hover {
                color: #6C63FF;
                transform: translateX(5px); /* slide right on hover */
            }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.social-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
/* ✅ Mobile View Center Alignment */
@media (max-width: 811px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .secure-badge-wrapper {
        margin: 0 auto;
    }
}

.social-icons a {
    margin-right: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

    .social-icons a:hover {
        transform: scale(1.1);
    }

.secure-icon img {
    height: 40px;
}

.footer-copy {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #283965;
}


.footer-column .highlight-heading {
    color: #005bff; /* Gold color for highlight */
    /*border-bottom: 2px solid #ffd700;*/
    display: inline-block;
    padding-bottom: 4px;
    margin-top: 20px;
}

.secure-badge {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 10px;
    width: max-content;
    font-family: Arial, sans-serif;
    background: #fff;
}

.secure-badge {
    gap: 10px;
    justify-content: center;
    position: relative;
}

    .secure-badge .title {
        font-size: 14px;
        font-weight: bold;
        color: #ff007f;
        margin-right: 12px;
        border-right: 1px solid #ccc;
        padding-right: 12px;
    }

    .secure-badge .item {
        display: flex;
        align-items: center;
        margin-right: 12px;
    }

    .secure-badge .icon-box {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }

    .secure-badge .text {
        font-size: 12px;
        line-height: 1.2;
        color: #333;
    }

    .secure-badge .pink {
        background: #f75c8d;
        color: #fff;
        padding: 2px 6px;
        border-radius: 3px;
    }

    .secure-badge .green {
        background: #d8e986;
        color: #333;
        padding: 2px 6px;
        border-radius: 3px;
    }


.hotline-phone-ring-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999999;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block;
}

.hotline-phone-ring-circle {
    width: 110px;
    height: 110px;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #08205b;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 80px;
    height: 80px;
    top: 16px;
    left: 16px;
    position: absolute;
    background-color: rgba(8, 32, 91, 0.07);
    border-radius: 100%;
    border: 0px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.hotline-phone-ring-img-circle {
    background-color: #08205b;
    width: 50px;
    height: 50px;
    top: 31px;
    left: 31px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 0px solid transparent;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hotline-phone-ring-img-circle .pps-btn-img {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

        .hotline-phone-ring-img-circle .pps-btn-img img {
            width: 33px;
            height: 33px;
        }

.hotline-bar {
    position: absolute;
    height: 45px;
    line-height: 40px;
    border-radius: 3px;
    padding: 0px 15px 0px 35px;
    background-size: 100%;
    cursor: pointer;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    z-index: 9;
    border-radius: 50px !important;
    left: 42px;
    bottom: 31px;
}

    .hotline-bar > a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        font-weight: bold;
        text-indent: 32px;
        letter-spacing: 1px;
        display: block;
        line-height: 45px;
        font-family: Arial;
    }

        .hotline-bar > a:hover,
        .hotline-bar > a:active {
            color: #fff;
        }

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@media (max-width: 768px) {
    .hotline-bar {
        display: block;
    }
}

.hotline-phone-ring-circle {
    border-color: #08205b;
}

.hotline-phone-ring-circle-fill, .hotline-phone-ring-img-circle, .hotline-bar {
    background-color: #283965;
}

.register-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
    border-radius: 10px;
}

.container-600 {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
    border-radius: 10px;
}

.form-left {
    flex: 2;
}

    .form-left h2 {
        font-size: 20px;
        margin-bottom: 25px;
        color: #333;
    }


.privacy-options {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

    .privacy-options button {
        padding: 8px 14px;
        border: 1px solid #ccc;
        background: #f1f1f1;
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
    }

    .privacy-options .active {
        background: #b0283a;
        color: #fff;
        border-color: #b0283a;
    }

.btn-register {
    background: #b0283a;
    color: #fff;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .btn-register:hover {
        background: #b0283a;
        color: #fff;
        padding: 12px 20px;
        border: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
    }

    .btn-register:focus {
        background: #b0283a;
        color: #fff;
        padding: 12px 20px;
        border: none;
        font-size: 16px;
        font-weight: bold;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
    }

.terms {
    margin-top: 15px;
    font-size: 12px;
}

    .terms a {
        color: #b0283a;
        text-decoration: none;
    }

.form-right {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.why-title {
    font-size: 15px;
    font-weight: bold;
    color: #555;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

    .why-title::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 140%; /* text se kitna zyada border chahiye yahan set karo */
        border-bottom: 2px solid #ccc;
    }

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    padding-top: 15px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #495057;
    text-align: center;
    max-width: 140px;
}

    .why-item svg {
        margin-bottom: 8px;
    }
/* WHY REGISTER mobile pe hide */
@media (max-width: 768px) {
    .form-right {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
    }

    .form-right {
        border-left: none;
        padding-left: 0;
    }
}

.row-icon i {
    font-size: 20px;
    color: #495057;
}

.row-icon span {
    margin-top: 12px;
}

.verified-check {
    color: #28a745;
    font-size: 16px;
    margin-left: auto;
}

.form-right {
    flex: 1;
    padding-left: 20px;
    border-left: 1px solid #eee;
    position: sticky;
    top: 20px; /* distance from top of viewport */
    align-self: flex-start; /* ensure it sticks at top inside flex */
    height: fit-content; /* so it only wraps content */
}

.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal width */
    gap: 15px; /* space between */
}

@media (max-width: 768px) {
    .name-row {
        grid-template-columns: 1fr; /* stack vertically on small screens */
    }

    .name-row {
        display: grid;
        grid-template-columns: 1fr 1fr; /* equal width */
        gap: 15px; /* space between */
    }

    .register-container {
        padding: 20px;
    }

    .container-600 {
        padding: 20px;
    }
}
/* Sirf floating-label ke andar ke dropdowns ke liye */
/* Sirf floating-label ke andar ke dropdowns ke liye */
.floating-label select {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 10px center;
    background-size: 16px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px; /* Arrow ke liye space */
}

    /* Focus ya click hone par bhi arrow dikhana */
    .floating-label select:focus,
    .floating-label select:active {
        background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 10px center;
        background-size: 16px auto;
        outline: none;
    }

    .floating-label select option {
        background-color: #fff;
    }
    /* IE/Edge purane versions ke liye */
    .floating-label select::-ms-expand {
        display: none;
    }
/* Or center with border */
.or-withline-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

    .or-withline-center span {
        font-weight: bold;
        color: #555;
    }

    /* Left line: fade right → left */
    .or-withline-center::before {
        content: "";
        height: 1px;
        background: linear-gradient(270deg, #b1b3b9, hsla(0,0%,85.1%,0));
        width: 40%;
    }

    /* Right line: fade left → right */
    .or-withline-center::after {
        content: "";
        height: 1px;
        background: linear-gradient(90deg, #b1b3b9, hsla(0,0%,85.1%,0));
        width: 40%;
    }


/* Password field eye */
.password-field {
    position: relative;
}

    .password-field .toggle-password {
        position: absolute;
        right: 12px;
        top: 35%;
        transform: translateY(-35%);
        cursor: pointer;
        color: #666;
        font-size: 16px;
    }

        .password-field .toggle-password:hover {
            color: maroon;
        }

/* Full width login button */
.btn-login {
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: #b0283a;
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
}

    .btn-login:hover {
        background: #a00000;
        color: #fff;
        text-decoration: none;
    }

/* Create account spacing */
.create-account {
    margin-top: 20px;
}

.login-container {
    /*max-width: 460px;*/
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
    border-radius: 10px;
}

.loginwith-otp-btn {
    height: 48px;
    display: flex;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid #acb5bd;
    color: #495057;
    font-family: Poppins-Medium, sans-serif;
    font-size: 14px;
    transition: 0.3s;
    align-items: center;
    width: 100%;
    margin-top: 1rem !important;
}

    .loginwith-otp-btn:hover {
        height: 48px;
        display: flex;
        justify-content: center;
        gap: 8px;
        border-radius: 12px;
        border: 1px solid #acb5bd;
        color: #495057;
        font-family: Poppins-Medium, sans-serif;
        font-size: 14px;
        transition: 0.3s;
        align-items: center;
        width: 100%;
        margin-top: 1rem !important;
    }

.maroomcolor {
    color: #b0283a;
}

    .maroomcolor:hover {
        color: #b0283a;
        text-decoration: none;
    }
/* Flex to align left & right */
.remember-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.blue-link a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

    .blue-link a:hover {
        text-decoration: underline;
    }

/* Forgot password styling */
.forgot-password a {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

    .forgot-password a:hover {
        text-decoration: underline;
    }
/* Hide default checkbox but keep clickable area */
.remember-me input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom checkbox style */
.comman_chack {
    position: relative;
    padding-left: 24px; /* space for custom box */
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

    /* Box before label text */
    .comman_chack::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        border: 1px solid #888;
        border-radius: 3px;
        background: #fff;
    }

/* Check mark when checked */
.remember-me input[type="checkbox"]:checked + .comman_chack::after {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: maroon;
}

.login-page-wrapper {
    text-align: center; /* center karega */
}

.login-container,
.get-app-wrap {
    /*display: inline-flex;*/
    align-items: center; /* vertically center */
    gap: 20px; /* dono ke beech ka gap */
}

@media (max-width: 462px) {
    .login-page-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* ✅ Mobile ke liye center alignment */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul {
        padding: 0;
    }

    .footer-column ul li {
        margin: 8px 0;
    }
}
