:root {
    --primary-color: #C62828;
    --primary-color-hover: #920707;
    --primary-color-rgb: 198, 40, 40;
    --secondary-color: #f5f5f5;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --pink: rgba(255, 245, 246, 1);
    --radius-lg:40px;

}

.bg-pink {
    background-color: var(--pink) !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: black;
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body *:not([class^="fa-"]):not([class*=" fa-"]) {
    font-family: inherit !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.state_pr{
    
}
.btn-outline-primary{
   
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-outline-primary:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    color: white;
}

.service_slider {
    padding-left: 200px;
    position:relative;
}

/* Custom Utilities mimicking Tailwind */
.custom-bg-primary {
    background-color: var(--primary-color) !important;
}

.custom-bg-secondary {
    background-color: var(--secondary-color) !important;
}

.custom-text-dark {
    color: var(--dark-color) !important;
}

.custom-text-body {
    color: var(--text-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.hero-text-container {
    max-width: 60%;
}

.fs-sm {
    font-size: 0.875rem !important;
}

.custom-fs-xs {
    font-size: 0.75rem !important;
}

.transition-all-custom {
    transition: all 0.3s ease !important;
}

.custom-hover-opacity {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.custom-hover-opacity:hover {
    opacity: 0.8;
}

/* Header & Menu Custom Utilities */
.custom-z-40 {
    z-index: 40 !important;
}

.custom-z-50 {
    z-index: 50 !important;
}

.custom-tracking-tight {
    letter-spacing: -0.025em !important;
}

.custom-border-b-2 {
    border-bottom: 2px solid transparent !important;
}

.custom-border-primary {
    border-color: var(--primary-color) !important;
}

.custom-hover-text-primary:hover {
    color: var(--primary-color) !important;
}

.custom-rounded-full {
    border-radius: 9999px !important;
}

.custom-hover-bg-dark:hover {
    background-color: #8b0000 !important;
}

.custom-hover-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.custom-w-64 {
    width: 16rem !important;
}

.custom-shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.custom-transform {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.custom-translate-x-full {
    transform: translateX(100%) !important;
}

.custom-translate-x-0 {
    transform: translateX(0) !important;
}

/* Dropdown Utilities */
.custom-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 250px;
    z-index: 1000;
}

.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown:hover .custom-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-nav-link[aria-expanded="true"] .mobile-collapse-icon {
    transform: rotate(180deg);
}

.custom-hover-bg-light {
    transition: background-color 0.2s ease, color 0.2s ease;
}

.custom-hover-bg-light:hover {
    background-color: rgba(198, 40, 40, 0.05) !important;
    /* Light primary background tint */
    color: var(--primary-color) !important;
}

.w-15px {
    width: 15px !important;
}

/* Pointer Events Utils */
.pointer-events-none {
    pointer-events: none !important;
}

.pointer-events-auto {
    pointer-events: auto !important;
}

/* Text Shadows */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-md {
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card Lift Animation */
.card-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

/* Group Hover Utilities */
.custom-group .custom-group-hover-bg-primary {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-group:hover .custom-group-hover-bg-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.custom-group .custom-group-hover-text-primary {
    transition: color 0.3s ease;
}

.custom-group:hover .custom-group-hover-text-primary {
    color: var(--primary-color) !important;
}

.custom-group-hover-underline:hover {
    text-decoration: underline !important;
}

.custom-hover-bg-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.custom-group-hover-scale {
    transition: transform 0.5s ease;
}

.custom-group:hover .custom-group-hover-scale {
    transform: scale(1.1);
}

.translate-y-full {
    transform: translateY(100%);
}

.custom-transition-transform-300 {
    transition: transform 0.3s ease;
}

.custom-group:hover .custom-group-hover-translate-y-0 {
    transform: translateY(0);
}

.custom-transition-transform-500 {
    transition: transform 0.5s ease;
}

.custom-transition-transform-700 {
    transition: transform 0.7s ease;
}

/* Forms & UI Utilities */
.custom-focus-ring {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.custom-focus-ring:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color) !important;
}

.custom-backdrop-blur {
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
}

.custom-flex-shrink-0 {
    flex-shrink: 0 !important;
}

.resize-none {
    resize: none !important;
}

.custom-overlay-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.custom-bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.custom-backdrop-blur {
    backdrop-filter: blur(12px);
}

.custom-fs-10px {
    font-size: 10px !important;
}

.lh-lg {
    line-height: 1.75 !important;
}

/* -------- Semantic Hero Section Styles -------- */
.hero-section {
    position: relative;
    height: 650px;
    width: 100%;
}

.hero-swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.top-bar {
    font-size: 14px;
}

.top-bar * {
    font-size: 13px;
}

.header-cta {
    font-size: 14px;
    font-weight: normal !important;
    padding: 12px 20px !important;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

/* Hero Text */
.hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* Hero Buttons */
.hero-btn {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;

}

.btn {
  font-size: 14px;
    font-weight: 400;
    padding: 12px 24px;
}

.treatment_center{
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--pink);
    padding: 40px;
    border-radius: 40px;
}
.logo img {
    width: 200px;
}

nav a {
    font-weight: normal;
    font-size: 15px;
}

.btn-custom-primary {
    background-color: var(--primary-color);
    color: white;
}

/* Why Choose Us Redesign */
.why-choose-us-img-card {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    height: 100%;
}

.why-choose-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px;
}

.why-choose-us-overlay h2 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: white;
    margin-bottom: 30px;
}

.why-choose-us-overlay p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 320px;
}

.why-choose-us-content-card {
    background: white;
    border-radius: 40px;
    padding: 50px;
    height: 100%;

}

.why-choose-item {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.why-choose-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-item .number {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.why-choose-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

.why-choose-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Doctor Card Redesign */
.doctor-card-new {
    background: white;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.doctor-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.doctor-qualifications {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    display: block;
}

.doctor-name-new {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 5px;
}

.doctor-desc-new {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Side Navigation Arrows */
.doc-slider-container {
    position: relative;
    padding: 0 50px;
}

.doc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.doc-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.doc-prev-side {
    left: 0;
}

.doc-next-side {
    right: 0;
}

@media (max-width: 768px) {
    .doc-slider-container {
        padding: 0 15px;
    }

    .doc-nav-btn {
        display: none;
    }
}

.hero-btn-light:hover {
    background-color: #f3f4f6;
}

/* Hero Nav Arrows */
.hero-nav-arrows {
    position: absolute;
    bottom: 0;
    left: 50%;

}

@media (min-width: 768px) {
    .hero-nav-arrows {
        left: calc(50% - 44px);
    }
}

.hero-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    font-size: 0.75rem;
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Floating Badges */
.hero-badges {
    position: absolute;
    bottom: 80px;
    right: 0;
    z-index: 30;
    width: 100%;
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero-badges {
        right: 1rem;
    }
}

.hero-badge {
    border-radius: 0.75rem;
    padding: 0.5rem;
    width: 10rem;
    gap: 6px;
}

.hero-badge-google {
    width: 12rem;
}

.hero-badge-icon {
    font-size: 1.25rem;
    padding-left: 0.25rem;
}

.hero-badge-label {
    font-size: 9px;
    letter-spacing: 0.025em;
}

.hero-badge-value {
    font-size: 0.75rem;
}

.hero-badge-google-img {
    font-size: 1.25rem;
    color: #3b82f6;
}

.hero-star-rating {
    color: #facc15;
    font-size: 10px;
    gap: 1px;
}

@media (min-width: 1024px) {
    .hero-badge {
        padding: 0.75rem;
        width: 12rem;
    }

    .hero-badge-google {
        width: 14rem;
    }

    .hero-badge-label {
        font-size: 10px;
    }

    .hero-badge-value {
        font-size: 0.875rem;
    }

    .hero-badge-google-img {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Custom Swiper Navigation */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: white !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    color: #333 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #C62828 !important;
    color: white !important;
}

/* Pagination */
.swiper-pagination-bullet {
    background-color: white !important;
    opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
    background-color: #C62828 !important;
    opacity: 1 !important;
}

.z_index {
    z-index: -1 !important;
}

/* Custom Arrows for other sliders */
.custom-arrow {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-arrow:hover {
    background-color: #C62828;
    color: white;
}

/* Soft Shadows for Cards */
.card-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Image zoom effect */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/* Appointment Banner Redesign */
.appointment-banner-new {
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 100px;
    margin-bottom: 100px;
    padding-bottom: 150px;
}

.appointment-banner-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
}

.appointment-banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

.appointment-banner-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.appointment-banner-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.appointment-form-card {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: white;
    border-radius: 40px;
    padding: 40px 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.appointment-form-card .form-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

.appointment-horizontal-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.appointment-horizontal-form .form-control,
.appointment-horizontal-form .form-select {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    background-color: #fcfcfc;
}

.appointment-horizontal-form .btn-book {
    background-color: #C62828;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appointment-horizontal-form .btn-book:hover {
    background-color: #ac1b1b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}

@media (max-width: 1200px) {
    .appointment-banner-new {
        padding: 60px;
    }

    .appointment-banner-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .appointment-horizontal-form {
        grid-template-columns: 1fr 1fr;
    }

    .appointment-horizontal-form .btn-book {
        grid-column: span 2;
    }

    .appointment-form-card {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 40px;
        padding: 30px;
    }

    .appointment-banner-new {
        margin-bottom: 0;
        padding: 60px 30px;
        min-height: auto;
        border-radius: 30px;
    }

    .appointment-banner-new::before {
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .appointment-horizontal-form {
        grid-template-columns: 1fr;
    }

    .appointment-horizontal-form .btn-book {
        grid-column: span 1;
    }

    .appointment-banner-content h2 {
        font-size: 2rem;
    }
}

/* Doctors' Talk Redesign - Refined */
.doctors-talk-section {
    background-color: #FFF5F5 !important;
}

.talk-card {
    background: white;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.talk-item {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.talk-item:last-child {
    border-bottom: none;
}

._rxer {
    padding-left: 100px !important
}

.talk-item:hover {
    background-color: #fffcfc;
}

.talk-item .talk-content {
    flex: 1;
    padding-right: 1.5rem;
}

.talk-item .talk-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.4;
}

.talk-item .talk-subtitle {
    font-size: 0.95rem;
    color: #666 !important;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
}

.talk-icon-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.talk-item:hover .talk-icon-arrow,
.talk-item.active .talk-icon-arrow {
    background-color: #C62828 !important;
    border-color: #C62828 !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.25);
}

.talk-main-img-card {
    background: white;
    padding: 12px;
    border-radius: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.talk-main-img-inner {
    border-radius: 35px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
}

.talk-main-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .talk-main-img-inner {
        min-height: 400px;
    }

    .talk-item {
        padding: 1.5rem 1rem;
    }

    .talk-card {
        border-radius: 30px;
    }

    .talk-main-img-card {
        margin-top: 30px;
        border-radius: 35px;
    }
}

/* Blog Section Redesign */
.blog-section {
    padding: 60px 0;
    background-color: #fceceb;
    /* Match the light pink/cream background in mockup */
}

.blog-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
        padding: 0;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-learn-more {
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 50px;
    color: #333;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-learn-more:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    color: #000;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
}

.blog-section-footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    margin-left: -150px;
}

.txxrerer {
    padding-left: 150px;
}

.btn-explore-blog {
    background-color: #C62828 !important;
    color: white !important;
    padding: 16px 45px;
    border-radius: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.2);
}

.btn-explore-blog:hover {
    background-color: #ac1b1b !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(198, 40, 40, 0.3);
}

.blog-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
}

@media (max-width: 991px) {
    .blog-section h2 {
        font-size: 2rem;
    }

    .blog-nav {
        position: static;
        margin-top: 30px;
        justify-content: center;
        width: 100%;
        transform: none;
    }

    .blog-section-footer {
        flex-direction: column;
    }
}

/* Reviews Redesign */
.reviews-section {
    padding: 60px 0;
    background-color: #FFF5F5;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 30px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    max-width: 600px;
    line-height: 1.2;
}

.google-excellent-badge {
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-logo-wrapper img {
    width: 35px;
    height: 35px;
}

.badge-info-text {
    display: flex;
    flex-direction: column;
}

.badge-info-text .excellent-text {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.badge-info-text .rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.badge-info-text .stars {
    color: #fbbc05;
    font-size: 0.8rem;
}

.review-card {
    background: white;
    border-radius: 35px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.reviewer-stars {
    color: #fbbc05;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.card-google-logo {
    position: absolute;
    top: 5px;
    right: 0;
    width: 22px;
    height: 22px;
}

.review-body text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}

.review-footer {
    margin-top: auto;
    text-align: right;
    padding-top: 20px;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 1200px) {
    .reviews-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-excellent-badge {
        margin: 20px 0;
    }

    .reviews-nav {
        display: none;
        /* Hide custom nav on mobile if using swiper pagination */
    }
}

/* Infrastructure Redesign */
.infrastructure-section {
    padding: 60px 0;
    background-color: white;
}

.infrastructure-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.infra-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.infra-img-wrapper:hover {
    transform: translateY(-5px);
}

.infra-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Patients' Real Stories Redesign */
.patient-stories-section {
    padding: 60px 0;
    background-color: #fff;
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stories-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.stories-nav {
    display: flex;
    gap: 15px;
}

.custom-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.custom-nav-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
}

.video-card-new {
    background: white;
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.video-card-new:hover {
    transform: translateY(-5px);
}

.video-thumb-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor:pointer;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: #C62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(198, 40, 40, 0.4);
    z-index: 2;
}

.video-play-btn i {
    margin-left: 4px;
}

.video-title-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(180, 180, 180, 0.9);
    padding: 12px 15px;
    color: #C62828;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-youtube-channel {
    background-color: #C62828;
    color: white;
    padding: 15px 40px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0;
}

.btn-youtube-channel:hover {
    background-color: #ac1b1b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2);
}

@media (max-width: 768px) {
    .stories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stories-header h2 {
        font-size: 2rem;
    }

    .video-card-new {
        padding: 10px;
    }
}

/* Hospital Stats Redesign */
.hospital-stats-section {
    padding: 60px 0;
    background-color: #fff;
}

.hospital-building-img {
    border-radius: 50px;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stats-card {
    background: white;
    border-radius: 35px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C62828;
    display: block;
}
.state_pr{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C62828;
}



.stat-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background-color: #eee;
}

.hospital-stats-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hospital-stats-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-stats-primary {
    background-color: #C62828;
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-stats-primary:hover {
    background-color: #ac1b1b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2);
}

.btn-stats-outline {
    background-color: white;
    color: #333;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid #eee;
    margin-left: 15px;
}

.btn-stats-outline:hover {
    background-color: #f8f8f8;
    border-color: #ddd;
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .hospital-stats-section {
        padding: 60px 0;
    }

    .hospital-building-img {
        min-height: 350px;
        margin-bottom: 40px;
    }

    .hospital-stats-content h2 {
        font-size: 2.2rem;
    }

    .stats-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .stats-card {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .btn-stats-outline {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    .btn-stats-primary {
        width: 100%;
        text-align: center;
    }
}

/* Doctors' Talk Redesign - Refined */
.doctors-talk-section {
    background-color: #FFF5F5 !important;
}

.talk-card {
    background: white;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.talk-item {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid #f2f2f2;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.talk-item:last-child {
    border-bottom: none;
}

.talk-item:hover {
    background-color: #fffcfc;
}

.talk-item .talk-content {
    flex: 1;
    padding-right: 1.5rem;
}

.talk-item .talk-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.4;
}

.talk-item .talk-subtitle {
    font-size: 0.95rem;
    color: #666 !important;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
}

.talk-icon-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.talk-item:hover .talk-icon-arrow,
.talk-item.active .talk-icon-arrow {
    background-color: #C62828 !important;
    border-color: #C62828 !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.25);
}

.talk-main-img-card {
    background: white;
    padding: 12px;
    border-radius: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.talk-main-img-inner {
    border-radius: 35px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
}

.talk-main-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .talk-main-img-inner {
        min-height: 400px;
    }

    .talk-item {
        padding: 1.5rem 1rem;
    }

    .talk-card {
        border-radius: 30px;
    }

    .talk-main-img-card {
        margin-top: 30px;
        border-radius: 35px;
    }
}

/* Appointment Banner Redesign */
.appointment-banner {
    border-radius: 40px;
    min-height: 400px;
}

.appointment-overlay {
    background: linear-gradient(90deg, rgba(26, 32, 44, 0.9) 0%, rgba(26, 32, 44, 0.7) 50%, rgba(26, 32, 44, 0.4) 100%);
}

.appointment-title {
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.appointment-desc {
    color: #e2e8f0;
    line-height: 1.7;
    font-weight: 400;
}

.btn-book-appointment {
    background-color: #C62828 !important;
    transition: all 0.3s ease;
}

.btn-book-appointment:hover {
    background-color: #ac1b1b !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(198, 40, 40, 0.3) !important;
}

@media (max-width: 768px) {
    .appointment-banner {
        border-radius: 25px;
        min-height: 350px;
        text-align: center;
    }

    .appointment-overlay {
        background: rgba(26, 32, 44, 0.8);
    }
}

/* Footer Redesign */
.footer-link {
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #C62828;
    transform: translateX(4px);
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(198, 40, 40, 0.08);
    text-decoration: none;
}

.footer-social-icon:hover {
    background-color: #C62828 !important;
    color: white !important;
}

.footer-address-text {
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
}

.footer-map-container {
    height: 220px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.footer_gg span {

    font-size: 14px;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* custom css for pages */
.page_header{
    background-color: var(--pink);
    padding: 60px 0;
}
.page_header h1{
    margin-bottom:0;
}
.page_header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.breadcrumb {
    --bs-breadcrumb-divider: '>';
    text-decoration: none;
    margin-bottom: 0;
}
.breadcrumb a{
    text-decoration: none;
}
.breadcrumb-item a{
    color:var(--primary-color);
    font-weight: 500;
    font-size: 15px;
}
.breadcrumb-item a.active{
    color: black;
}
.section{
    padding: 60px 0;
}
.bg_gray{
    background-color: var(--secondary-color);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: 600;
    color: black;
}
.about_grid_1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 30px;
    align-items: center;
}
.about_grid_1 img{
    height: 280px;
    width: 100%;
}

.about_grid_1 >div{
    height: 100%;
}
.about_grid_1 >div:nth-child(3){

}
.about_img_1{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.about_img_2{
    height:290px;
    width: 100%;
    object-fit: cover;
}
.about_img_3{
    height: 300px;
    width:100%;
    object-fit: cover;
}
.basic_card{
    padding: 30px;
    border-radius: var(--radius-lg);
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.about_6_img{
    height: 200px;
}
form .form-control, form .form-select{
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    background-color: #fcfcfc;
    box-shadow: none !important;
}
form .form-control:focus, form .form-select:focus{
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.2) !important;
}
form [type="submit"]{
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}   

._doctors-card{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:20px;
    padding:20px;
    max-width:750px;
    gap:25px;
    font-family: Arial, sans-serif;
}

._doctors-image img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
}

._doctors-info h2{
    margin:0;
    font-size:28px;
    font-weight:600;
}

._doctors-degree{
    color:#d13c3c;
    font-weight:600;
    margin:8px 0;
}

._doctors-speciality{
    color:#555;
    margin-bottom:20px;
}

._doctors-buttons{
    display:flex;
    gap:15px;
}

._doctors-btn-outline{
    padding:10px 20px;
    border:1px solid #ccc;
    border-radius:25px;
    text-decoration:none;
    color:#333;
}

._doctors-btn-primary{
    padding:10px 22px;
    background:#c7372f;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
}
.doctor_feature_list{

    padding-left: 0;
    column-count: 2;
    column-gap: 20px;
}
.doctor_feature_list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    font-size: 15px;
}
.doctor_feature_list li i{
    font-size: 18px;
    color: var(--primary-color);
}

.final_list ul{
    padding-left: 0;
    /*column-count: 2;*/
    /*column-gap: 20px;*/
    margin-bottom:0;
}
.final_list.two_cols ul{
     column-count: 2;
    column-gap: 20px;
}

.final_list ul li{
    display:flex;
    align-items:start;
    gap:10px;
    margin-bottom:12px;
    font-size: 15px;
}
.final_list ul li::before{
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
        font-size: 18px;
        color: var(--primary-color);
}
.final_list ul li i{
    font-size: 18px;
    color: var(--primary-color);
}

.doctor-faq .accordion-item{
    border-radius:20px;
    border:1px solid #e5e5e5;
    margin-bottom:15px;
}

.doctor-faq .accordion-button{
    background:#f8f8f8;
    font-weight:500;
    position:relative;
    box-shadow:none;
    border-radius: 20px;
}

.doctor-faq .accordion-button::after{
    display:none;
}

.accordion-header{
        border-radius: 20px;
    overflow: hidden;
}
.faq-icon{
    margin-left:auto;
    width:30px;
    height:30px;
    border-radius:50%;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.accordion-button .faq-icon::before{
    content:"+";
}

.accordion-button:not(.collapsed){
    color:var(--primary-color);
    background:#fff;
}

.accordion-button:not(.collapsed) .faq-icon{
    background:var(--primary-color);
    color:#fff;
    border-color:var(--primary-color);
}

.accordion-button:not(.collapsed) .faq-icon::before{
    content:"−";
}
._int_slider{
    width:100%;
    padding:20px 0;
}

._int_slider .swiper-slide{
    display:flex;
}

._int_card{
    width:100%;
    border-radius:18px;
    overflow:hidden;
}

._int_card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.bg_pink_parent .custom-bg-secondary{
    background-color: var(--pink) !important;
}

.blog-card{
border:none;
border-radius:10px;
overflow:hidden;
box-shadow:0 4px 15px rgba(0,0,0,.08);
transition:.3s;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.blog-img img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-title{
font-size:18px;
font-weight:600;
margin-bottom:10px;
}

.blog-title a{
text-decoration:none;
color:#000;
}

.blog-title a:hover{
color:#c62828;
}

.blog-desc{
font-size:14px;
color:#666;
}

.pagination .page-link{
color:#c62828;
}

.pagination .active .page-link{
background:#c62828;
border-color:#c62828;
color:white;
}
._safe ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    column-count: 1;
}

._safe ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

._safe ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    margin-top: 0px;
    color: var(--primary-color);
    font-size: 20px;
}

.service_list_card{
    
}

.service_list_card{
    border-radius:10px;
    overflow:hidden;
    background-color:var(--pink);
    transition:200ms;
}
.service_list_card:hover{
    background-color:white;
}
.service_list_card .service_list_card_content{
    padding:20px;
}
.service_list_card img{
    height:240px;
    width:100%;
    object-fit:cover
}

.treatment_list_card{
    text-align:center;
    background-color:var(--pink);
    padding:24px;
    border-radius:10px;
    height:100%;
    transition:300ms;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}
.treatment_list_card .treatment_list_card_content{
    
}
.treatment_list_card img{
    height:100px;
    margin-bottom:20px;
}
.treatment_list_card h4{
    font-size:20px;
}
.treatment_list_card a:hover{
    color:black;
}
.treatment_list_card:hover{
    background-color:white;
}
.faq_card{
    background-color:white;
    padding:20px; 
    border-radius:10px;
    height:100%;
    
        display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.faq_card h4{
    font-size:20px;
}
.faq_doc img{
    width:40px;
    height:40px;
    margin-top: 5px;
}
.faq_doc{
    display: flex;
    gap: 10px;
}
.faq_card_doc{
      display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}
.faq_doc span{
    font-size: 12px;
    line-height: 1.4;
    display: block;
}
.sidebar_form .col-md-6{
    width:100%;
}