@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
:root {
    --red: #f22e52;
    --dark-red: #b5121f;
    --navy: #1a1f4b;
    --white: #ffffff;
    --off-white: #f8f9fa;

    --linear-bg: radial-gradient(
        182.22% 656.34% at 31.11% 5.54%,
        #f22e52 0%,
        #cc1739 16.21%,
        #2d0c5d 62.1%
    );

    --text-gray: #606161;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
}

a {
    text-decoration: none !important;
    color: inherit;
}

/* ════════════════════════════════════════════════════════════════════════════════
   TOP INFO BAR
   ════════════════════════════════════════════════════════════════════════════════ */

.top-bar {
    color: var(--white);
    padding: 14px 0 12px;
    font-size: 0.92rem;
    font-weight: 500;
}

.hero-overlay-top {
    background: transparent;
    border-bottom: 1px solid #000000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    color: #2d0c5d;
    text-decoration: none;
    white-space: nowrap;
}

.top-bar-item i {
    color: var(--red);
    font-weight: 700;
}

.top-bar-item:hover {
    opacity: 0.85;
}

.top-bar-item i {
    font-size: 0.9rem;
}

.top-bar-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.top-bar-social a {
    color: #000000;
    font-size: 1.15rem;
    transition: opacity 0.2s;
    text-decoration: none;
}

.top-bar-social a:hover {
    opacity: 0.8;
}

/* ════════════════════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════════════════════ */

.navbar-custom {
    background: var(--white);
    box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.422);
    padding: 10px 0px;
    margin-bottom: 30px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--red) !important;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 1.5rem !important;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.brand-icon {
    max-width: 150px;
}
.brand-icon img {
    width: 100%;
    object-fit: cover;
}

.nav-link {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: #222 !important;
    padding: 0.6rem 1rem !important;
    position: relative;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.btn-book-nav {
    background: var(--red);
    color: var(--white);
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 30px;
    padding: 4px 28px;
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-nav:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
    flex-shrink: 0;
}

.search-icon {
    font-size: 20px;
    color: #606161;
    cursor: pointer;
    transition: color 0.2s;
}

.search-icon:hover {
    color: var(--red);
}

/* ════════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════════════════════ */

.hero {
    margin-top: 30px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-bg {
    background:
        radial-gradient(
            circle at 20% 40%,
            rgba(242, 46, 82, 0.95) 0%,
            rgba(242, 46, 82, 0.8) 20%,
            transparent 60%
        ),
        linear-gradient(
            110deg,
            rgba(242, 46, 82, 0.9) 0%,
            rgba(204, 23, 57, 0.85) 35%,
            rgba(45, 12, 93, 0.85) 70%,
            rgba(40, 12, 62, 0.95) 100%
        ),
        url("/assets/images/herobg.png");

    border-radius: 10px;
    padding: 80px 35px;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero-left-content {
    color: #fff;
}

.hero-top-sub-title {
    font-size: 20px;
}

.hero-title {
    font-size: 56px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.hero-btn-container {
    display: flex;
    gap: 20px;
}
.hero-btn-container {
    margin-top: 25px;
}
.hero-btn-container a {
    padding: 6px 28px;
    border-radius: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.book-test {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
}

.btn-download-report {
    color: #fff;
    background: #2d0c5d;
    border: 2px solid #2d0c5d;
}

/* Home Sts */
.htm-sts-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    transition: 0.3s;
}

.htm-sts-icon {
    width: 81px;
    height: 81px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    min-width: 81px;
}

.htm-sts-icon.green {
    background: #58be86;
}

.htm-sts-icon.red {
    background: #f22e52;
}

.htm-sts-icon.purple {
    background: #2d0c5d;
}

.hm-sts-content {
    /* max-width: 190px; */
}

.hm-sts-content h5 {
    margin: 0;
    font-weight: 600;
}

.hm-sts-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.hm-sts-right-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #606161;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #606161;
    font-weight: 900;
    min-width: 40px;
}

/* Section Title */
.section-title {
    margin-bottom: 20px;
}

/* SUBTITLE */
.section-subtitle {
    display: inline-block;
    color: #e63946;
    font-weight: 600;
    position: relative;
    margin-bottom: 0px;
}

/* UNDERLINE */
.section-subtitle::after {
    content: "";
    width: 60%;
    height: 1.5px;
    background: #e63946;
    display: block;
    margin: 0px auto 0;
}

/* MAIN TITLE */
.section-heading {
    font-size: 38px;
    font-weight: 600;
    color: var(--text-gray);
}

/* HIGHLIGHT */
.section-heading span {
    color: #e63946;
}

/* DESCRIPTION */
.section-description {
    margin-top: 10px;
    color: #606161;
    font-weight: 400;
    font-weight: 500;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* Laboratory  Card */
.liberoty-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
}

.liberoty-card-img {
    position: relative;
    overflow: hidden;
        margin-bottom: -15px;
}

.liberoty-card-img img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 0px 0px 20px 20px;
}

.liberoty-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/cardshape.png") center center/cover
        no-repeat;
    z-index: 2;
    pointer-events: none;
    width: 100px;
    height: 100px;
    background-position: unset;
    left: 0;
    top: 0;
}

/* .liberoty-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(/assets/images/cardshape.png);
    z-index: 2;
    pointer-events: none;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
} */

.liberoty-card-icon {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 22px;
    border: 1px solid #606161;
    z-index: 5;
}

.liberoty-card-body {
    padding: 10px 20px 20px 20px;
    position: relative;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-radius: 0px 0px 20px 20px;
    padding-top: 25px;
}

.liberoty-card-body h3 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #606161;
    font-size: 24px;
}

.liberoty-card-body p {
    font-size: 12px;
    color: #606161;
}

.liberoty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.liberoty-tags span {
    background: #eee;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
}

.liberoty-btns {
    display: flex;
    gap: 10px;
}
.liberoty-btns a {
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 12px;
}

.liberoty-btn-outline {
    border: 1px solid #606161;
    color: #606161;
    text-decoration: none;
}

.liberoty-btn-fill {
    border: 1px solid #f22e52;
    background: #f22e52;
    color: #fff;
    text-decoration: none;
}

.liberoty-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.liberoty-card:hover .liberoty-btn-fill {
    background: #2d0c5d;
    border: 1px solid #2d0c5d;
}

.liberoty-card:hover .liberoty-card-icon svg path {
    fill: #fff;
}

.liberoty-card:hover .liberoty-card-icon svg path:first-child {
    fill: #2d0c5d;
    stroke: #2d0c5d;
}

.liberoty-card:hover .liberoty-btn-outline {
    border-color: #f22e52;
    color: #f22e52;
}

.liberoty_section_view_more-btn {
    color: #606161;
    text-align: center;
}

.hm-why-choose-us-sec {
    background: #f4f4f4;
}

.why-rating-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.why-rating-left {
    text-align: center;
    min-width: 90px;
}

.why-rating-left h3 {
    font-size: 48px;
    font-weight: 800;
    color: #e63946;
    margin: 0;
}

.why-stars {
    color: #ffe57d;
    font-size: 14px;
}
.why-stars span {
    color: #d9d9d9;
}

.why-divider {
    width: 2px;
    height: 60px;
    background: #d9d9d9;
}

.why-rating-right h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-gray);
}

.why-rating-right p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.hm-why-choose-us-progress-item {
    margin-bottom: 20px;
}

.hm-why-choose-us-progress-top {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-gray);
}

.hm-why-choose-us-progress-bar {
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.hm-why-choose-us-progress-fill {
    height: 100%;
    background: var(--linear-bg);
    background-blend-mode: multiply;
    border-radius: 24px;
    width: 0;
    transition: width 1s ease-in-out;
}

.hm-why-choose-us-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 400;
    color: #7a7a7a;
    border: 1px solid #7a7a7a;
    margin-left: 4px;
}

.hm-why-choose-us-img-container {
    position: relative;
}

.hm-why-choose-us-img-container img {
    width: 100%;
    height: 565px;
    border-radius: 2px 20px;
    object-fit: cover;
}

.hm-why-choose-us-badge {
    position: absolute;
    max-width: 155px;
    top: 80px;
    left: -65px;
    background-blend-mode: multiply;
    background: linear-gradient(
        92.09deg,
        #cc1739 -12.17%,
        #f22e52 65.93%,
        #2d0c5d 204.43%
    );

    color: #fff;
    padding: 15px;
    border-radius: 5px 30px;
    text-align: center;
}

.hm-why-choose-us-badge h4 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
}

/* Home Counter Section */
.hm-counter-sec {
    background: linear-gradient(135deg, #f22e52, #cc1739, #2d0c5d);
    color: #fff;
}

.hm-counter-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    padding-top: 10px;
    text-align: left;
}

.hm-counter-item h3 {
    font-size: 64px;
    font-weight: 700;
    margin: 0;
    color: #ff7e95;
}

.hm-counter-item p {
    margin: 0;
    font-size: 22px;
    color: #ffdbe1;
    font-weight: 500;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hm-counter-item {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .col-md-4:last-child .hm-counter-item {
        border-right: none;
    }
}

.hm-working-process-sec {
    text-align: center;
}

.hm-working-process-row {
    align-items: stretch;
    text-align: left;
}

.hm-working-process-item {
    padding: 10px 15px;
    position: relative;
}

.hm-working-process-img {
    width: 89px;
    height: 89px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hm-working-process-img img {
    max-width: 89px;
}
.hm-working-process-img svg {
    width: 70px;
    height: 70px;
}

.hm-working-process-content {
    position: relative;
    z-index: 2;
}

.hm-working-process-content-bg {
    position: absolute;
    bottom: -16px;
    left: 13px;
    z-index: 1;
    font-size: 117px;
    font-weight: 700;
    color: #eae7e7;
    pointer-events: none;
}

.hm-working-process-item h4 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #606161;
}

.hm-working-process-item p {
    font-size: 14px;
    color: #606161;
    line-height: 1.6;
    font-weight: 400;
    max-width: 235px;
}

/* Home Testimonial Seaction */

.hm-testimonial-sec {
    background: var(--linear-bg);
    background-blend-mode: multiply;
    max-height: 350px;
}
.hm-testimonial-card {
    position: relative;
    padding: 55px 20px 20px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.hm-testimonial-quote {
    position: absolute;
    top: -27px;
    left: 20px;
    width: 53px;
    height: 53px;
    background: #ff3b5c;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hm-testimonial-text {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hm-testimonial-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hm-testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hm-testimonial-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.hm-testimonial-user h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e1e1e;
}

.hm-testimonial-user span {
    font-size: 14px;
    color: var(--text-gray);
}

.hm-testimonial-stars {
    color: #f1cc36;
    font-size: 16px;
}

.hm-testimonial-swiper {
    padding: 30px 0px;
}

.hm-testimonial-wrapper {
    max-width: 950px;
    justify-content: center;
    margin: 0 auto;
}

/* Gallery Section */
.hm-galleary-sec {
    background: #fff;
}

.hm-galleary-img-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
}

.hm-galleary-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.hm-galleary-img-container:hover img {
    transform: scale(1.08);
}

/* Conatct Us Section */
.hm-bg-contactus {
    background: url("https://m.media-amazon.com/images/I/71NQ8HuXTmL._AC_UF1000,1000_QL80_.jpg")
        no-repeat center;
    background-size: cover;
    padding: 80px 0;
    border-radius: 20px;
    max-width: 100%;
    overflow-x: hidden;
}

.hm-contact-card {
    background: #f3f3f3;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.hm-contact-title h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.hm-contact-title p {
    color: #777;
    font-size: 15px;
    margin-bottom: 30px;
}

.hm-contact-form input,
.hm-contact-form select,
.hm-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #e9e9e9;
    font-size: 14px;
    outline: none;
}

.hm-contact-form textarea {
    height: 120px;
    resize: none;
}

.hm-contact-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: #222;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.hm-contact-btn:hover {
    background: #000;
}

/* Home FAQ Section */

.hm-faq-title h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hm-faq-title p {
    color: #777;
}

.hm-faq-item {
    border: none;
    margin-bottom: 15px;
}

.hm-faq-btn {
    border-radius: 12px !important;
    font-size: 20px;
    font-weight: 500;
    color: #606161;
    padding: 18px;
    border: 1px solid #d9d9d9;
}

.hm-faq-btn::after {
    background-image: none !important;
    content: "+";
    font-size: 24px;
    font-weight: bold;
    transform: rotate(0deg);
}

.hm-faq-btn:not(.collapsed)::after {
    content: "−";
}

.hm-faq-body {
    background: #fff;
    border-radius: 10px;
    margin-top: 5px;
    padding: 15px;
    color: #666;
}

/* Home Map Section */
.hm-map-sec {
    width: 100%;
    height: 50vh;
}

.hm-map-sec iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Section */
.hm-footer-sec {
    background: radial-gradient(
        182.22% 656.34% at 31.11% 5.54%,
        #2717a4 0%,
        #291751 16.21%,
        #2d0c5d 62.1%
    );
    background-blend-mode: multiply;
    color: #fff;
}

.hm-footer-logo {
    width: 180px;
    margin-bottom: 20px;
    background: #fff;
    padding: 5px 10px;
    border-radius: 6px;
}

.hm-footer-about h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hm-footer-about p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.hm-footer-time p {
    font-size: 12px;
    margin: 0px;
}

.hm-footer-time hr {
    border-color: #fff;
    margin: 10px 0px;
}

.hm-footer-links h5,
.hm-footer-contact h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.hm-footer-links ul {
    font-size: 14px;
    padding-left: 10px;
}

.hm-footer-links ul li {
    margin-bottom: 5px;
    color: #fff;
}

.hm-footer-links ul li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.hm-footer-links ul li a:hover {
    color: #fff;
}

.hm-footer-contact p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Common Hero Section */
.common-hero-section {
    background:
        radial-gradient(
            182.22% 656.34% at 31.11% 5.54%,
            #f22e52 0%,
            #cc1739 16.21%,
            #2d0c5d 62.1%
        ),
        url("/assets/images/herobg.png");

    background-blend-mode: multiply;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    padding: 80px 20px;
    border-radius: 10px;
}

.common-hero-section h1 {
    color: #fff;
    font-size: 56px;
    text-align: start;
    font-weight: 600;
    margin-left: 30px;
}

/* Popup form styling */
.popup-modal {
    backdrop-filter: blur(6px);
}

.popup-content {
    border-radius: 20px;
    padding: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.popup-body {
    padding: 20px 30px;
}

.popup-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 32px;
    color: var(--text-gray);
}

.popup-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.popup-group {
    margin-bottom: 20px;
}

.popup-group label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.popup-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--text-gray);
    padding: 8px 0;
    outline: none;
}

.popup-group input:focus {
    border-color: #6c2bd9;
}

.popup-or {
    text-align: start;
    margin: 10px 0;
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
}

.popup-check {
    display: flex;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 20px;
}

.popup-btn {
    width: 100%;
    padding: 12px;
    background: #2d0c5d;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
}

.popup-btn:hover {
    background: #2c0553;
}

/* Services CTA */
.cta-wrapper {
    padding: 20px 0;
}

.cata-backrgound {
    background:
        radial-gradient(
            182.22% 656.34% at 31.11% 5.54%,
            #f22e52 0%,
            #cc1739 16.21%,
            #2d0c5d 62.1%
        ),
        url("/assets/images/herobg.png");

    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 20px; /* FIX */
    border-radius: 10px;
    text-align: center;
}

.cata-backrgound h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-button {
    display: flex;
    justify-content: center;
}

.whatsap-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 24px;
    background: #fbfffd;
    color: #606161;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    gap: 6px;
}

.whatsap-btn-cta span {
    color: #19c83f;
    display: flex;
}

/* Conatct Us Page */
.contact-us-wrapper {
    padding: 20px;
}

.contact-us-title {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    font-weight: 500;
    margin-bottom: 0px;
}

.contact-us-address {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-us-heading {
    color: #f22e52;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-us-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.contact-us-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    color: #2d0c5d;
}

.contact-us-info i {
    color: var(--red);
    font-size: 16px;
}

/* reports table */
.report_section {
    min-height: 50vh;
}

.reports-table-user-tabs {
    display: flex;
    gap: 10px;
}

.reports-table-user {
    border: none;
    padding: 6px 16px;
    border-radius: 3px;
    background: #e4e2e2;
    color: #7a7a7a;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

.reports-table-user.active {
    background: var(--red);
    color: #fff;
}

.reports-table-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.reports-table-category {
    display: flex;
    gap: 10px;
    border: 1px solid #7a7a7a;
    border-radius: 10px;
    width: fit-content;
}

.reports-table-category button {
    border: none;
    background: transparent;
    padding: 6px 16px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-gray);
    font-weight: 400;
}

.reports-table-category button.active {
    background: #ff2d55;
    color: #fff;
    padding: 0px 30px;
}
.reports-table-divider {
    width: 0.5px;
    height: 17px;
    margin-top: 9px;
    background: #7a7a7a;
}

.reports-table-filter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.reports-table-filter input {
    margin-right: 6px;
}
.reports-table-filter input[type="radio"] {
    accent-color: var(--red);
}

.reports-table-filter label {
    font-size: 16px;
    color: var(--text-gray);
}

.reports-table-main {
    border-collapse: collapse;
}

.reports-table-main thead th {
    font-weight: 700;
    border-bottom: 1px solid #b0b0b0;
    font-size: 20px;
}

.reports-table-main tbody tr {
    border-bottom: 1px solid #b0b0b0;
}

.reports-table-main td {
    vertical-align: middle;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}

.reports-table-btn {
    border: 1px solid #7a7a7a;
    background: #fff;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.reports-table-btn:hover {
    background: #f5f5f5;
}

/* Desise Page */
/* SIDEBAR */
.desise-pg-sidebar {
    position: sticky;
    top: 100px;
}

.desise-pg-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 14.6px 0px #0000001a;
}

.desise-pg-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 135%;
}

/* MENU */
.desise-pg-menu {
    list-style: none;
    padding: 0;
}

.desise-pg-menu li {
    margin-bottom: 8px;
}

.desise-pg-menu li a {
    display: block;
    padding: 8px 10px;
    border-radius: 0px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 0.2px solid #b0b0b0;
}

.desise-pg-menu li:last-child a {
    border-bottom: none;
}

.desise-pg-menu li.active a {
    background: #f22e52;
    border: 1px solid #f22e52;
    border-radius: 5px;
    color: #fff;
}
.desise-pg-menu li.active a > svg{
    display: none;
}
.desise-pg-menu-arrow {
    float: right;
    margin-top: 0px;
}
.desise-pg-menu-text {
    margin-left: 10px;
}

.desise-pg-card button {
    text-align: left;
}

.desise-pg-card button span svg {
    margin: 0px 5px;
}

/* BUTTONS */
.desise-pg-btn {
    width: 100%;
    padding: 10px;
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f22e52;
    color: #fff;
}

.desise-pg-btn.light {
    background: #fff;
    color: #000;
    border: 0.5px solid #606161;
}

.desise-pg-download-button {
    float: right;
}

/* CONTACT CARD */
.desise-pg-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--linear-bg);
    background-blend-mode: multiply;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 20px;
    min-height: 235px;
}

/* LEFT CONTENT */
.desise-pg-contact-content {
    max-width: 60%;
    z-index: 2;
}

.desise-pg-contact-content p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

/* BUTTON */
.desise-pg-contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: #2d0c5d;
    border: none;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

/* ICON CIRCLE */
.desise-pg-contact-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT IMAGE */
.desise-pg-contact-img {
    position: absolute;
    right: 0;
    /* bottom: -85px; */
    height: 100%;
}

.desise-pg-contact-img img {
    height: 100%;
    object-fit: contain;
}

/* OPTIONAL OVERLAY (fade bottom like design) */
.desise-pg-contact-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(193, 23, 23, 0.76), transparent);
}

/* ========================= */
/* RIGHT CONTENT (DYNAMIC) */
/* ========================= */

.desise-pg-content {
    padding-left: 10px;
}

/* HEADINGS */
.desise-pg-content h1,
.desise-pg-content h2,
.desise-pg-content h3,
.desise-pg-content h4 {
    color: #f22e52;
    font-weight: 600;
}

.desise-pg-content h2 {
    font-size: 36px;
}

.desise-pg-content h3 {
    font-size: 22px;
}

.desise-pg-content p {
    font-size: 16px;
    line-height: 135%;
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.desise-pg-content img {
    width: 100%;
    border-radius: 12px;
    margin: 15px 0;
    object-fit: cover;
}

/* TABLE */
.desise-pg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0px;
}

.desise-pg-content table th,
.desise-pg-content table td {
    padding: 12px 0px;
    border-bottom: 1px solid #b0b0b0c1;
    text-align: left;

    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.desise-pg-content table th {
    font-weight: 700;
    font-size: 20px;
    font-family: "Inter", sans-serif;
}

/* LIST SUPPORT */
.desise-pg-content ul {
    padding-left: 18px;
}

.desise-pg-content ul li {
    margin-bottom: 6px;
}

/* Desise Page End */

/* Terms and Conditions & Privacy Policy page */
.pg-terms-condtion-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f22e52;
}

.pg-terms-condtion-content {
    font-size: 16px;
    line-height: 144%;
    font-weight: 400;
}

@media (max-width: 768px) {
    .reports-table-filter {
        gap: 10px;
        margin-bottom: 0px !important;
    }

    .reports-table-btn {
        font-size: 12px;
        padding: 3px 5px;
    }

    .reports-table-main th,
    .reports-table-main td {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .hm-footer-about {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    .hm-working-process-item::after {
        content: "";
        position: absolute;
        top: 50px;
        right: -50%;
        width: 100%;
        height: 2px;
        background: #ddd;
        z-index: -1;
    }

    .hm-working-process-item:last-child::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hm-working-process-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .why-rating-box {
        gap: 12px;
    }

    .why-rating-left h3 {
        font-size: 45px;
    }

    .why-rating-right h4 {
        font-size: 15px;
    }

    .why-rating-right p {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .hide-on-mob-view {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide-on-desktop {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-bg {
        padding: 80px 15px;
    }
    .hero-top-sub-title {
        font-size: 14px;
    }

    .hero-title {
        font-size: 25px;
    }
    .top-bar-item {
        font-size: 13px;
    }
    .hero-btn-container {
        justify-content: center;
    }

    .hero-btn-container a {
        padding: 6px 20px;
    }
    .hm-contact-card {
        padding: 15px;
    }
    .hm-working-process-item {
        padding: 5px 0px;
    }
    .hm-why-choose-us-badge {
        top: 15px;
        left: 6px;
        max-width: 130px;
        padding: 2px;
    }
    .section-heading {
        font-size: 28px;
        padding: 0px 5px;
    }
    .hm-contact-title h2 {
        font-size: 30px;
    }
    .hm-faq-title h2 {
        font-size: 30px;
    }
    .common-hero-section h1 {
        font-size: 30px;
        margin-left: 0px;
    }
    .cata-backrgound h2 {
        font-size: 30px;
    }
    .nav-link::after {
        max-width: 65px;
        left: 6px;
        top: 28px;
    }
    .contact-us-wrapper {
        padding: 0px;
    }

    .liberoty-card-icon {
        top: 6px;
        left: 6px;
        width: 45px;
        height: 45px;
    }
    .hm-counter-item p {
        font-size: 18px;
    }
    .hm-counter-item h3 {
        font-size: 50px;
    }

    .hm-faq-btn {
        font-size: 17px;
        padding: 10px;
    }
    .hm-footer-time hr {
        margin: 5px 0px;
    }
    .hm-working-process-item h4 {
        font-size: 16px;
    }

    .section-padding {
        padding: 30px 0px;
    }
    .hm-why-choose-us-img-container img {
        height: auto;
    }
    .liberoty-card-body {
        padding: 10px 10px 15px 10px;
    }

    .htm-sts-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        min-width: 60px;
    }

    .liberoty-card-img img {
        height: 200px;
    }
    .desise-pg-content h2 {
        font-size: 25px;
    }
    .desise-pg-menu-arrow {
        margin-top: 0px;
    }
    .desise-pg-card {
        padding: 10px;
    }
    .desise-pg-contact-card {
        padding: 30px 10px;
    }
    .navbar-custom {
        padding: 0px;
    }
    .top-bar {
        padding: 2px 0 2px;
    }

    .whatsap-btn-cta {
        padding: 6px 24px;
    }
    .nav-link {
        padding: 0.3rem 0.5rem !important;
    }
    .btn-book-nav {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .mobile-profile-icon {
        left: 60%;
    }
}
@media (max-width: 767px) {
    .mobile-profile-icon {
        left: 48%;
    }
}
@media (max-width: 512px) {
    .mobile-profile-icon {
        left: 40%;
    }
}
@media (max-width: 445px) {
    .mobile-profile-icon {
        left: 33%;
    }
}
@media (max-width: 400px) {
    .mobile-profile-icon {
        left: 25%;
    }
}
@media (max-width: 360px) {
    .mobile-profile-icon {
        left: 23%;
    }
}
