* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* 
.container {
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
} */

dl,
ol,
ul {
    padding: 0;
    margin: 0;
}

body,
div,
input,
textarea,
select,
button,
table,
td,
th,
tr,
span,
label,
form {
    font-family: 'Poppins' !important;
}

li {
    font-family: 'Poppins' !important;
    list-style: none;
}

a {
    font-family: 'Poppins' !important;
    text-decoration: none !important;
}

p,
li {
    font-family: 'Poppins' !important;
    font-size: 17px;
    color: #363636;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat' !important;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.625rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.6rem;
}

h5 {
    font-size: 1.3rem;
}

h6 {
    font-size: 1.1rem;
}


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

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



:root {
    --primary-color: #169fc4;
    --secondary-color: #982d8f;
    --black-color: #000;
    --white-color: #fff;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: var(--primary-color) !important;
}

.text-blue {
    color: var(--primary-color) !important;
    text-shadow: 2px 2px 4px #000000a8 !important;
}

.text-puple {
    color: var(--secondary-color) !important;
    text-shadow: 2px 2px 4px #372e2e2e !important;
}

.text-white {
    color: var(--white-color) !important;
    text-shadow: 2px 2px 4px #000000a8 !important;
}

.btn-purple {
    background: var(--secondary-color) !important;
    color: white !important;
}


img {
    width: 100%;
    max-width: 100%;
    transition: .4s ease;
}

.top-bar {
    background: var(--primary-color);
    padding: 5px 0px;
}

.top-info {
    display: flex;
    justify-content: flex-end;
    gap: 37px;
    margin-right: 60px;
	flex-wrap: wrap;
}

.top-call-info i {
    color: #fdfdfd;
}

.top-mail-info i {
    color: white;
}

.top-mail-info a {
    color: #ffffff;
}

.top-call-info a {
    color: white;
}

.button-57 {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-color);
    color: #ffffff;
    display: inline-block;
    line-height: 15px;
    padding: 8px 20px;
    text-decoration: none;
    cursor: pointer;
    background: var(--secondary-color);
    user-select: none;
    -webkit-user-select: none;
    border-radius: 30px;
}

/* First Text */
.button-57 span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

/* Hover Text */
.button-57 span:last-child {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    top: 60%;
    opacity: 0;
    transform: translate(-50%, 225%);
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    white-space: nowrap;
}

/* Background animation */
.button-57::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(0);
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 50;
}

/* Hover Effects */
.button-57:hover::after {
    transform: skewY(9.3deg) scaleY(2);
}

.button-57:hover span:last-child {
    transform: translate(-50%, -100%);
    opacity: 1;
}

.button-57:hover span:first-child {
    color: var(--secondary-color);
}

section.hero-sec {
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}



.overlay {
    background-color: rgb(0 0 0 / 0%);
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* content on right */
    padding: 0 10%;
}

.slide-container.right {
    color: white;
    max-width: fit-content;
    text-align: center;
}

.header-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    /* font-weight: 600; */
    border-radius: 12px;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}

.slide-container.right p {
    color: #fff;
}

.content {
    width: 600px;
    /* padding: 30px; */
    text-align: left;
    /* background: #ffffff; */
    /* margin: 100px 0px; */
    border-radius: 10px;
    text-align: left;
}

.navbar-sec {
    position: absolute;
    /* top: 100px; */
    width: 100%;
    z-index: 999;
    padding-top: 20px;
}

/* ===== Heading Styling ===== */
.heading {
    font-family: 'Montserrat' !important;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.heading .blue {
    color: #ffffff;
    margin-right: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.heading .gold {
    color: var(--primary-color);
    text-shadow: 0 4px 12px rgba(53, 53, 53, 0.301);
}

/* ===== Paragraph ===== */
.content p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 600px;
}

.counter-box {
    margin-left: 20px;
}

.counter-text {
    margin-left: 20px;
}


.counter {
    font-size: 42px;
    font-weight: 500;
}

.counter-container {
    border-left: 6px solid var(--secondary-color);
}

.gradient-btn {
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #a7379d, #992d90);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    border: none;
    transition: all 0.35s ease;
    box-shadow: 0 1px 15px rgba(167, 55, 158, 0.199);
}

/* Hover lift */
.gradient-btn:hover {
    transform: translateY(-3px);
}

/* Ripple circle */
.gradient-btn .ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

/* Hover ripple animation */
.gradient-btn:hover .ripple {
    animation: ripple-effect 0.8s ease-out;
}

/* Ripple animation */
@keyframes ripple-effect {
    0% {
        transform: scale(0);
        opacity: 0.7;
        top: 50%;
        left: 50%;
    }

    100% {
        transform: scale(15);
        opacity: 0;
        top: 50%;
        left: 50%;
    }
}

.border-btn {
    position: relative;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Gradient layer */
.border-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s ease;
}

/* Hover effect */
.border-btn:hover {
    color: #ffffff;
    border-color: transparent;
}

.border-btn:hover::before {
    opacity: 1;
}

/* Optional lift */
.border-btn:hover {
    transform: translateY(-3px);
}

.about-sec {
    background-image: url(../images/about-section.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    background-image: url('../images/header-img.jpg');
    /* Using existing image as placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.why-choose-us .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 36, 51, 0.85), rgba(17, 36, 51, 0.9));
    /* Dark blue/teal overlay */
    z-index: 0;
}

.text-info {
    color: #0dcaf0 !important;
    /* Bootstrap info color matches the design teal/blue */
}

.feature-card {
    padding-right: 20px;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #9c27b0;
    /* Purple border */
    font-size: 32px;
    color: #9c27b0;
    /* Purple icon */
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: #9c27b0;
    color: white;
    border-color: white;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff !important;
    opacity: 0.5;
}


/* Services Section */
.services-sec {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.service-card {
    background: transparent !important;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin: 20px 0px !important;
}

.service-card:hover {
    transform: translateY(-10px);
    /* border-bottom-color: var(--primary-color); */
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.read-more {
    color: var(--white-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

.custom-row {
    display: flex;
    /* flex-direction: column;
     column layout */
    /* full height */
    justify-content: center;
    /* vertical center */
    align-items: flex-end;
    /* right side align */
	align-content: center;
}

.about-text h2 {
    font-size: 46px;
}

.services-sec {
    background-image: url(../images/servies-sec.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
}

/* Team Section */
.team-sec {
    position: relative;
    background-image: url('../images/team-sec.jpg');
    /* Reuse header bg or similar */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    overflow: hidden;
}

/*.team-sec .background-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(to right, rgba(13, 29, 41, 0.95), rgba(13, 29, 41, 0.8));*/
/*    z-index: 0;*/
/*}*/

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 400px;
    /* Fixed height for consistency */
}

/* Grayscale Image Effect */
.team-img {
    height: 100%;
    width: 100%;
}

.team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

/* Hover/Active State: Remove Grayscale */
.team-card:hover .team-img img,
.team-card.active .team-img img,
.swiper-slide-thumb-active .team-img img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Active Card Background Change */
.team-card:hover,
.team-card.active {
    background: #e0f7fa;
    /* Light blue tint on hover */
}

.team-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: left;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.team-info h5 {
    color: #000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons a:hover {
    background: var(--secondary-color);
    /* Purple */
    /* Team Section */
}

.about-text h2 {
    font-size: 46px;
}

.services-sec {
    background-image: url(../images/servies-sec.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

/* Blog Section */
.blog-sec {
    position: relative;
    background-image: url('https://lilamedlink.com/wp-content/uploads/2026/07/appointment-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    overflow: hidden;
}

/*.blog-sec .background-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(to right, rgba(13, 29, 41, 0.95), rgba(13, 29, 41, 0.8));*/
/*    z-index: 0;*/
/*}*/

.blog-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.blog-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    font-size: 14px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.small-btn {
    padding: 10px 25px;
    font-size: 14px;
}

/* CTA/Opportunities Section */
.cta-sec {
    position: relative;
    background-image: url('https://lilamedlink.com/wp-content/uploads/2026/06/counter-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

/*.cta-sec .background-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.6);*/
/*    z-index: 0;*/
/*}*/

.bg-purple {
    background-color: #9c27b0;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-btn {
    display: inline-block;
    background-color: #9c27b0;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #7b1fa2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

/* Footer */
.main-footer {
    padding: 80px 0 30px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer-title {
    color: #9c27b0;
    /* Purple */
    font-weight: 600;
    font-size: 24px;
}

/* .text-info {
    color: #0d6efd !important;
} */

.main-footer .text-info {
    color: #0dcaf0 !important;
    /* Cyan */
}

.main-footer h5.text-info {
    color: #0dcaf0 !important;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.subscribe-form .form-control {
    border: 1px solid #0dcaf0;
    padding-left: 20px;
}

.btn-purple {
    background-color: #9c27b0;
    color: white;
    font-weight: 500;
}

.btn-purple:hover {
    background-color: #7b1fa2;
    color: white;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid #0dcaf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0dcaf0;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #0dcaf0;
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:before {
    content: '\2022';
    /* Bullet */
    color: #0dcaf0;
    margin-right: 10px;
    font-size: 20px;
    line-height: 1;
}

/* Appointment Section */
.appointment-sec {
    /* background: #f9f9f9; */
    background-image: url(../images/form.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
}


.appointment-form-wrap {
     background-color: #0d1d29; 
    /* Dark blue background */
    padding: 30px 30px;
    /*height: 100%;*/
}
.bg-color-sec {
    background: #0d1d29;
}

.text-purple {
    color: #9c27b0;
    font-weight: 600;
    letter-spacing: 1px;
}

.appointment-form-wrap .form-control,
.appointment-form-wrap .form-select {
    border: none;
    font-size: 15px;
}

.appointment-form-wrap .form-control:focus,
.appointment-form-wrap .form-select:focus {
    box-shadow: none;
    background-color: #fff;
}

/* Custom placeholder color if needed, but default grey usually works well with white bg */

.btn-info {
    background-color: #0dcaf0;
    /* Cyan/Teal */
    border: none;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: #0dc8ee;
    width: 38px !important;
    border-radius: 10px !important;
    padding: 6px !important;
}
.swiper-pagination-bullet {
    width: 20px;
    border-radius: 10px !important;
    padding: 6px !important;
    transition: 0.6s !important;
}
.appointment-img img {
    width: 100% !important;
    height: 700px;
    object-fit: cover;
}


.btn-info:hover {
    background-color: #0bacbe;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .appointment-form-wrap {
        padding: 0px 30px;
    }

    .appointment-img {
        min-height: auto;
    }
}

.footer-links a:hover {
    color: #9c27b0;
    /* Purple hover */
    transform: translateX(5px);
}

.footer-contact li {
    color: #555;
}

.copyright-area {
    border-color: #eee !important;
}

/* Testimonial Section */
.testimonial-sec {
    /* background-color: #aaaaaa; */
    /* Gray background from image */
    background-image: url(../images/testimonials.png);
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-content {
    padding: 80px;
    background-color: #a0a0a0;
    /* Matching the gray visual */
}




.testimonial-controls {
    position: relative;
    z-index: 10;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-next-custom {
    background-color: #9c27b0;
    /* Purple */
    color: white;
}

.swiper-button-prev-custom:hover {
    background-color: #f0f0f0;
}

.swiper-button-next-custom:hover {
    background-color: #7b1fa2;
}

/* Page Hero Section */
.page-hero-sec {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-sec .overlay {
    background: rgba(13, 29, 41, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

.breadcrumb-item.active {
    color: #0dcaf0;
}
/* =============================
   Padding Utilities
   ============================= */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }

	.blog-sec {
    padding: 50px 0;
}

	.page-hero-sec {
    height: 350px;
}

}

/* =============================
   Hiring Process Section
   ============================= */
.process-sec {
    position: relative;
    overflow: hidden;
}

.process-card {
    padding: 30px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.process-icon {
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* =============================
   Specialties Section
   ============================= */
.specialty-item {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.specialty-item:hover {
    border-color: #0dcaf0; /* Info color */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

.specialty-item i {
    transition: all 0.3s ease;
}

.specialty-item:hover i {
    transform: scale(1.1);
}

/* =============================
   Utilities
   ============================= */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

/* =============================
   FAQ Section
   ============================= */
.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: rgba(156, 39, 176, 0.05);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button:focus {
    border-color: rgba(156, 39, 176, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(156, 39, 176, 0.25);
}

.accordion-item {
    border: 1px solid rgba(0,0,0,.05);
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* =============================
   Why Choose Us Section
   ============================= */
.why-choose-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.why-choose-list i {
    width: 30px;
    height: 80px;
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}


/* =============================
   Help & Support Page
   ============================= */
.help-hero-search {
    position: relative;
    max-width: 600px;
    margin: -30px auto 0;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.help-hero-search .form-control {
    padding-left: 50px;
    height: 60px;
    font-size: 1.1rem;
}

.help-hero-search .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0dcaf0; /* Info color */
    font-size: 1.2rem;
}

.help-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border-color: #9c27b0; /* Secondary color */
}

.help-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* =============================
   Terms & Conditions Page
   ============================= */
.terms-sidebar {
    position: sticky;
    top: 180px;
}

.terms-nav .nav-link {
    color: #555;
    padding: 10px 20px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.terms-nav .nav-link:hover,
.terms-nav .nav-link.active {
    color: #9c27b0;
    border-left-color: #9c27b0;
    background: linear-gradient(90deg, rgba(156, 39, 176, 0.05) 0%, rgba(255,255,255,0) 100%);
}

.terms-content h3 {
    color: #333;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-top: 40px;
}

.terms-content h3:first-child {
    margin-top: 0;
}


/* =============================
   Blog Pages
   ============================= */
.blog-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    background: #afafaf2b;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-img {
    height: 240px;
    overflow: hidden;
}

.blog-img img {
    transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #9c27b0; /* Secondary color */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 16px;
}

.blog-meta i {
    color: #0dcaf0; /* Info color */
    margin-right: 5px;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #0dcaf0;
}

.cat-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.cat-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cat-list a {
    color: #555;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
}

.cat-list a:hover {
    color: #9c27b0;
    padding-left: 5px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-info h6 {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-info a {
    color: #333;
    transition: all 0.3s ease;
}

.recent-post-info a:hover {
    color: #0dcaf0;
}


/* =============================
   Services Pages
   ============================= */
.service-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border: 1px solid rgb(155 46 146);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 202, 240, 8%); /* Light Info */
    color: #9a2d91;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #9a2d91;
    color: #fff;
    transform: rotateY(180deg);
}

.service-sidebar-nav li {
    margin-bottom: 15px;
}

.service-sidebar-nav a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-sidebar-nav a:hover,
.service-sidebar-nav a.active {
    background: #9c27b0;
    color: #fff;
    border-color: #9c27b0;
    transform: translateX(5px);
}

.contact-widget {
    background: #212529; /* Dark */
    color: #fff;
}

.contact-widget i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #0dcaf0;
}

.swiper-pagination-bullet{
    width: 26px !important;
    
}
.swiper-pagination-bullet-active{
    background: #10c7eb !important;
     width: 46px !important;
}

/* 10.04.2026 */
section.about-sec p {
    color: #fff;
}

.lila-medlink-position {
    position: sticky !important;
    top: 49px;
}

.specialty-item {
    height: 200px;
}

.job-card ul li {
    list-style: disc !important;
}
/* Pagination */

nav[aria-label="Page navigation"] .page-numbers,
nav[aria-label="Page navigation"] .prev,
nav[aria-label="Page navigation"] .next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 18px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

nav[aria-label="Page navigation"] .page-numbers:hover,
nav[aria-label="Page navigation"] .prev:hover,
nav[aria-label="Page navigation"] .next:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: translateY(-2px);
}

nav[aria-label="Page navigation"] .current {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    pointer-events: none;
}

nav[aria-label="Page navigation"] .prev,
nav[aria-label="Page navigation"] .next {
    padding: 0 20px;
}

/* Mobile */
@media (max-width: 576px) {

    nav[aria-label="Page navigation"] {
        gap: 8px;
    }

    nav[aria-label="Page navigation"] .page-numbers,
    nav[aria-label="Page navigation"] .prev,
    nav[aria-label="Page navigation"] .next {
        min-width: 42px;
        height: 42px;
        font-size: 14px;
        padding: 0 14px;
    }

}



.blog-details-content ul li {
	list-style: disc;
}

/* Tablet */
@media (max-width: 991px) {
    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h4 {
        font-size: 18px !important;
    }

    h5 {
        font-size: 16px !important;
    }

    h6 {
        font-size: 16px !important;
    }

    p {
        font-size: 15px !important;
    }
}


/* Mobile */
@media (max-width: 767px) {
    h1 {
        font-size: 26px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    h5 {
        font-size: 20px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.6;
    }
	
	
	section.page-hero-sec .new-lm-cls {
    padding-top: 128px !important;
}
	
	
}

@media (max-width: 991px){

	.top-info {
    	gap: 5px;
	}

	.content {
    	width: inherit;
	}

	.services-sec {
   		height: fit-content;
	 	padding: 50px 0;
	}

	.appointment-img img {
    	height: auto;
	}

	.display-3,
.display-4 {
    	padding-top: 3rem !important;
        font-size: 30px !important;
	}

	.testimonial-content {
    	padding: 50px 0;
		background-color: transparent;
	}

	.icon-box {
    	font-size: 20px;
	}

}




input.wpcf7-form-control.wpcf7-submit.has-spinner.btn.btn-purple.rounded-pill.px-4 {
    margin-top: 8px;
}



/* 27.06.2026 */

div#offcanvasExample {
    background: #0b4f62;
}

.offcanvas-close-btn{
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transition: all .3s ease;
    margin-left: auto;
}

.offcanvas-close-btn:hover{
    background: #000;
    color: #fff;
    transform: rotate(90deg);
}

.offcanvas-close-btn:focus{
    outline: none;
    box-shadow: none;
}

/* Menu */
.offcanvas-body ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Links */
.offcanvas-body ul li a{
    /* display: block; */
    padding: 16px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    transition: all .3s ease;
}

/* Hover */
.offcanvas-body ul li a:hover{
    background: #9c2f92;
    color: #fff;
    padding-left: 28px;
    box-shadow: 0 10px 25px rgba(13,110,253,.18);
}

ul.list-unstyled.footer-contact.lila-ft-med li a {
    color: #555;
    transition: all 0.3s ease;
}

ul.list-unstyled.footer-contact.lila-ft-med li a:hover{
	color: #9c27b0;
    transform: translateX(5px);
}

section.section-padding.lila-link-serv .sidebar {
    position: sticky;
    top: 50px;
}

@media (max-width: 480px) {
    .page-hero-sec {
        height: 430px;
    }

	.content {
        width: inherit;
        padding-top: 50px;
    }

}



section.section-padding.blog-med-link-blg .sidebar {
    position: sticky;
    top: 50px;
}

@media (max-width: 360px) {

    .border-btn {
    padding: 4px 18px;
}

	.gradient-btn {
    padding: 4px 18px;
}

	.recent-post-item {
    align-items: start;
    flex-direction: column;
}
	
	nav.new-llml-clin {
    margin: 10px 0 !important;
}
	
	    section.page-hero-sec .new-lm-cls {
        padding-top: 78px !important;
        font-size: 24px !important;
    }


}
.filter-sidebar.bg-light.p-4.rounded-4.border {
    position: sticky;
    top: 100px;
}
span.badge.bg-light.text-dark.border.px-3.py-2.fw-normal {
    width: auto;
    height: 33px;
    font-size: 11px !important;
}
span.badge.bg-light.text-dark.border.px-3.py-2.fw-normal p{
 font-size: 11px !important;
}
button.btn.btn-outline-info.rounded-pill.px-4.mb-2 {
    width: 200px !important;
}

.navbar-sec {
    position: absolute;   
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 20px;
    transition: all 0.4s ease;
}

/* Scroll Sticky */
.navbar-sec.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0d1d29; /* ya apna background */
    padding: 12px 0;
    transform: translateY(0);
    animation: slideDown 0.4s ease forwards;
}

div#offcanvasExample{
 z-index: 999999;
}
@keyframes slideDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

nav .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 6px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

nav .page-numbers:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

nav .page-numbers.current {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    pointer-events: none;
}

nav .next,
nav .prev {
    font-size: 20px;
    font-weight: 700;
}




/* 14.07.2026 */
.appointment-form-wrap .wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
}

li.breadcrumb-item.active.text-info::before {
    color: #fff;
}

section.blog-sec.d-flex.align-items-center.justify-content-center .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000078;
}

body {
    overflow-x: hidden !important;
}

/* 30.07.2026 */
.service-details-content.new-llmd-adj-hed h1 {
    color: #9c27b0;
    font-weight: 500;
	font-size: 34px;
}

.service-details-content.new-llmd-adj-hed h2 {
    font-size: 28px;
    color: #0dcaf0;
    font-weight: 500;
    margin-bottom: 12px;
	font-family: 'Montserrat' !important;
}

.service-details-content.new-llmd-adj-hed h3 {
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 16px;
    font-family: 'Montserrat' !important;
	font-weight: 500;
}

.service-details-content.new-llmd-adj-hed .accordion-button {
    font-size: 18px;
    font-weight: 700;
}


.service-details-content.new-llmd-adj-hed a {
    color: #9c27b0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-details-content.new-llmd-adj-hed a:hover{
	color: #0dcaf0;
}

.service-details-content.new-llmd-adj-hed a.new-serv-llmd-crbtn {
    padding: 10px 22px;
    background: #9c27b0;
    color: #fff !important;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}

.service-details-content.new-llmd-adj-hed a.new-serv-llmd-crbtn:hover{
	background: #0dcaf0;
}

span.llmd-new-bld-sp {
    font-family: 'Montserrat' !important;
}

.new-ft-llmd-img-ad img {
    width: 120px;
    height: auto;
    position: fixed;
    bottom: 10px;
	z-index: 9;
}
h1.display-3.fw-bold.wow.fadeInUp.new-lm-cls.animated.animated {
    font-size: 35px;
}
h2.wp-block-heading {
    font-size: 28px;
    color: rgb(13, 202, 240);
    font-weight: 500;
    margin-bottom: 12px;
	    margin-bottom: 12px;
    font-family: 'Montserrat' !important;
}
a.new-serv-llmd-crbtn {
    padding: 10px 22px;
    background: #9c27b0;
    color: #fff !important;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}
h3.wp-block-heading {
    font-size: 20px;
    color: #2a2a2a;
    font-weight: 500;
    margin-bottom: 16px;
    font-family: 'Montserrat' !important;
}
a.new-llmd-adj-hed {
    color: #9c27b0;
    font-weight: 600;
    transition: all 0.3s ease;
}
section.section-padding.blog-med-link-blg a {
    color: #9c27b0;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* 13.08.2026 */

.nw-llmd-pg-blg {
    height: 230px !important;
    /* margin: 60px; */
}


@media (max-width: 991px) {
    
	
	.nw-llmd-pg-blg {
    height: 270px !important;
}
	
}


@media (max-width: 767px) {
    .nw-llmd-pg-blg {
        height: 300px !important;
    }
}

@media (max-width: 575px) {
    .nw-llmd-pg-blg {
        height: 370px !important;
    }
}


.blog-details-content.new-blg-chg-blg-llmd h1 {
    color: #9c27b0;
    font-weight: 500;
    font-size: 34px;
}

.blog-details-content.new-blg-chg-blg-llmd ul {
    margin-left: 20px;
}