@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #346da5;
    --secondary-color: maroon;
    --black: #000;
    --white: #fff;
    --primary-dark: #1a4a79;
    --secondary-dark: #8f080d;
}

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

::selection {
    background: var(--primary-color);
    color: var(--white);
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--black);
    background: #f9f9f9;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* top nav */


.top-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    padding: 7px 0;
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }
}

.top-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.top-contact {
    align-items: center;
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-text li,
.top-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--white);

}

.top-text li a {
    /* margin-right: 8px; */
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
}

.top-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 0;
}

.top-social li a {
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 30px;
    background: var(--primary-color);
    height: 30px;
    color: var(--white);
    border: 2px solid var(--white);

}

.top-social li a:hover {
    background: var(--secondary-color);
    color: var(--white);
}





/* menu  */

.custom-navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    /* margin-bottom: -110px; */
}

.custom-navbar .container {
    /* background: var(--white); */
    border-radius: 0 0 20px 20px;
}

@media (max-width: 991px) {
    .custom-navbar .container {
        padding: 0;
    }

    .custom-navbar .container {
        border-radius: 0;
    }
}

.logo img {
    border-radius: 6px;

    margin: 0;
}

.nav-toggle {
    display: none;
    text-align: right;

    button {
        font-size: 24px;
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
    }
}

ul.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    /* gap: 26px; */
    justify-content: space-between;
}

ul.nav-links li {
    position: relative;
}

ul.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    padding: 20px 10px;
    display: block;
}

ul.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 95%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    /* overflow: hidden; */
    padding: 0;
    flex-direction: column;
    min-width: 230px;
    width: max-content;
    z-index: 999;
}

.dropdown-menu a {
    padding: 5px 10px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: capitalize !important;
    color: var(--black) !important;
    border-bottom: 1px solid var(--primary-color);
}

.dropdown-menu li:last-child>a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Subdropdown */
.has-subdropdown {
    position: relative;
}

.subdropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border: 1px solid var(--primary-color);
    background: var(--white);
    display: none;
    padding: 0;
    flex-direction: column;
    min-width: 200px;
    width: max-content;
    list-style: none;
}

.subdropdown-menu a {
    padding: 5px 10px !important;
    border-bottom: 1px solid var(--primary-color);
    color: var(--black);
}

.subdropdown-menu a:hover {
    background: var(--primary-color) !important;
    color: var(--white);
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .has-subdropdown:hover>.subdropdown-menu {
        display: flex;
    }

}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    ul.nav-links {
        flex-direction: column;
        display: none;
        width: 100%;
        margin-top: 10px;
        gap: 0;
        max-height: 100vh;
        overflow-y: auto;
    }

    ul.nav-links.show {
        display: flex;
    }

    ul.nav-links li {
        width: 100%;
    }

    ul.nav-links a {
        padding: 12px 10px;
        border-bottom: 1px solid #ccc;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        border: none;
    }

    .dropdown-menu a {
        padding: 8px 8px 8px 23px !important;
        font-size: 16px !important;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.show .dropdown-menu {
        display: flex;
    }


    .subdropdown-menu {
        position: static;
        display: none;
        background: var(--primary-color);
        border: none;
        border-radius: 0;
        width: 100%;
        box-shadow: none;
    }

    .subdropdown-menu.show {
        display: flex;
    }

    .subdropdown-menu a {
        padding: 10px 20px !important;
        border-bottom: 1px solid #333;
        color: #fff !important;
    }

    .sub-subdropdown-menu {
        position: static;
        display: none;
        background: #fff;
        border: none;

        border-radius: 0;
        width: 100%;
    }
}


.section__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}


/* about us  */

/* about us  */

.about-doctor-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-doctor-image-item img {
    border-radius: 30px;
}

.about-doctor-title {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-doctor-description {
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-doctor-features {
    margin-bottom: 20px;
}

.about-doctor-feature-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.about-doctor-feature-icon {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.about-doctor-feature-text {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.about-doctor-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-theme-btn {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.secondary-theme-btn {
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.primary-theme-btn::after,
.secondary-theme-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    opacity: 0;
    transition: all 0.5s ease;
}

.primary-theme-btn:hover::after,
.secondary-theme-btn:hover::after {
    width: 100%;
    opacity: 0.5;
    transform: scale(1.2);
}

@media (max-width: 576px) {
    .about-doctor-actions {
        gap: 10px;
    }
}







/* about */

.about-intro .title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.about-thumb img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

@media (max-width: 992px) {
    .about-intro .title {
        font-size: 28px;
    }

    .about-intro p {
        font-size: 16px;
    }
}

.about-container {
    background: #fff;
    padding: 60px 0;
}

.abt-excellance {
    display: flex;
    position: relative;
    justify-content: end;
}

.excellance-award-img img {
    border-radius: 20px 0 0 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
}

.excellance-text {
    position: absolute;
    left: 10px;
    top: 50px;
    max-width: 850px;
    background: #fff;
    padding: 40px 100px 40px 50px;
    border-radius: 0 20px 20px 0;
    /* box-shadow: 0 4px 15px rgba(0, 0,
                    0, 0.1); */
}

.excellance-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 48px;
    font-family: "adobe-devanagari", sans-serif;
    /* margin-right: 80px; */
}

.excellance-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.excellance-text ul li {
    margin-bottom: 7px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.excellance-text p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

@media (max-width: 992px) {
    .about-container {
        padding: 40px 12px;
    }

    .abt-excellance {
        flex-direction: column;
        align-items: center;
    }

    .excellance-award-img img {
        border-radius: 20px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .excellance-text {
        position: static;
        max-width: 100%;
        padding: 20px 0;
        border-radius: 20px;
    }

    .excellance-text h3 {
        font-size: 32px;
        margin-right: 0;
    }
}








.about-page {
    padding: 100px 0 0px;
    position: relative;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #e9f4fc 40%, #e9f4fcb5 80%);
}

@media(max-width: 992px) {
    .about-page {
        padding: 40px 0 0;
    }

    .about-page::before {
        background-image: linear-gradient(to bottom, #e9f4fc 50%, transparent 60%);
    }
}


/* services */

.lsc-section {
    background: #e9f3fd;
    padding: 90px 0;
    position: relative;
}


.lsc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(10, 14, 49, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.lsc-section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;

    span:first-child {
        color: var(--primary-color);
    }

    span:last-child {
        color: var(--secondary-color);
    }

    &::before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: -10px;
        width: 60px;
        height: 4px;
        background: var(--primary-color);
    }

    &::after {
        content: "";
        position: absolute;
        left: 65px;
        bottom: -10px;
        width: 60px;
        height: 4px;
        background: var(--secondary-color);
    }
}

.lsc-flip-wrap {
    perspective: 1100px;
    height: 100%;
}

.lsc-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.lsc-flip-wrap:hover .lsc-flip-inner {
    transform: rotateY(180deg);
}

/* ── SHARED FACE STYLES ── */
.lsc-front,
.lsc-back {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

/* ── FRONT FACE ── */
.lsc-front {
    background: #fff;
    box-shadow: 0 6px 30px rgba(10, 14, 49, 0.09);
    border: 1px solid rgba(10, 14, 49, 0.06);
}

/* Image area with diagonal clip */
.lsc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
}

.lsc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.88);
}

.lsc-flip-wrap:hover .lsc-img-wrap img {
    transform: scale(1.07);
}

/* Card body */
.lsc-front-body {
    padding: 15px;
}

.lsc-front-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0A0E31;
    margin-bottom: 8px;
    line-height: 1.3;
}

.lsc-line {
    width: 32px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-bottom: 10px;
    transition: width 0.4s ease;
}

.lsc-front-desc {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

}

/* ── BACK FACE ── */
.lsc-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Back uses the image as blurred background */
.lsc-back-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.25);
    transform: scale(1.08);
}

.lsc-back-content {
    position: relative;
    z-index: 2;
}

.lsc-back-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #346ca53f;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0 auto 16px;
}

.lsc-back-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.lsc-back-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.65;
    margin-bottom: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.lsc-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
}

.lsc-back-btn:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .lsc-flip-wrap {
        height: 330px;
    }

    /* Touch tap to flip */
    .lsc-flip-wrap.flipped .lsc-flip-inner {
        transform: rotateY(180deg);
    }
}


/* video  */

.video-section {
    padding: 60px 0;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;

    left: 50%;
    font-size: 3rem;
    color: white;
    transform: translate(-50%, -50%);
    /* background: rgba(0, 0, 0, 0.4); */
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s;

    i {
        color: #fff;
        position: relative;
        z-index: 1;
    }
}

/* Modal iframe */
.modal-video iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .modal-video iframe {
        height: 250px;
    }
}



/* breadcrumb  */

.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 30px 0;
    }
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%2333c89e' fill-opacity='0.1' transform='rotate(45 50 50)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a i {
    font-size: 14px;
    height: 25px;
    width: 25px;
    display: inline-flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    color: var(--primary-color);
}

.breadcrumb-item a:hover {
    color: #d4f6ec;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffffcc;
    margin: 0;
}

.breadcrumb-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-subtitle {
    font-size: 16px;
    color: #d9f4eb;
}


/* service  */


.cat-service {
    padding: 30px 20px;
    background: #f6f6f6;
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.cat-service .seri-img {
    aspect-ratio: 16/8;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.cat-service h2,
.cat-service h3,
.cat-service h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    /* padding-bottom: 5px; */
    border-bottom: 2px solid var(--primary-color);
}

.cat-service p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.cat-service ul {
    /* list-style: disc; */
    margin-bottom: 15px;
    padding-left: 25px;
}

.cat-service ol {
    /* list-style: decimal; */
    margin-bottom: 15px;
    padding-left: 25px;
}

.cat-service ul li::marker,
.cat-service ol li::marker {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.cat-service ul li,
.cat-service ol li {
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}



@media (max-width: 768px) {
    .cat-service {
        padding: 0;
        box-shadow: none;
        background: transparent;
        margin-bottom: 25px;
    }

    .cat-service table th,
    .cat-service table td {
        font-size: 14px;
        padding: 5px;
        line-height: 20px;
    }
}

.sidebar {
    background: #ffffff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.15);
}

/* Doctor Profile Section */
.sidebar-doctor-profile {
    padding: 30px 12px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sidebar-doctor-profile::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    transform: rotate(45deg);
}

.sidebar-doctor-profile::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
}

.sidebar-profile-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sidebar-doctor-img-container {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.sidebar-doctor-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
}

.sidebar-doctor-img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.sidebar-img-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 270px;
    height: 270px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid var(--white);
    border-right: 2px solid transparent;
}

.sidebar-doctor-profile .sidebar-doctor-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-doctor-education {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Services Section */
.sidebar-services-section {
    padding: 20px 10px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    position: relative;
}

.sidebar-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.sidebar-services-heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sidebar-services-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.sidebar-services-heading::before {
    content: "⚕️";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.sidebar-services-list {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
}

.sidebar-service-item {
    position: relative;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 15px;
    border: 2px solid #e8f2ff;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 19 117 / 81%);
}

.sidebar-service-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.sidebar-service-link:hover::before {
    left: -100%;
}

.sidebar-service-link:hover {
    color: #2c3e50;
    box-shadow: 0 15px 35px rgba(30, 46, 131, 0.25);
    border-color: var(--primary-color);
}

.sidebar-service-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}


/* Contact Section */
.sidebar-contact-section {
    padding: 20px 10px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
}

.sidebar-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.sidebar-contact-heading {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sidebar-contact-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.sidebar-contact-details {
    margin-bottom: 30px;
    display: grid;
    gap: 15px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    padding: 5px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid transparent;
    /* box-shadow: 0 4px 15px rgba(30, 46, 131, 0.08); */
    box-shadow: 0 0 6px rgba(30, 46, 131, 0.1);
    position: relative;
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.sidebar-contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-sidebar-contact-item:hover::before {
    transform: scaleY(1);
}

.sidebar-contact-item:hover {
    box-shadow: 0 8px 25px rgba(30, 46, 131, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.sidebar-contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(30, 46, 131, 0.3);
    transition: all 0.3s ease;
}

.sidebar-contact-item:hover .sidebar-contact-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 46, 131, 0.4);
}

.sidebar-contact-text {
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;

    a {
        color: #2c3e50;
        font-weight: 400;
    }
}

/* Contact Form */
.sidebar-contact-form {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 20px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(30, 46, 131, 0.1);
    border: 2px solid rgba(30, 46, 131, 0.1);
    position: relative;
    overflow: hidden;
}

.sidebar-contact-form::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    transform: rotate(45deg);
}

.sidebar-form-group {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.sidebar-form-input {
    width: 100%;
    padding: 8px 10px !important;
    height: auto !important;
    border: 2px solid #e8f2ff;
    border-radius: 12px !important;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    font-weight: 500;
    display: block;
    color: #2c3e50;
}

.sidebar-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 46, 131, 0.1);
    transform: translateY(-2px);
}

.sidebar-form-input:hover {
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.sidebar-form-input::placeholder {
    line-height: 20px;

}

.sidebar-form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.sidebar-form-button {
    padding: 7px 15px;
    /* background: linear-gradient(135deg, #1e2e83 0%, #006c62 100%); */
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 46, 131, 0.3);
}

.sidebar-form-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transition: left 0.5s ease;
}

.sidebar-form-button:hover::before {
    left: 0;
}

.sidebar-form-button:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 15px 40px rgba(30, 46, 131, 0.4);
}

.sidebar-form-button span {
    position: relative;
    z-index: 2;
}




/* faq */

.acc-section {
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.acc-header {
    text-align: center;
}

.acc-heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-dark) !important;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.acc-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.acc-item {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.acc-item:hover {
    box-shadow: 0 20px 45px rgba(31, 181, 185, 0.15);
    transform: translateY(-2px);
}

.acc-item.is-open {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(31, 181, 185, 0.03));
    box-shadow: 0 16px 40px rgba(31, 181, 185, 0.12);
}

.acc-header-btn {
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.acc-title-wrap {
    flex: 1;
}

.acc-title {
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
    margin: 0 !important;
}

.acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 181, 185, 0.08);
    color: var(--primary-color);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.acc-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.acc-item.is-open .acc-icon {
    background: var(--primary-color);
    color: white;
}

.acc-item.is-open .acc-icon svg {
    transform: rotate(180deg);
}

.acc-content {
    padding: 0 24px 24px;
    display: none;
}

.acc-item.is-open .acc-content {
    display: block;
}

.acc-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0;
    word-break: normal;
    white-space: normal;
    overflow-wrap: break-word;
}

.acc-content ul {
    margin: 12px 0 0;
    padding-left: 20px;
    list-style: disc;
}

.acc-content ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    list-style-type: disc;
    word-break: normal;
}

@media (max-width: 768px) {
    .acc-heading {
        font-size: 26px;
    }

    .acc-title {
        font-size: 16px !important;
    }

    .acc-header-btn {
        padding: 12px;
    }

    .acc-content {
        padding: 12px !important;
    }
}


/* form  */

.cf-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(52, 109, 165, 0.13);
    padding: 20px;
    max-width: 520px;
    width: 100%;
    border-top: 4px solid var(--primary-color);
}

.cf-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: inherit;
}

.cf-divider {
    height: 3px;
    background: var(--primary-color);
    border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0.18;
}

.cf-label {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 6px !important;
    display: block;
    font-family: inherit;
}

.cf-icon-group {
    position: relative;
}

.cf-icon-group .cf-control {
    padding-left: 42px !important;
    border-radius: 10px !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 0.95rem !important;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    height: 50px;
    outline: none;
    background: #fff;
    color: #374151;
    font-family: inherit;
    box-sizing: border-box;
}

.cf-icon-group .cf-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(52, 109, 165, 0.18) !important;
}

.cf-icon-group .cf-field-icon {
    position: absolute !important;
    top: 50% !important;
    left: 13px !important;
    transform: translateY(-50%) !important;
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
    pointer-events: none;
}

.cf-textarea-group {
    position: relative;
}

.cf-textarea-group .cf-textarea {
    padding-left: 42px !important;
    border-radius: 10px !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 0.95rem !important;
    resize: vertical;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    min-height: 110px;
    outline: none;
    background: #fff;
    color: #374151;
    font-family: inherit;
    padding-top: 10px;
    box-sizing: border-box;
}

.cf-textarea-group .cf-textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(104, 172, 182, 0.18) !important;
}

.cf-textarea-group .cf-field-icon {
    position: absolute !important;
    top: 13px !important;
    left: 13px !important;
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
    pointer-events: none;
}

.cf-mb3 {
    margin-bottom: 16px !important;
}

.cf-mb4 {
    margin-bottom: 24px !important;
}

.cf-btn-submit {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 11px 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    color: #fff !important;
    width: 100%;
    cursor: pointer;
    transition: background 0.25s, transform 0.1s;
    font-family: inherit;
}

.cf-btn-submit:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-1px);
}

.cf-btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .cf-card {
        padding: 28px 18px;
    }

    .cf-title {
        font-size: 1.3rem;
    }
}





/* contact us  */

.custom-contact-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.custom-hero-title-section {
    text-align: center;
    margin-bottom: 30px;
}

.custom-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.custom-main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 30%, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

.custom-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.custom-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
}

.custom-form-section {
    padding: 30px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 249, 250, 1) 100%);
}

.custom-info-section {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 40%, var(--secondary-color) 100%);
    color: white;
    height: 100%;
    position: relative;
}

.custom-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 80px 80px;
    opacity: 0.3;
}

.custom-section-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    position: relative;
}

.custom-section-header-white {
    color: #ffffff;
}

.custom-form-group {
    margin-bottom: 20px;
    position: relative;
}

.custom-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    display: block;
}

.custom-form-input {
    width: 100%;
    padding: 12px !important;
    height: auto !important;
    border: 2px solid #e9ecef;
    border-radius: 10px !important;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    color: var(--black);
    outline: none;
    font-family: "Poppins", sans-serif;
}

.custom-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(34, 79, 163, 0.1);
    transform: translateY(-2px);
}

.custom-form-input::placeholder {
    color: #999;
    font-weight: 300;
}

.custom-form-textarea {
    min-height: 110px;
    resize: vertical;
    font-family: "Poppins", sans-serif;
}

.custom-submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(34, 79, 163, 0.3);
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.custom-submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
}

.custom-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 79, 163, 0.4);
}

.custom-submit-button:hover::before {
    left: 100%;
}

.custom-submit-button:active {
    transform: translateY(-1px);
}


.custom-info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.custom-info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.custom-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 15px 0 0;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.custom-info-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.custom-social-links {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.custom-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1));
    margin: 0 12px 12px 0;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.custom-social-link:hover {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {

    .custom-form-section,
    .custom-info-section {
        padding: 30px 12px;
    }

    .custom-main-title {
        font-size: 2rem;
    }

    .custom-section-header {
        font-size: 2rem;
    }

    .custom-info-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
        margin-right: 10px;
    }

    .custom-social-links {
        margin-top: 30px;
    }

    .custom-contact-card {
        border-radius: 15px;
    }

    .custom-contact-hero {
        padding: 40px 0;
    }
}


/*==================================================
Blog
==================================================*/

.pq-blog-post {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    -moz-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
}

.pq-light-bg .pq-blog-post {
    background: #eee;
}

.pq-blog-img img {
    transform: scale(1);
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: 0.5s ease-in-out;
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pq-blog-post:hover .pq-post-media img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pq-post-media .pq-post-date {
    background: #68acb6;
    padding: 4px 8px;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pq-blog-contain {
    padding: 20px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.pq-blog-contain .pq-blog-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 25px;
    overflow: hidden;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.pq-blog-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    z-index: 9;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.pq-post-meta ul {
    padding: 0 0 15px;
    margin: 0 0 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
}

.pq-post-meta ul li {
    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 20px;
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.pq-post-meta ul li:last-child {
    margin-right: 0;
}

.pq-post-meta ul li a {
    color: #016f75;
    text-decoration: none;
}

.pq-post-meta ul li a:hover {
    color: #013c47;
}

.pq-post-meta ul li i {
    margin-right: 10px;
    color: #013c47;
}


.pq-button .pq-button-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 5px;
}