@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Handlee&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&family=Merienda:wght@300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Tamil:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quicksand:wght@300..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Sora:wght@100..800&family=Spline+Sans:wght@300..700&family=Wix+Madefor+Display:wght@400..800&display=swap');

:root {
    --primary-color: #002570;
    --primary-orange: #f5821f;
    --color-white: #fff;
    --color-black: #000;
    --primary-blue: #007eff;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body_wrap {
    /* background: linear-gradient(135deg,
            #e6f1ff 0%,
            #f4f8ff 50%,
            #dbe9ff 100%); */
    background-color: #f8f8f8;
}

.ml-4 {
    margin-left: 10px;
}

.ml-0 {
    margin-left: 0px !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-30 {
    margin-bottom: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

body {
    overflow-x: hidden;
}

h2 {
    font-weight: 700;
    color: var(--primary-color);
}

.primary-orange {
    color: var(--primary-orange);
}

.bg-primary-blue {
    background-color: var(--primary-color) !important;
    color: var(--color-white);
}

.primary-color {
    color: var(--primary-color) !important;
}

.primary-btn {
    position: relative;
    overflow: hidden;
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--primary-orange);
    color: var(--color-white);
    border: 1px solid transparent;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100px;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.35),
            transparent 70%);
    transition: left 1s ease;
}

.primary-btn:hover::before {
    left: 120%;
}

.primary-btn>svg {
    width: 34px;
    overflow: visible;
    transition: transform 0.3s ease;
}

.primary-btn.auth-btns>svg {
    width: 20px;
}

.primary-btn:hover svg {
    transform: translateX(6px);
}

main section {
    overflow: hidden;
}

/* header css starts here */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.main-header .header-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 50px;
    background-color:
        color-mix(in oklab, var(--color-white) 30%, transparent);
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* overflow: hidden; */
}

.main-header .logo img {
    max-height: 60px;
}

.main-footer .logo img {
    max-height: 60px;
    margin-bottom: 20px;
}

.main-header .header-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #FEF5F8; */

    /* transform: translateX(100%) scale(0.85); */
    background-color:
        color-mix(in oklab, var(--color-white) 60%, transparent);
    backdrop-filter: blur(25px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease, scale 0.5s ease;
    z-index: -1;
    border-radius: 16px;
}

.main-header.scrolled .header-container::before {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.main-header .logo {
    font-weight: bold;
    font-size: 24px;
    color: #000;
    transition: color 0.3s ease;
    z-index: 1;
}

.main-header .desktop-nav {
    display: flex;
    gap: 50px;
}

.main-header .desktop-nav a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition: color 0.3s ease;
    z-index: 1;
}

.main-header .desktop-nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;

    width: 0;
    height: 2px;
    background: linear-gradient(90deg,
            #002570,
            #f5821f);
    border-radius: 2px;

    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.main-header .desktop-nav a:hover::before {
    width: 100%;
}

.main-header .desktop-nav a:hover {
    color: var(--primary-color);
}


.main-header .button-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-header .cta-button {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.main-header .cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.main-header .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    font-size: 20px;
    z-index: 2;
}

.main-header .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #000;
    transition: all 0.3s ease;
}

.main-header .hamburger span:first-child {
    width: 15px;
}

.main-header .mobile-menu {
    position: fixed;
    top: 0;
    padding: 55px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgb(255 255 255);
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 999;
}

.main-header .mobile-menu a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
    font-weight: 500;
}

.main-header .mobile-menu.open {
    right: 0;
}

.main-header .mobile-cta-button {
    background-color: white;
    color: black;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}

.main-header.scrolled .desktop-nav a {
    color: var(--primary-color);
}

.main-header.scrolled .cta-button {
    background-color: white;
    color: black;
}

.main-header.scrolled .hamburger span {
    background-color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .desktop-nav {
        display: none;
    }

    .main-header .hamburger {
        display: block;
    }

    .main-header .primary-btn {
        display: none;
    }

    .main-header .header-container {
        padding: 12px 16px;
    }

    .main-header .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .main-header .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .main-header .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .main-header .desktop-nav {
        display: none;
    }


}


/* header css ends here */

/* banner css starts here */
.banner-section {
    position: relative;
    padding: 130px 20px 70px;
    background: linear-gradient(180deg, #FFEFE1 0%, #FFF 100%);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner/perspective-grid.png) no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    z-index: 0;
}

/* .banner-section .container {
    height: 500px;
    padding: 20px 20px;
    border-radius: 20px;
} */

.diagnosis-form-card {
    position: relative;
    background-color: #ffffff2b;
    backdrop-filter: blur(25px);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.diagnosis-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner/laboratoty-tools.png) no-repeat center center;
    background-size: contain;
    mix-blend-mode: luminosity;
    opacity: 0.04;
    z-index: -1;
}

.diagnosis-form-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.diagnosis-form-card h2 span {
    color: var(--primary-orange);
}

.diagnosis-form-card p {
    margin: 12px 0 28px;
    color: #666;
}

/* FLOATING FIELDS */
.form-group {
    position: relative;
    margin-bottom: 22px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    color: var(--primary-color);
    outline: none;
    font-size: 15px;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
    background: transparent;
    padding: 0 6px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: -6px;
    font-size: 12px;
    color: #002570;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    color: #333;
}

.form-group select:focus+label,
.form-group select:not([value=""]):valid+label {
    top: -6px;
    font-size: 12px;
    color: #002570;
}

.form-group select:focus+label,
.form-group select.has-value+label {
    top: -6px;
    font-size: 12px;
    color: #002570;
}

.form-group-date {
    position: relative;
}

.form-group-date .date-input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

.form-group-date label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    background: transparent;
    padding: 0 6px;
    pointer-events: none;
    transition: 0.25s ease;
}

.form-group-date .date-input:focus+label,
.form-group-date .date-input.has-value+label {
    top: -6px;
    font-size: 12px;
    color: #002570;
}


.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    width: 100%;
    padding: 14px 44px 14px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    background-color: #fff;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(90deg, #002570, #f5821f);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 130, 31, 0.35);
}

.diagnosis-slider {
    height: 455px;
    border-radius: 10px;
    overflow: hidden;
}

.diagnosis-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PAGINATION */
.diagnosis-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.diagnosis-slider .swiper-pagination-bullet-active {
    background: #f5821f;
    opacity: 1;
}

@media (max-width: 991px) {
    .banner-inner {
        padding: 40px 25px;
    }

    .diagnosis-slider {
        margin-top: 30px;
        height: 320px;
    }
}

/* banner css ends here */

/* footer css starts here */
.main-footer .social-icons i {
    font-family: "Font Awesome 6 Brands";
}


.main-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 1px 10px;
}

/* FOOTER CONTENT */
.main-footer .footer-content {
    max-width: 1300px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.5fr 2fr;
    gap: 40px;
}

.main-footer .logo {
    font-size: 32px;
    margin-bottom: 15px;
}

.main-footer .footer-brand p {
    font-size: 14px;
    opacity: 0.85;
}

.main-footer .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.main-footer .social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
}

/* LINKS */
.main-footer h4 {
    margin-bottom: 18px;
    font-size: 16px;
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer ul li {
    margin-bottom: 10px;
}

.main-footer ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    opacity: 0.85;
}

/* CONTACT */
.main-footer .footer-contact p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

/* BOTTOM BAR */
.main-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    opacity: 0.85;
}

.main-footer .footer-bottom p {
    margin-bottom: 0;
}

.main-footer .bottom-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.main-footer .footer-contact-icons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.main-footer .contact-item i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-size: 16px;
    margin-top: 4px;
    min-width: 18px;
}

.main-footer .contact-item span,
.main-footer .contact-item a {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.main-footer .contact-item a:hover {
    text-decoration: underline;
}

/* footer css end here */

/* floating whatsapp button */
.floating_btn {
    position: fixed;
    bottom: 110px;
    right: 30px;
    opacity: 1;
    transition: 0.3s;
    z-index: 100;
}

@media (max-width: 767px) {
    .floating_btn {
        right: 20px;
        bottom: 110px;
    }

    .floating_btn.floating_btn_show {
        bottom: 90px;
    }
}

.floating_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 23px;
    transition: transform 0.3s;
    animation: 2s infinite pulse-animation;
}

.floating_btn a:hover {
    transform: translateY(-3px);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 101, 0.6);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(37, 211, 101, 0.1);
    }
}

/* end */

/* schedule btn animation */
.schedule-btn {
    position: relative;
    animation: hurryShake 3s ease-in-out infinite, glowPulse 2s infinite;
}

.schedule-btn svg {
    transition: transform 0.3s ease;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.schedule-btn:hover {
    animation: none;
}

.schedule-btn:hover svg {
    transform: translateX(6px);
}

@keyframes hurryShake {

    0%,
    85%,
    100% {
        transform: translateX(0);
    }

    88% {
        transform: translateX(-5px);
    }

    90% {
        transform: translateX(5px);
    }

    92% {
        transform: translateX(-4px);
    }

    94% {
        transform: translateX(4px);
    }
}

@keyframes arrowPulse {

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

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

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 130, 31, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(245, 130, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 130, 31, 0);
    }
}

.section-title h3 {
    position: relative;
    display: inline-block;
    border: 1px solid #172c451a;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
    padding: 8px 16px 8px 32px;
    margin-bottom: 15px;
}

.section-title h3::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

/* why choose us section css starts here */
.why-choose-us {
    /* background-image: url('../images/home/section-bg-shape-2.png'); */
    background-repeat: no-repeat;
    background-position: left -60px bottom 100px;
    background-size: auto;
    padding: 80px 0 80px 0;
}

.why-choose-image-box {
    position: relative;
    margin-right: 15px;
}

.why-choose-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-image-box .satisfy-client-box {
    position: absolute;
    bottom: -10px;
    left: 30px;
    display: block;
    /* background: var(--dark-divider-color); */
    border: 1px solid var(--dark-divider-color);
    background-color:
        color-mix(in oklab, var(--color-white) 10%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.why-choose-image-box .satisfy-client-box .satisfy-client-content {
    margin-top: 5px;
}

.counter .count-number {
    color: var(--primary-color);
}

.counter .count-number span {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

.why-choose-image-box .satisfy-client-box .satisfy-client-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.why-choose-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
}

.why-choose-item-box {
    width: calc(60% - 20px);
}

.why-choose-item {
    border-bottom: 1px solid #172c451a;
    padding-bottom: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}

.why-choose-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.why-choose-item-header {
    width: 50%;
    display: flex;
    align-items: center;
}

.why-choose-item-header .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5821f30;
    border-radius: 50%;
    margin-right: 15px;
}

.why-choose-item-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item:hover .why-choose-item-header .icon-box::before {
    transform: scale(1);
}

.why-choose-item-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 35px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.why-choose-item:hover .why-choose-item-header .icon-box img {
    filter: brightness(0) invert(1);
}

.why-choose-item-title {
    width: calc(100% - 65px);
}

.why-choose-item-title h3 {
    font-size: 18px;
    line-height: 1.3em;
}

.why-choose-item-content {
    width: calc(50% - 15px);
    border-left: 1px solid #172c451a;
    padding-left: 15px;
    margin-left: 15px;
}

.why-choose-item-content p {
    margin-bottom: 0;
}

.why-choose-body-image {
    width: calc(40% - 20px);
}

.why-choose-btn {
    margin-top: 60px;
}

.why-choose-body-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-body-image video {
    width: 100%;
    aspect-ratio: 0.9 / 0.9;
    object-fit: cover;
    border-radius: 20px;
}


.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}


.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
}

.test-research-tabs {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.test-research-tabs .tabs-wrapper {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 40px;
    align-items: center;
}

/* LEFT TABS */
.test-research-tabs .tabs-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tab-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 22px;
    border-radius: 50px;
    background: #eef4ff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Title */
.tab-item .tab-title span {
    font-weight: 600;
    color: #0b1b3f;
}

/* Arrow icon */
.tab-item .tab-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tab-item .tab-arrow svg {
    font-size: 14px;
    fill: var(--color-black);
    transition: all 0.3s ease;
}

/* ACTIVE STATE */
.tab-item.active {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-item.active .tab-arrow {
    background: var(--primary-color);
}

.tab-item.active .tab-arrow svg {
    color: var(--color-white);
    fill: var(--color-white);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}


/* Hover polish */
.tab-item:hover {
    transform: translateX(6px);
}


/* Progress line */
.test-research-tabs .tab-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: var(--primary-orange);
}

/* RIGHT CONTENT */
.test-research-tabs .tabs-right {
    position: relative;
}

.test-research-tabs .tab-content {
    display: none;
    animation: fadeSlide 0.6s ease forwards;
}

.test-research-tabs .tab-content.active {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 40px;
    align-items: center;
}

.test-research-tabs .image-contain {
    height: 100%;
    /* width: 100%; */
}

.test-research-tabs .image-contain img {
    width: 470px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.test-research-tabs .tab-content h2 {
    font-size: 25px;
    margin-bottom: 15px;
}

.test-research-tabs .tab-content p {
    color: #555;
}

.research-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.research-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.research-list .list-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef4ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Animations */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* test and research section css ends here  */

/* process section css starts here  */
.process-section {
    position: relative;
    padding: 80px 0;
    background: #f8fafc;
}

.process {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    text-align: center;
}


.process-items {
    display: table;
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
    color: #002570;
}

.process-items li {
    display: table-cell;
    width: 25%;
    vertical-align: bottom;
    padding: 0 10px;
    transform: scale(0.65) translateY(40px);
    transform-origin: bottom center;
    transition: 0.5s ease;
    cursor: pointer;
}

.process-items li.active {
    transform: scale(1) translateY(0);
}

.step-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: transform .4s ease;
}

.process-items li.active .step-icon {
    transform: scale(1.15);
}

.process-items em {
    display: block;
    font-size: 14px;
    opacity: 0.7;
}

.process-info {
    margin-top: 30px;
}

.info-card {
    display: none;
    animation: fadeUp .4s ease;
}

.info-card.active {
    display: block;
    /* transition: all 0.3s ease; */
}

.info-card img {
    width: 480px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.info-card h4 {
    color: #002570;
    margin-bottom: 6px;
}

.process-note {
    margin-top: 25px;
    font-size: 14px;
    color: #64748b;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 992px) {
    .process {
        width: 100%;
    }

    canvas {
        width: 100%;
    }
}

.process-section::after {
    content: '';
    position: absolute;
    top: 33%;
    left: 150px;
    width: 210px;
    height: 300px;
    background-image: url(../images/home/section-bg-shape-4.png);
    opacity: 0.5;
    background-repeat: no-repeat;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 33%;
    right: 150px;
    width: 210px;
    height: 100%;
    background-image: url(../images/home/section-bg-shape-4.png);
    opacity: 0.5;
    background-repeat: no-repeat;
}

/* process section css end here  */


/* testimonials section css starts here */
.testimonials-section-1 {
    padding: 100px 0;
    background: #ffffff;
}

/* LEFT IMAGE */
.testimonials-section-1 .testimonial-left {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.testimonials-section-1 .testimonial-left img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 24px;
}

/* FLOATING REVIEW CARD */
.testimonials-section-1 .review-card {
    position: absolute;
    bottom: 40px;
    right: 24px;
    background: var(--primary-color);
    color: #fff;
    padding: 16px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color:
        color-mix(in oklab, #ffffff 20%, transparent);
    backdrop-filter: blur(10px);
}

.testimonials-section-1 .review-card h4 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.testimonials-section-1 .review-card .stars {
    color: #ffc107;
    font-size: 20px;
    margin-top: 4px;
}

/* RIGHT CONTENT */
.testimonials-section-1 .testimonial-right {
    padding-left: 40px;
}

.testimonials-section-1 .subtitle {
    display: inline-block;
    background: #e6f3f2;
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonials-section-1 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* SLIDER ITEM */
.testimonials-section-1 .testimonial-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonials-section-1 .testimonial-item:hover {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.testimonials-section-1 .testimonial-item .rating {
    color: #ffc107;
    margin-bottom: 16px;
}

.testimonials-section-1 .testimonial-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.testimonials-section-1 .testimonial-item:hover p {
    color: #ffffff;
}

/* AUTHOR */
.testimonials-section-1 .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials-section-1 .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-section-1 .author h5 {
    margin: 0;
    font-size: 16px;
}

.testimonials-section-1 .author span {
    font-size: 14px;
    color: #888;
}

.testimonials-section-1 .testimonial-item:hover .author h5,
.testimonials-section-1 .testimonial-item:hover .author span {
    color: #ffffff;
}

/* PAGINATION */
.testimonials-section-1 .swiper-pagination {
    position: static;
    margin-top: 20px;
}

.testimonials-section-1 .swiper-pagination-bullet {
    background: #0b5f56;
    opacity: 0.3;
}

.testimonials-section-1 .swiper-pagination-bullet-active {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .testimonials-section-1 .testimonial-right {
        padding-left: 0;
        margin-top: 40px;
    }

    .testimonials-section-1 .testimonial-left img {
        height: auto;
        margin-top: 25px;
    }
}

/* testimonials section css ends here */

/* faq-section css starts here */
.faq-section {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 14px;
    background: #f4f7ff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #0b1b3f;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    padding: 0 22px;
}

.faq-answer p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 22px 20px;
}

.faq-item.active .faq-icon {
    background: var(--primary-orange);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-section .col-lg-4 {
    position: sticky;
    top: 160px;
    height: fit-content;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 70%;
    bottom: 0;
    left: 150px;
    width: 220px;
    height: 200px;
    background-image: url(../images/home/section-bg-shape-2.png);
    opacity: 0.3;
    background-repeat: no-repeat;
}

/* faq-section css ends here */

/* ===============================
   HELP SECTION
=================================*/

.help-section {
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
}

.help-section .help-container {
    width: 1300px;
    margin: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

.help-section .help-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0c2d3a;
}

.help-section .help-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.help-section .help-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 15px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 320px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Icon Circle */
.help-section .help-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Individual Icon Colors */
.help-section .call-icon {
    background: #ffe7ec;
    color: var(--primary-orange);
}

.help-section .email-icon {
    background: #e7f0ff;
    color: #2d6cdf;
}

.help-section .whatsapp-icon {
    background: #e6f9f0;
    color: #25D366;
}

/* Content */
.help-section .help-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.help-section .help-content a,
.help-section .help-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Arrow */
.help-section .help-arrow {
    margin-left: auto;
    width: 25px;
    height: 25px;
    font-size: 11px;
    background: #ffffff;
    border: 1px solid #f5821f59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: 0.3s;
    flex-shrink: 0;
}

.help-section .help-card:hover .help-arrow {
    background: var(--primary-orange);
    color: #fff;
}

.banner-section .medical-badge-img {
    animation: rotate 4s ease-in-out infinite;
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Package Section */
.package-lists {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Card Design */
.package-card {
    /* width: 280px; */
    height: 400px;
    background: #ffffff;
    background: url(../images/home/package-bg-pattern-orange.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f2f2f2;
}

.package-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image Section */
.package-card .card-header {
    position: relative;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
    text-align: center;
}

.package-card .card-header img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Body */
.package-card .card-body {
    padding: 20px;
}

.package-card h4 {
    font-size: 18px;
    line-height: normal;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    height: 30px;
}

/* Price */
.price-details {
    margin-bottom: 18px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: #002570;
    margin-right: 8px;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

/* Button */
.book-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: var(--primary-orange);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-btn:hover {
    opacity: 0.9;
}

.packages-slider .swiper-wrapper {
    height: 430px;
}

.packagesSwiper {
    position: relative;
}

.packagesSwiper .swiper-button-prev,
.packagesSwiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #002570;
    border-radius: 50%;
    color: #fff;
    z-index: 5;
    opacity: 0;
    transition: all 0.5s ease;
}

.packagesSwiper:hover .swiper-button-prev,
.packagesSwiper:hover .swiper-button-next {
    opacity: 1;
    transition: all 0.5s ease;
}

/* Keep arrows INSIDE container */
.packagesSwiper .swiper-button-prev {
    left: 5px;
}

.packagesSwiper .swiper-button-next {
    right: 5px;
}

.packagesSwiper .swiper-button-prev::after,
.packagesSwiper .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}



.book-now-modal .modal-content {
    position: relative;
}

.book-now-modal .custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-size: 14px;
}

.book-now-modal .custom-close:focus {
    outline: none;
    box-shadow: none;
}

.packages-list-section {
    padding: 80px 0 70px;
}

.breadcrumb-section {
    position: relative;
    padding: 200px 0 180px;
    background: url(../images/home/breadcumb-bg.png) no-repeat center;
    /* background: linear-gradient(180deg, #FFF 0%, #FFEFE1 100%); */
    background-size: cover;
}

/* .breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner/perspective-grid.png) no-repeat center center;
    background-size: cover;
    opacity: 0.9;
    z-index: 0;
} */

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
}

.breadcrumb-section .breadcrumb-content {
    position: absolute;
    left: 50px;
    bottom: 40px;
}

.breadcrumb-object-image {
    position: absolute;
    height: 352px;
    width: 600px;
    right: 50px;
    bottom: -30px;
    object-fit: cover;
}

.banner-section .main-banner-img {
    width: 790px !important;
}

.auth-screen {
    position: relative;
    padding: 150px 0 70px;
    background: transparent linear-gradient(244deg, #fde6cd, #ebebff) 0 0 no-repeat padding-box;
    /* background-color: #ffffff; */
}

.auth-screen::before {
    content: "";
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/banner/perspective-grid.png) no-repeat center center;
    background-size: cover;
    opacity: 0.8;
    z-index: 0;
}

/* image changing css */
.img-container {
    overflow: hidden !important;
    position: relative;
}

.login-left-images {
    width: 480px;
    object-fit: cover;
    margin: 0 auto;
}

.register-screen .login-left-images {
    width: 590px;
}

.auth-screen .auth-left-img {
    /* min-height: 100vh; */
    /* width: 400px; */
    object-fit: cover;
    animation: movingUp 3s linear infinite;
}

@keyframes movingUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    75% {
        transform: translateY(-10px);
    }
}


.auth-screen .auth-page-switcher {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.auth-screen .auth-page-switcher .switcher-text.active {
    color: #000000;
    background-color: #ffffff;
}

.auth-screen .auth-page-switcher .switcher-text {
    text-align: right;
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 30px;
    background-color: #000000;
    margin: 2px 0;
    border-radius: 45px 0 0 45px;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

/* form control css */
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.auth-screen .auth-bg {
    /* background-color: #ffffff; */
    /* min-height: 100vh; */
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    /* padding: 60px 30px 52px; */
}

.auth-screen .auth-content {
    max-width: 500px;
    width: 100%;
    padding: 45px;
    background-color:
        color-mix(in oklab, var(--color-white) 60%, transparent);
    backdrop-filter: blur(25px);
    border-radius: 10px;
}

.auth-screen .auth-bg .logo {
    display: block;
    margin-bottom: 50px;
    max-width: 40vw;
}

.auth-form .description {
    margin-bottom: 30px;
    font-size: 17px;
}

.remember-me {
    position: unset !important;
    transform: unset !important;
    background-color: transparent !important;
    pointer-events: auto !important;
}

.auth-screen .auth-header .logo {
    width: 150px;
}

.auth-screen .auth-form .form-group .form-control {
    min-height: 40px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--primary-orange);
    padding: 10px 30px 10px 0;
    color: #111111;
    border-radius: 3px;
}

.auth-content .form-group i {
    position: absolute;
    z-index: 1;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.8;
}

.auth-content .txt-transformY-50 {
    transform: translateY(0);
    opacity: 1;
    transition: all 1.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.auth-content-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.auth-content .auth-btn-fill {
    margin-right: 30px;
    margin-top: 15px;
    cursor: pointer;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    box-shadow: none;
    outline: none;
    border: 0;
    color: #fff;
    border-radius: 3px;
    background-color: #e9b102;
    padding: 10px 36px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.auth-content .forgot-pass {
    color: var(--primary-color);
    font-size: 15px;
    margin-top: 5px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.auth-content .forgot-pass:hover {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.auth-screen .auth-form {
    margin-bottom: 20px;
}

.auth-screen .auth-form .form-group {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.auth-footer h3 {
    font-size: 18px;
    font-weight: 500;
}

.vegas-slide-inner.vegas-animation-kenburns::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 230, 205, 0.2);
    z-index: 1;
}

.profile-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 20px;
    object-fit: cover;
    border: 1px solid var(--primary-color);
}


.profile-wrapper {
    position: relative;
    display: inline-block;
}

.profile-btn {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
}

.profile-btn:hover {
    background: #f5821f;
    border: 1px solid var(--primary-orange);
}

/* Dropdown */
.profile-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 170px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    transition: 0.2s;
}

.profile-dropdown a:hover {
    background: #f5821f;
    color: #fff;
}

/* Show state */
.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-section {
    background: #f9fbfd;
    padding: 40px 0;
}

.profile-section .profile-container {
    width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
}

/* LEFT */
.profile-section .profile-left {
    width: 30%;
}

.profile-section .profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #00257030;
    margin-bottom: 25px;
}

.profile-section .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-section .user-avatar {
    width: 50px;
    height: 50px;
    background: #e6eef8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
}

.profile-section .profile-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.profile-section .profile-card p {
    margin: 5px 0 0;
    color: #777;
}

/* MENU */
.profile-section .menu-card h5 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.profile-section .menu-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-section .menu-card li {
    padding: 10px 0;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.profile-section .menu-card li:hover,
.profile-section .menu-card li.active {
    color: #f5821f;
    font-weight: 500;
}

/* RIGHT */
.profile-section .profile-right {
    position: relative;
    width: 70%;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* Important */
}

/* Decorative background */
.profile-section .profile-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: url('../images/home/profile-card-bg.jpg') no-repeat right bottom;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Make content appear above */
.profile-section .profile-right>* {
    position: relative;
    z-index: 1;
}

.profile-section .profile-right h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.profile-section .detail-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.profile-section label {
    font-size: 14px;
    color: #464646;
}

.profile-section .primary-btn {
    margin-top: 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.profile-section .primary-btn:hover {
    background: #f5821f;
}

/* FORM */
.profile-section .form-group {
    margin-bottom: 20px;
}

.profile-section input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

/* TABS */
.profile-section .profile-tab-pane {
    display: none;
}

.profile-section .profile-tab-pane.active {
    display: block;
}

.profile-section input[readonly] {
    background: #fcfcfc;
}

.profile-section .secondary-btn {
    background: #f5821f;
    color: #fff;
    border: none;
    padding: 7px 15px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
}

.profile-section .report-card,
.profile-section .booking-card {
    background: #f9fbfd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.profile-section .report-card,
.profile-section .booking-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-section .report-card img,
.profile-section .booking-card img {
    width: 200px;
    border-radius: 8px;
}

.profile-section .report-card h4,
.profile-section .booking-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.profile-section .status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
}

.profile-section .confirmed {
    background: green;
}

.profile-section .pending {
    background: orange;
}

/* TOAST */
.profile-section .profile-toast {
    position: fixed;
    right: 30px;
    top: 120px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.profile-section .profile-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.profile-section .form-group label {
    position: unset !important;
}

/* GENDER PILL */
.profile-section .gender-group {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.profile-section .gender-group input {
    display: none;
}

.profile-section .gender-pill {
    flex: 1;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.profile-section .gender-group input:checked+.gender-pill {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}


/* PHONE GROUP */
.profile-section .phone-group {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.profile-section .phone-group input {
    flex: 1;
}

/* CUSTOM SELECT */
.profile-section .custom-select {
    position: relative;
    width: 120px;
    cursor: pointer;
}

.profile-section .select-selected {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.profile-section .select-options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}

.profile-section .select-options div {
    padding: 10px;
}

.profile-section .select-options div:hover {
    background: #f5821f;
    color: #fff;
}

.profile-section .custom-select {
    pointer-events: none;
    opacity: 0.6;
}

.profile-section .custom-select.enabled {
    pointer-events: auto;
    opacity: 1;
}


.profile-section .phone-input-group {
    display: flex;
    gap: 0px;
    margin-top: 8px;
}

.profile-section .country-code {
    width: 80px;
    padding: 10px;
    border: 1px solid #fcfcfc;
    border-radius: 8px;
    background: #f5f7fa;
    outline: none;
    appearance: none;
    /* cursor: not-allowed; */
}

.profile-section .phone-input-group input {
    flex: 1;
}

.profile-section input[type=number]::-webkit-outer-spin-button,
.profile-section input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.profile-section input[type=number] {
    -moz-appearance: textfield;
}

.profile-section .password-wrapper {
    position: relative;
    margin-top: 8px;
}

.profile-section .password-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.profile-section .change-toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 16px;
}

.profile-section .change-toggle-password:hover {
    color: #002570;
}

.booking-section .booking-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    margin-bottom: 20px;
}

.booking-section .booking-left img {
    width: 150px;
    border-radius: 12px;
}

.booking-section .booking-right {
    flex: 1;
}

.booking-section .booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.booking-section .booking-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #002570;
}

.booking-section .booking-details p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
}

.booking-section .status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
}

.booking-section .confirmed {
    background: #28a745;
}

.booking-section .pending {
    background: #f5821f;
}

.booking-section .completed {
    background: #007bff;
}

.booking-section .cancelled {
    background: #dc3545;
}

.booking-section .booking-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.primary-btn.download-report {
    padding: 7px 12px;
    font-size: 14px;
    /* background-color: var(--primary-color); */
}


.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.04);
    z-index: 10000;
    opacity: 0;
    transform: translateY(15px);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-orange);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.progress-wrap {
    visibility: hidden;
}

.progress-wrap.active-progress {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.top-arrow {
    top: 47%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.top-arrow svg,
.uxora-mobile-menu ul .uxora-item-has-children.uxora-active>a .uxora-mean-expand:before {
    transform: rotate(-90deg);
}

.counter-contain {
    display: flex;
    align-items: center;
    /* gap: 15px; */
    transition: all 0.3s ease;
    height: 100%;
}

.counter-contain img {
    width: 115px;
    height: 115px;
    object-fit: contain;
}

.counter-contain h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.counter-contain p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
}

.mobile-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-close i {
    font-size: 16px;
    color: #000;
    transition: 0.3s ease;
}

.mobile-close:hover i {
    color: #f5821f;
}