﻿/* Import Eudoxus Sans font */
@import url('https://fonts.googleapis.com/css2?family=Eudoxus+Sans:wght@300;400;500;600;700&display=swap');

html, body {
    font-family: 'Eudoxus Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
}


/* Login pages  */
.user-info {
    display: none;
    /* Main container */
}

.main-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Panel */
.left-panel {
    flex: 1;
    background: #f1f3f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}


.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-name {
    font-weight: 800;
}

.main-content {
    text-align: center;
    max-width: 500px;
    z-index: 2;
}

.main-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.accent {
    background: #5daad3;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.background-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.star-decoration {
    width: 100px;
    height: 100px;
    background: #6c757d;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-decoration {
    width: 100px;
    height: 100px;
    background: #6c757d;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
/* Right Panel */
.right-panel {
    flex: 1;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.singup-right {
    height: 100vh;
    overflow-y: auto !important;
}

.signin-btn {
    background: #006bb7;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .signin-btn:hover {
        background: #005a9e;
        transform: translateY(-1px);
    }

/* Form Container */
.form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 80px;
    width: 100%;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.header-icon {
    width: 24px;
    height: 24px;
    background: #006bb7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-control:focus {
    outline: none;
    background-color: #ffffff !important;
    border-color: #006bb7;
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 183, 0.25);
}

.form-title {
    color: black;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.form-subtitle {
    color: black;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: black;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

/* Input Fields */
.form-control {
    width: 100%;
    background-color: #ebf5ff;
    border: 1px solid #404040;
    border-radius: 8px;
    color: #2c3e50;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .form-control::placeholder {
        color: #6c757d;
    }

    .form-control:focus {
        outline: none;
        background-color: #ffffff;
        border-color: #006bb7;
        box-shadow: 0 0 0 0.2rem rgba(0, 107, 183, 0.25);
        color: #2c3e50;
    }

    .form-control:disabled {
        background-color: #f8f9fa;
        color: #6c757d;
    }
/* Login Link */
.login-link {
    text-align: center;
    font-size: 0.875rem;
    color: #5a6c7d;
}

    .login-link a {
        color: #006bb7;
        text-decoration: none;
        font-weight: 600;
    }

        .login-link a:hover {
            text-decoration: underline;
        }


/* Link Input Group */
.link-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.link-input {
    flex: 1;
    background-color: #1a1a1a;
    color: #a0a0a0;
}

.availability-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.check-icon {
    font-size: 10px;
}

/* Name Fields */
.name-fields {
    display: flex;
    gap: 1rem;
}

.input-wrapper {
    flex: 1;
}

/* Validation Messages */
.validation-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}

/* Status Message Styling */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 14px;
    font-weight: 500;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Checkbox and Forgot Password Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-size: 14px;
    cursor: pointer;
}

.form-check-input {
    width: 16px;
    height: 16px;
    accent-color: #006bb7;
}

.forget-password-link a,
.forgot-password-btn {
    color: #006bb7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

    .forget-password-link a:hover,
    .forgot-password-btn:hover {
        text-decoration: underline;
    }

.signup-link-btn {
    color: #006bb7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

    .signup-link-btn:hover {
        text-decoration: underline;
    }
/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ccc;
    }

    .divider:not(:empty)::before {
        margin-right: .75em;
    }

    .divider:not(:empty)::after {
        margin-left: .75em;
    }

/* Disclaimer */
.disclaimer {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #ebf5ff;
    border-radius: 8px;
    border-left: 3px solid #006bb7;
}

    .disclaimer p {
        color: black;
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
    }

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: #5daad3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-btn:hover {
        background-color: #2980b9;
    }

/* Background Decorations */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-plus {
    position: absolute;
    top: 20%;
    right: 10%;
    color: #5daad3;
    font-size: 2rem;
    font-weight: 300;
}

.decoration-dot {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 8px;
    height: 8px;
    background: #ff8e53;
    border-radius: 50%;
    opacity: 0.6;
}

.form-title {
    color: black;
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
    text-align: center;
}

.form-description {
    color: black;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Main container */
.signup-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}


/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto !important;
    }
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    .main-container {
        flex-direction: column;
    }

    .left-panel {
        display: none;
    }

    .form-header {
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .right-panel {
        min-height: 60vh;
    }

    .form-container {
        padding: 1rem;
    }

    .name-fields {
        flex-direction: column;
        gap: 0;
    }

    .nav-links {
        display: none;
    }

    .right-panel {
        min-height: 60vh;
    }

    .form-container {
        padding: 1rem;
    }

    .name-fields {
        flex-direction: row;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .top-nav {
        padding: 1rem;
    }

    .left-panel, .right-panel {
        min-height: 50vh;
    }
}

/* Register page  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Eudoxus Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}



/* Main container */
.signup-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}


/* Navigation */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #006bb7;
    }


.signin-link-btn {
    color: #006bb7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

    .signin-link-btn:hover {
        text-decoration: underline;
    }

/* Background Decorations */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-plus {
    position: absolute;
    top: 20%;
    right: 10%;
    color: #5daad3;
    font-size: 2rem;
    font-weight: 300;
}

.decoration-dot {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 8px;
    height: 8px;
    background: #ff8e53;
    border-radius: 50%;
    opacity: 0.6;
}

/* Fix StatusMessage component visibility */
.alert.alert-danger {
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
    color: #842029 !important;
    border: 3px solid #f5c2c7 !important;
    border-radius: 8px !important;
    display: block !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1) !important;
    font-size: 0.95rem !important;
}
/* Style for success messages */
.alert.alert-success {
    background-color: #d1e7dd !important;
    border-color: #badbcc !important;
    color: #0f5132 !important;
    border: 3px solid #badbcc !important;
    border-radius: 8px !important;
    display: block !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.1) !important;
    font-size: 0.95rem !important;
}

/* Style for info messages */
.alert.alert-info {
    background-color: #cff4fc !important;
    border-color: #b6effb !important;
    color: #055160 !important;
    padding: 1.25rem !important;
    border-radius: 8px !important;
    display: block !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.1) !important;
    font-size: 0.95rem !important;
}

/* Style for warning messages */
.alert.alert-warning {
    background-color: #fff3cd !important;
    border-color: #ffecb5 !important;
    color: #664d03 !important;
    border: 3px solid #ffecb5 !important;
    border-radius: 8px !important;
    display: block !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.1) !important;
    font-size: 0.95rem !important;
}

/* Forgot Pass page style  */
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background: #101620;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger-menu.hamburger-open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.hamburger-open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.hamburger-open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hamburger-menu.hamburger-open span:nth-child(3),
    .hamburger-menu.hamburger-open span:nth-child(1) {
        background-color: #fff;
    }

.reset-text {
    color: #000;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
}

.brand-text {
    color: #000;
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.today-text {
    background: #5daad3;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.sparkle-icon {
    position: absolute;
    top: 0;
    right: -40px;
    font-size: 2rem;
    color: #ccc;
}

.description {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.diagonal-lines {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.orange-circle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
    background-color: #ff6b35;
    border-radius: 50%;
}


/* All  Dialog box  */
/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

/* Dialog container */
.dialog {
    background: #e4e9f1 !important;
    border-radius: 13px;
    max-width: 622px;
    width: 100%;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.3s ease;
}

.from-main {
    max-width: 536px !important;
}

@media screen and (max-width:420px) {
    .from-main {
        max-width: 255px !important;
    }
}
.dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
/* Button styling */
.Btn_Dialog {
    margin-top: 29px;
    background-color: #0076ff;
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 160px;
}

    .Btn_Dialog:hover {
        background-color: #005fcc;
        transform: translateY(-1px);
    }
.dialog-title_dialogbox {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: center;
}
@@media (max-width: 600px) {


    .dialog-title_dialogbox {
        font-size: 16px;
    }

    .reset-input1 {
        font-size: 14px;
        padding: 8px 10px;
    }

    .Btn_Dialog {
        min-width: 140px;
        font-size: 14px;
    }
}
/* Input styling */
.reset-input1 {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

    .reset-input1:focus {
        border-color: #007bff;
        box-shadow: 0 0 4px rgba(0, 118, 255, 0.3);
    }
.dialog_main {
    height: 479px !important;
    padding: 40px !important;
}

@media screen and (max-width:420px) {
    .dialog_main {
        height: 457px !important;
    }
}
/* Header */
.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: absolute;
    top: 0;
    width: 100%;
    color: #000;
    box-sizing: border-box;
}

.dialog-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    flex-grow: 1;
    margin: 0;
    padding-left: 40px;
}

/* Close button */
.close {
    height: 40px;
    width: 40px;
    transition: 0.25s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000 !important;
}

    .close:hover {
        background: #d2def0 !important;
    }

/* Body */
.dialog-body {
    padding: 0;
    color: #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* OTP Section */
.dialog-img {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 360px !important;
    justify-content: center;
    color: #000 !important;
}

.Text-2 {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px 11px 10px;
    width: 100%;
    color: #000;
}

    .Text-2 p {
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        color: #000;
    }

/* OTP inputs */
.confirmation-input-container {
    display: flex;
    justify-content: center;
    gap: 11px;
    padding: 0 15px;
    width: 100%;
}

.confirmation-input {
    width: 50px;
    height: 58px;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    border: 3px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s;
}

    .confirmation-input:focus {
        border-color: #007bff;
    }

/* Confirm button */
.btn-otp {
    margin-top: 30px;
    width: 162px;
    height: 49px;
    border-radius: 12px;
    background: #0076FF;
    color: #fff !important;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-otp:hover {
        background: #005fcc;
    }

/* Resend */
.error-class {
    display: flex;
    justify-content: center;
    text-align: center;
    color: #000;
    padding-top: 27px;
    width: 100%;
}

.btn-resend {
    margin-left: 5px;
    background: none;
    border: none;
    color: #0076FF;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
}

/* Footer placeholder */
/*dialog footer*/
.dialog .dialog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: absolute !important;
    top: 320px !important;
    left: -1px;
    width: 100% !important;
    font-size: 12px !important;
    justify-content: end !important;
}

.text-info {
    text-align: center !important;
    color: #fff !important;
    padding: 15px !important;
    border-radius: 10px !important;
    width: 80% !important;
    font-size: 14px !important;
}

.btn-resend {
    background: none !important;
    cursor: pointer !important;
    color: #000;
    border: none !important;
    text-decoration: underline;
}


@media screen and (max-width: 600px) {
    .error-message,
    .error-class,
    .text-info {
        font-size: 15px !important;
        width: 90% !important;
        padding: 16px !important;
    }

    .confirmation-input {
        width: 40px;
        height: 50px;
        font-size: 20px;
        border: 2px solid #ccc;
        border-radius: 8px !important;
    }

    .dialog {
        max-width: 345px ;
    }

    .Text {
        margin-top: 12px;
    }

    .Text-2 {
        margin-top: 4px;
    }

    .confirmation-input-container {
        padding-top: 6px !important;
    }

    .btn-otp {
        height: 47px;
        font-size: 16px;
        padding: 10px;
        /*        margin: 8px auto 0;*/
    }

    .ok-button {
        left: 79%;
        display: flex;
        justify-content: end;
    }

    .form-content {
        max-width: 290px !important;
        left: 4%;
    }

    .form-check1 {
        padding-left: 14px !important
    }
}

.ok-button {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    display: flex;
    top: 19%;
    justify-content: end;
}

/* Reset Your Password  & Password changes Successfully */
.subtext {
    font-size: 14px;
    /*    margin-bottom: 22px;*/
    /* color: #ccc; */
    /* margin-bottom: 24px; */
    display: flex !important;
    justify-content: center !important;
}

.reset-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin: 6px 0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
  outline:none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.reset-btn {
    background-color: #3ea8ff;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    margin-top: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .reset-btn:hover {
        background-color: #fff;
        color: #3ea8ff;
        transform: scale(1.05);
    }

.background-button {
    display: block;
    margin: 0 auto;
    margin-top: 6px;
}

.validation-errors {
    font-size: 14px !important;
}

.validation-message .ul .li::marker {
    margin-left: 10px !important;
}

.background-button {
    display: block;
    margin: 0 auto;
    margin-top: 6px;
}

.background-button {
    background-color: #0076ff;
}

.common-button {
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    cursor: pointer !important;
    border: none;
    text-align: center;
    padding: 14px 16px;
    margin-top: 19px;
    /* font-family: 'Source Sans Pro'; */
    min-width: 170px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin-left: 33%;
}

.form-content {
    width: 100%;
    max-width: 510px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.form-check1 {
    padding-left: 27px;
}
@media screen and (max-width:425px){
    .dialog {
        max-width: 343px !important;
    }
    .common-button {
        margin-left: 21% !important;
    }
}
@media screen and (max-width: 1600px) {
    .dialog {
        max-width: 620px ;
        border-radius: 16px;
        box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.25);
    }

    .dialog-header {
        padding: 20px 28px;
    }

    .dialog-title {
        font-size: 18px;
        padding-left: 50px;
    }

    .confirmation-input {
        width: 60px;
        height: 65px;
        font-size: 28px;
    }

    .btn-otp {
        width: 190px;
        height: 55px;
        font-size: 17px;
    }

    .Text-2 p {
        font-size: 18px;
    }

    .dialog .dialog-footer {
        top: 350px !important;
        font-size: 14px !important;
    }
}

/* All Temp  */
element.style {
    background-color: #e3e3e3;
}

.card-2 .Temp-content {
    background-color: #e3e3e3 !important;
    margin: -200px 12px -28px auto;
    max-width: calc(100% - 150px);
}


.Temp-content {
    padding: 10px 15px !important;
    z-index: 99;
    position: relative;
    height: calc(100% - 113px) !important;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 5px;
}

.template-row {
    /*    display: grid;
    grid-template-columns: 400px 400px 400px 400px;
    column-gap: 20px;*/
}

.card-wrapper{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100vh !important;
    }

    .Card-preview1{
        height: calc(100vh - 20px) !important;
        display:flex; 
        justify-content:center;
        border: 3px solid #021D48 !important;
        width: auto;
        border-radius: 20px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
        overflow-y: auto !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

.card {
    width: 390px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
}

/* Page wrapper to keep main fixed and allow internal scroll */
.card-page {
    height: 100% !important;
    width: 100%;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.Cover-Photo {
    background: #D9D9D9;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/*.social-icons a img {
    height: 16px;
}*/

.card-2 .Cover-Photo {
    align-items: self-start;
}

.card-3 .Cover-Photo {
    align-items: self-start;
}

.Cover-Photo img {
    height: inherit;
    width: 100% !important;
}

.card-4 .Cover-Photo svg {
    position: absolute;
    bottom: -112px;
    pointer-events: none;
}

.card-4 .Cover-Photo img {
    z-index: 1;
}

.card-4 .Cover-Photo svg {
    position: absolute;
    bottom: -112px;
    pointer-events: none;
    width: 100%;
}

.card-4 .Cover-Photo img {
    z-index: 1;
}

.wave-img {
    position: absolute;
    max-width: 100%;
}

.profile-pic {
    width: clamp(80px, 24vw, 120px);
    height: clamp(80px, 24vw, 120px);
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -40px 10px 10px auto;
    border: 2px solid #D9D9D9;
    z-index: 99;
    position: relative;
    border: 1px solid #4b4848 !important;
}

.card-4 .profile-pic {
    margin: -40px auto 10px auto;
}

/*.profile-pic img {
    width: 60%;
    height: 60%;
    z-index: 1000;
    object-fit: contain;
}*/
/* Temp img*/
.profile-img {
    width: 98% !important;
    height: 98%;
    z-index: 1000;
}
/*
.card-2 .content {
    margin: -200px 12px -28px auto;
    max-width: calc(100% - 150px);
}*/

.card-2 .social-icons a {
    background-color: white;
}

.card-3 .social-icons a, .card-4 .social-icons a, .card-5 .social-icons a {
    background: transparent;
}

.card-5 .social-icons {
    /*    display: grid;*/
    /* display: flex;
    flex-direction: column;
    margin: -200px 0px 50px 338px;*/
    margin: auto 0px 50px 303px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4px;
}

.social-icons a {
    border-radius: 20px;
}

.card-3 .Temp-content {
    margin: -150px 0px 0px 0px;
    text-align: center;
}

.card-3 .Temp-content-heading {
    margin-left: 85px;
}

.card-4 .Temp-content-heading {
    text-align: center;
}

.card-5 .Temp-content {
    margin: -100px 108px -28px auto;
    /*    margin: -104px 87px -28px auto;*/

    text-align: center;
}

.card-5 .profile-pic {
    margin: 0px 0px 0px 20px;
    border-radius: 0px;
}

.card-2 .profile-pic {
    border-radius: 0px;
    margin: -125px auto 98px 10px;
}

.card-3 .social-icons, .card-4 .social-icons {
    justify-content: center;
}

.card-3 .profile-pic {
    margin: -96px auto 98px 41px;
}

.card-3 .wave-img {
    bottom: 0px;
    height: 265px;
}

.name {
    font-size: 18px;
    font-weight: bold;
}

.designation {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.description {
    font-size: 12px;
    color: #555;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 10px !important;
    margin-bottom: 15px;
}

.card-1 .social-icons a, .card-1 .contact-icon {
    border-radius: 100%;
}

.card-4 .contact-icon {
    background-color: transparent;
    border: 1px solid #F5F5F5;
    border-radius: 100%;
}

.social-icons a, .contact-icon {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: Center;
    justify-content: center;
    background-color: #F5F5F5;
    padding: 5px;
    min-width: 30px;
}

.contact-info-div {
    padding: 15px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    width: calc((200% - 19px) / 2) !important; /* City and State */
}

    .contact-item a {
        text-decoration: none;
        color: #191919;
    }

    .contact-item img {
        width: 18px;
        height: 18px;
    }

.contact-info-div {
    max-width: 400px;
}

.section-heading {
    color: #191919;
    font-family: inherit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    position: relative;
    width: fit-content;
    margin-bottom: 15px;
}

    .section-heading:before {
        right: -40px;
    }

    .section-heading:before, .card-3 .section-heading:after {
        background-color: #32323280;
        height: 1px;
        width: 30px;
        top: 0px;
        bottom: 0px;
        margin: auto;
        content: "";
        position: absolute;
    }

    .section-heading:before, .card-5 .section-heading:after {
        border-bottom: 1px solid #32323280;
    }

. /*section-heading:before, .card-3 .section-heading:after {
        left: -38px;
        margin: auto;
        width: 50px !important;
        background-color: #32323280;
        height: 1px;
        width: 37px;
        top: 28px;
        bottom: 0px;
        margin: auto;
        content: "";
        position: absolute;
    }*/
.card-3 .section-heading {
    margin: 0px auto 15px;
}

.card-4 .section-heading, .card-5 .section-heading {
    margin: 0px auto 35px;
}

    .card-4 .section-heading:before {
        top: 28px;
        right: 0px;
        margin: auto;
        width: 37px;
    }

    .card-4 .section-heading:after {
        left: 0px;
        margin: auto;
        width: 45px;
        background-color: #32323280;
        height: 1px;
        width: 37px;
        top: 28px;
        bottom: 0px;
        margin: auto;
        content: "";
        position: absolute;
    }

.card-3 .section-heading:after {
    left: -40px;
}

.card-2 .section-heading:before {
    height: 23px;
    width: 2px;
    left: -15px;
    right: initial;
}

.swiper-container {
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    /*    background: #F5F5F5;*/
}

.card-1 .swiper-slide {
    border-radius: 5px;
}

.card-4 .swiper-slide {
    border-radius: 15px;
}

.service-slide {
    padding: 15px;
    border-radius: 10px;
    background: #F5F5F5;
    min-height: 150px;
    /*    margin-right: 5px;*/
}

.card-1 .service-slide {
    border-radius: 10px;
}

.description p {
    /*    color: #4D4D4D;
    font-family: "Eudoxus Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;*/
}

.service-heading {
    color: #666;
    font-family: "Eudoxus Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.form-control {
    margin-bottom: 20px;
}

.card-1 .form-control input, .card-1 .form-control textarea {
    border-radius: 10px;
}

.card-4 .form-control input, .card-4 .form-control textarea {
    border-radius: 15px;
}

.card-1 .appointment-button {
    border-radius: 10px;
}

.video-play-icon {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 0px;
    right: 0px;
}

.video-slide {
    position: relative;
}


.service-slide {
    padding: 15px;
    border-radius: 10px;
    background: #F5F5F5;
    min-height: 150px;
    /*    margin-right: 5px;*/
}

.card-1 .service-slide {
    border-radius: 10px;
}

.description p {
    /*    color: #4D4D4D;
    font-family: "Eudoxus Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;*/
}

.service-heading {
    color: #666;
    font-family: "Eudoxus Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}

.form-control {
    margin-bottom: 2px;
}

.card-1 .form-control input, .card-1 .form-control textarea {
    border-radius: 10px;
}

.card-4 .form-control input, .card-4 .form-control textarea {
    border-radius: 15px;
}

.form-control input, .form-control textarea {
    padding: 12px 12px;
    font-size: 12px;
    background: #F5F5F5;
    border: none;
    width: 100%;
    font-family: "Eudoxus Sans";
}

.form-control textarea {
    resize: vertical;
}

    .form-control textarea::placeholder {
        font-family: "Eudoxus Sans";
    }

    .form-control input:focus, .form-control textarea:focus {
        outline: none
    }

.form-control label {
    color: #0D0D0D;
    font-family: inherit;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    display: block;
    padding-bottom: 10px;
}

.Template-text {
    font-family: inherit !important;
}

.form-control-input {
    display: flex;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
    font-family: inherit;
}

    .form-control-input input {
        max-width: calc((100% - 10px) / 2);
        width: 100%
    }

.appointment-button {
    background: #F5F5F5;
    border: none;
    padding: 12px 20px;
    margin: auto;
    width: fit-content;
    min-width: 130px;
    font-family: inherit;
}

.card-1 .appointment-button {
    border-radius: 10px;
}

.video-play-icon {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    left: 0px;
    right: 0px;
}

.video-slide {
    position: relative;
}

.product-info {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 20px);
    margin: auto;
}

.product-name, .price {
    font-size: 12px;
}

.payment-logo {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 30px;
    margin-top: 30px;
    padding-bottom: 100px;
}

.single-logo-div {
    width: calc((100% - 40px) / 3);
}


.swiper-container {
    width: 100%;
    overflow: hidden;
}

.card-1 .swiper-slide {
    border-radius: 5px;
}

.card-4 .swiper-slide {
    border-radius: 15px;
}

.service-slide {
    padding: 15px;
    border-radius: 10px;
    background: #F5F5F5;
    min-height: 150px;
    /*    margin-right: 5px;*/
}

.card-1 .service-slide {
    border-radius: 10px;
}

.description p {
    color: #4D4D4D;
    font-family: "Eudoxus Sans";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.service-heading {
    color: #666;
    font-family: "Eudoxus Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}




.card-3 .section-heading {
    margin: 0px auto 15px;
}
/* Our Services/Products Accordion for new style  */
.Services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Scrollable container */
#ServicesSlider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 90%;
    padding: 10px;
    height: auto;
}

    #ServicesSlider::-webkit-scrollbar {
        display: none;
    }

    #ServicesSlider > * {
        flex: 0 0 auto;
    }

/* Slider row */
.swiper-wrapper1 {
    display: flex;
    scroll-behavior: smooth;
    gap: 16px;
    scroll-snap-type: x mandatory;
    height: 100%;
}

/* Each slide */
.swiper-slide {
    flex: 0 0 auto;
    width: 300px; /* fixed base width */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    scroll-snap-align: center;
}

/* Card inside slide */
.service-slide {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
}

/* Heading */
.service-heading {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    word-break: break-word;
}

/* Image */
.service-img {
    width: 210px;
    height: 122px;
    margin-top: 7px;
}

/* Navigation buttons */
.scroll-btn1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .scroll-btn1:hover {
        background-color: rgb(55 55 55 / 70%);
    }

    .scroll-btn1.left {
        left: 5px;
    }

    .scroll-btn1.right {
        right: 5px;
    }

@media (max-width: 1500px) {
    .swiper-slide {
        width: 213px;
    }

    .service-img {
        max-width: 170px;
    }
}

@media (max-width: 768px) {
    #ServicesSlider {
        width: 100%;
        padding: 5px;
    }

    .swiper-slide {
        width: 200px;
    }

    .service-slide {
        min-height: 200px;
        padding: 12px;
    }

    .service-img {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        width: 85%; /* show one card at a time */
    }

    .service-slide {
        min-height: auto;
    }

    .service-img {
        max-width: 100%;
    }
}

/*Videos Accordion And  New and Style */
.video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

#videoSlider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 90%;
    /*    padding: 10px;*/
    scrollbar-width: none;
    position: relative;
}

    #videoSlider::-webkit-scrollbar {
        display: none;
    }

.swiper-wrapper-video {
    display: flex;
    scroll-behavior: smooth;
    gap: 16px;
    scroll-snap-type: x mandatory;
}
#videoSlider > * {
    flex: 0 0 auto;
}
.swiper-slide.video-slide {
    width:100%;
    max-width:310px;
}
@media screen and (max-width:1600px)
{
    .swiper-slide.video-slide {
        width: 310px;
    }
    
}
@media screen and (max-width:1500px){
   /* .swiper-slide {
        width: 234px;
    }*/
    .swiper-slide.video-slide {
        width:250px;
    }
    .card {
        width: 310px;
    }
}

@media screen and (max-width:659px) {
    .card {
       min-width: 332px;
    }

    .social-icons {
        display: flex;
        gap: 7px;
        margin-bottom: 15px;
    }

    .card1 .social-icons,
    .card-3 .social-icons,
    .card-4 .social-icons,
    .card-5 .social-icons {
        gap: 14px;
    }

    .card-5 .social-icons {
        margin: auto 0px 50px 312px;
        top: 22px;
    }

    .card-5 .Temp-content {
        margin: -78px 40px -28px 0;
    }
    .swiper-slide {
        width: 285px;
    }
}

/* Template specific responsive tweaks moved from inline styles */
.card1 .Temp-content {
    margin: -70px 10px 10px auto;
}


.Reset_btn1 {
    box-shadow: none !important;
    margin-left: 10px;
}

@media (max-width:690px) {
    .Reset_btn1 {
        margin: 0 auto;
        display: flex;
        justify-content: center !important;
    }
}

@media (max-width: 1500px) {
    .Text_Email {
        max-width: 214px;
        overflow: hidden;
        word-wrap: break-word;
        white-space: normal;
        overflow-y: auto !important;
        max-height: 85px !important;
        display: block;
    }
}

@media (max-width:960px) {
    .preview-card {
        display: none !important;
    }

    .preview-header {
        border-bottom: none;
    }
}


/* All Templer Text For Your Name style*/
.Text_Name_Temp1 {
    width: 190px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}

.Text_NameTemp2 {
    max-width: 210px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}

.Text_NameTemp3 {
    max-width: 260px;
    margin-left: 66px;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}

.Text_NameTemp4 {
    max-width: 360px;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}

.Text_NameTemp5 {
    max-width: 168px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}
/* All Templer Text for position style */
.Text_Position_Temp1 {
    max-width: 260px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}

.Text_PositionTemp2 {
    width: 237px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}

.Text_PositionTemp3 {
    width: 196px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
    margin-left: 66px;
}

.Text_PositionTemp4 {
    max-width: 351px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
    text-align: left;
}

.Text_PositionTemp5 {
    max-width: 176px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}
/* 1 Templer Text for About style */

.Text_Name {
    max-width: 260px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    white-space: normal;
}
.Text-About {
    /* Start of the CSS file */
    max-width: 260px;
    overflow: hidden;
    word-wrap: break-word;
    white-space: normal;
    overflow-y: auto !important;
    max-height: 85px !important;
    display: block;
}
.Text-About_Temp1 {
    max-width: 260px;
    overflow: hidden;
    word-wrap: break-word;
    white-space: normal;
    overflow-y: auto !important;
    max-height: 100px;
    display: block;
}

.Text-AboutTemp2 {
    width: 334px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
    display: block;
    overflow-y: auto;
    max-height: 100px;
    max-height: 100px;
}

.Text-AboutTemp3 {
    width: 330px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
    display: block;
    overflow-y: auto;
    max-height: 100px
}

.Text-AboutTemp4 {
    width: 325px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
    display: block;
    overflow-y: auto;
    max-height: 100px
}

.Text-AboutTemp5 {
    max-width: 300px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
    display: block;
    overflow-y: auto;
    max-height: 100px;
}

/* Templer Text for About style*/
.Text-About1 {
    max-width: 377px;
    overflow: hidden;
    word-wrap: normal;
    white-space: normal;
    overflow-y: auto !important;
    display: block;
    max-height: 100px;
}

/* */
.form-input.input-error-border {
    border-color: #ef4444;
}

.input-error-border {
    border: 2px solid #ef4444 !important;
    border-radius: 10px
}

.Content_Temp-5 {
    margin-left: 135px;
    text-align: start;
}

@media screen and (max-width:1500px) {
    .Temp-1 {
        display: flex;
        flex-wrap: wrap;
    }

    .profile-pic {
        width: clamp(80px, 24vw, 99px) !important;
        height: clamp(80px, 24vw, 108px) !important;
    }

    .card-2 .Temp-content {
        max-width: calc(100% - 130px);
    }

    .Text_Name_Temp1 {
        width: 131px !important;
    }

    .Text_NameTemp2 {
        max-width: 150px;
    }

    .Text_NameTemp3 {
        margin-left: 41px;
    }

    .Text_Position_Temp1 {
        max-width: 288px !important;
    }

    .Text_PositionTemp2 {
        width: 220px;
    }

    .Text_PositionTemp3 {
        width: 260px;
        margin-left: -85px;
    }

    .Text-About_Temp1 {
        max-width: 297px !important;
    }

    .Text-AboutTemp2 {
        max-width: 245px;
    }

    .Text-AboutTemp3 {
        width: 250px;
    }

    .Text-AboutTemp4 {
        width: 251px;
    }

    .card-5 .social-icons {
        margin: auto 0px 50px 223px;
    }

    .card-5 .profile-pic {
        margin: 0px 0px 0px 11px;
    }

    .Content_Temp-5 {
        margin-left: 103px;
    }

    .Text_NameTemp5 {
        max-width: 126px;
    }

    .Text_PositionTemp5 {
        max-width: 123px;
    }
}
.show-password-div {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 12px;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease-in-out;
}

    .toggle-password:hover {
        color: #4a90e2;
    }

    .toggle-password i {
        font-size: 18px;
    }
