@media(max-width: 576px){
    .mobile-view-img{
        display: none !important;
    }
}
.dropdown-menu {
    width: 400px !important;
    min-width: 400px;

    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 5px;
}


.dropdown-menu>li {
    position: relative;
}

.dropdown-menu>li:not(:last-child) {
    border-bottom: 1px solid #ededed;
}


.dropdown-menu>li>a {
    display: block;
    padding: 12px 20px;
    color: #333333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;

}


.dropdown-menu>li>a:hover {
    background-color: #f4f7f6;
    color: #007bff;

    padding-left: 25px;

}

.dropdown-menu>li>a:focus {
    background-color: #e9ecef;
    outline: none;
}

    .ambient-glow-light {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.4;
        z-index: 0;
        pointer-events: none;
    }

    .glow-1 {
        top: -10%;
        left: 20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    }

    .glow-2 {
        bottom: -10%;
        right: 20%;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    }

    .slider-container {
        position: relative;
        z-index: 10;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* HEADER & NAVIGATION BLOCK */
    .header-nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
    }

    .section-header-left {
        max-width: 650px;
    }

    .category-tag-light {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(14, 165, 233, 0.08);
        border: 1px solid rgba(14, 165, 233, 0.2);
        padding: 6px 14px;
        border-radius: 9999px;
        color: #283b6a;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 16px;

    }

    .category-tag-light::before {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        background-color: #283b6a;
        border-radius: 50%;
        box-shadow: 0 0 6px #283b6a;
    }

    .section-title-light {

        font-size: 2rem !important;
        font-weight: 600;
        letter-spacing: -0.02em;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .section-desc-light {
        font-size: 1rem;
        color: #475569;
        line-height: 1.5;
    }

    /* SLIDER NAVIGATION BUTTONS (Top Right) */
    .slider-nav-btns {
        display: flex;
        gap: 12px;
        z-index: 20;
        margin-bottom: 8px;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        color: #334155;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .nav-btn:hover {
        border-color: #800080;
        color: #800080;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.15);
    }

    .nav-btn:active {
        transform: translateY(0);
    }

    .nav-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
        border-color: #e2e8f0;
        color: #94a3b8;
    }

    /* SLIDER WINDOW & TRACK */
    .slider-window {
        overflow: visible;
        width: 100%;
        position: relative;
    }

    .slider-clip {
        overflow: hidden;
        width: 100%;
        border-radius: 4px;
    }

    .slider-track {
        display: flex;
        gap: 24px;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform;
    }

    /* CARD ROTATING BORDER CONTAINER */
    .card-wrapper-light {
        position: relative;
        flex: 0 0 320px;
        background: #ffffff;
        border-radius: 24px;
        padding: 2.5px;
        overflow: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
        box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
        border: 1px solid #e2e8f0;
    }

    /* Moving border conic gradient animation on hover */
    .card-wrapper-light::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent 40%, #800080 50%, #283b6a 60%, transparent 70%);
        animation: rotateBorderLight 3.5s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
        pointer-events: none;
    }

    @keyframes rotateBorderLight {
        100% {
            transform: rotate(360deg);
        }
    }

    .card-wrapper-light:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
        border-color: transparent;
    }

    .card-wrapper-light:hover::before {
        opacity: 1;
    }

    /* Internal Card Content Area */
    .card-content-light {
        position: relative;
        z-index: 5;
        background: #ffffff;
        border-radius: 21px;
        padding: 24px;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .image-container-light {
        width: 100%;
        height: 170px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        background-color: #f1f5f9;
        border: 1px solid #e2e8f0;
    }

    .image-container-light img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card-wrapper-light:hover .image-container-light img {
        transform: scale(1.06);
    }

    .tech-badge-light {
        position: absolute;
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(15, 23, 42, 0.08);
        color: #0f172a;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        z-index: 6;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    }

    .card-title-light {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #0f172a;
        transition: color 0.3s;
    }

    .card-wrapper-light:hover .card-title-light {
        color: #283b6a;
    }

    .card-desc-light {
        font-size: 15px;
        color: #202122;
        line-height: 1.55;
        margin-bottom: 0px !important;
        flex-grow: 1;
    }

    /* Anchor Tag for Footer (Click opens the link) */
    .card-footer-light {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 0.8rem;
        font-weight: 700;
        color: #800080;
        padding-top: 14px;
        border-top: 1px solid #f1f5f9;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.3s;
    }

    .card-footer-light:hover {
        color: #800080;
    }

    .arrow-icon-light {
        width: 16px;
        height: 16px;
        stroke-width: 2.5;
        transition: transform 0.3s;
    }

    .card-footer-light:hover .arrow-icon-light {
        transform: translateX(4px);
    }

    @media (max-width: 640px) {
        .header-nav-wrapper {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .slider-nav-btns {
            align-self: flex-end;
        }
    }
    

:root {
    --primary-navy: #0f172a;
    --primary-blue: #283b6a;
    --accent-cyan: #800080;
    --light-sky: #f0f9ff;
}

.surgical-onco-about {
    background: #ffffff;
    color: #0f172a;
    position: relative;
    overflow: hidden;

    perspective: 1200px;
    /* 3D Depth */
    z-index: 1;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------
   FLOATING 3D BUBBLES ANIMATION (BACKGROUND)
-------------------------------------------------- */

.surgical-onco-about .container-fluid {
    position: relative;
    z-index: 2;
}


.onco-main-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.title-highlight {
    background: linear-gradient(135deg, #800080 0%, #800080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3D Bento Image Card */
.bento-image-wrapper {
    position: relative;
    transform-style: preserve-3d;
}

.bento-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(145deg, rgb(252 249 252 / 41%) 0%, rgb(128 0 128 / 5%) 50%, rgb(128 0 128 / 14%) 100%);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(226, 232, 240, 0.8);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
    backdrop-filter: blur(12px);
}


.bento-image-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.bento-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: scale 0.6s ease;
}

.bento-image-card:hover img {
    scale: 1.04;
}

.experience-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.experience-tag i {
    color: #38bdf8;
}

/* Floating Doctor Glass Card */
.floating-clinical-bar {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    z-index: 2;
}

.doctor-meta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.floating-clinical-bar h5 {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
    font-size: 19px;
    letter-spacing: -0.01em;
}

.verified-badge {
    color: #283b6a;
    font-size: 16px;
}

.floating-clinical-bar p {
    margin: 0;
    color: #475569;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-clinical-bar p i {
    color: #800080;
    font-size: 12px;
}

/* Right Side Narrative Block */
.clinical-narrative-block {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(241, 245, 249, 0.9);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.04);
}

.narrative-lead {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.55;
    position: relative;
    padding-left: 18px;
    border-left: 4px solid #800080;
}

.narrative-body {
    color: #202122;
    line-height: 1.85;
    font-size: 16px;
}

/* Clinical Quick Stats Bar */
.clinical-stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    margin-bottom: 28px;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #283b6a;
    line-height: 1.2;
    display: block;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #202122;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: #cbd5e1;
}

/* Specialty Pills */
.specialty-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.pill-item {
    font-size: 12.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: #e0f2fe;
    color: #0369a1;
    transition: all 0.3s ease;
}

.pill-item:hover {
    background: #800080;
    color: #ffffff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px rgba(14, 165, 233, 0.25);
}

/* Button Premium Action */
.profile-action-wrapper {
    margin-bottom: 32px;
}

.btn-premium-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 2px;
    background: #800080;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;

}

.btn-premium-action i {
    transition: transform 0.3s ease;
}

.btn-premium-action:hover {
    background: #283b6a;
    box-shadow: 0 15px 35px rgba(8, 48, 142, 0.92);
    transform: translateY(-3px) scale(1.02);
}

.btn-premium-action:hover i {
    transform: translateX(6px);
}

/* Accreditation Bento Grid */
.accreditation-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.accreditation-cell {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px 18px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accreditation-cell:hover {
    background: #ffffff;
    border-color: #800080;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 14px 35px rgba(14, 165, 233, 0.15);
}

.cell-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #283b6a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-right: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.accreditation-cell:hover .cell-icon-box {
    background: linear-gradient(135deg, #800080 0%, #283b6a 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.cell-title {
    margin: 0;
    font-size: 15px;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.3;
}

.cell-subtitle {
    margin: 2px 0 0;
    font-size: 12px;
    color: #202122;
    font-weight: 500;
}

@media(max-width:992px) {
    .clinical-narrative-block {
        padding: 30px;
    }
}

@media(max-width:576px) {
    .accreditation-bento-grid {
        grid-template-columns: 1fr;
    }

    .onco-main-title {
        font-size: 25px !important;
    }

    .clinical-stats-row {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .btn-premium-action {

        justify-content: center;
    }
}

    

/* Purple Modern Theme Variables */
:root {
  --primary-accent: #800080;        /* Main Purple Color */
  --accent-bg: #fbf4fb;             /* Light Purple Tint for Icon Backgrounds */
  --accent-border: #f0d5f0;         /* Soft Purple Border Color */
  --card-bg: #ffffff;               /* Clean White Card Background */
  --card-border: #e2e8f0;           /* Soft Card Border */
  --text-dark: #0f172a;             /* Dark Heading Color */
  --text-body: #334155;             /* Body Text Color */
}

/* Card Container */
.dr-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

/* Header Icon Boxes */
.dr-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent-bg);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Typography Scale & Styles */
.dr-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-accent);
  display: block;
}

.dr-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.dr-item-title {
  color: var(--text-dark);
}

.dr-item-desc {
  font-size: 0.825rem;
}

/* Specialty & Membership Cards */
.dr-item {
  background-color: #f8fafc;
  border: 1px solid var(--card-border);
  transition: all 0.25s ease-in-out;
}

.dr-item:hover {
  transform: translateY(-3px);
  background-color: #ffffff;
  border-color: var(--accent-border);
  box-shadow: 0 8px 16px rgba(128, 0, 128, 0.08);
}

/* Unified Purple Icons */
.dr-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--accent-bg);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-check-icon {
  width: 32px;
  height: 32px;
  background-color: var(--accent-bg);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-border);
}

/* Highlight Box */
.dr-highlight {
  background-color: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.dr-highlight-icon {
  width: 42px;
  height: 42px;
  background-color: var(--primary-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dr-badge {
  display: inline-block;
  background-color: var(--primary-accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dr-highlight-text {
  color: var(--text-body);
  font-size: 0.95rem;
}

.backdrop-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Typography Polish */
.tracking-tight {
  letter-spacing: -0.02em;
}

/* Smooth Button Hover Animations */
.hover-lift {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25) !important;
}

.btn-outline-light.hover-lift:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.premium-appointment-contact-section {
    background-color: #fcfdfe;
    /* Minimal bright aesthetic backdrop */
    position: relative;
}

/* Left Section: Context Details styling */
.premium-appointment-contact-section .contact-tagline {
    display: inline-block;
    color: #800080;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.premium-appointment-contact-section .contact-main-heading {
    color: #222222;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.premium-appointment-contact-section .contact-desc-text {
    color: #666666;
    font-size: 15.5px;
    line-height: 1.6;
}

/* Structured Meta Channels */
.premium-appointment-contact-section .contact-meta-channel {
    display: flex;
    align-items: center;
    gap: 18px;
}

.premium-appointment-contact-section .channel-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgb(123 44 191 / 6%);
    color: #800080;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-appointment-contact-section .channel-icon-emergency {
    background-color: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
}

.premium-appointment-contact-section .channel-icon-loc {
    background-color: rgba(135, 193, 142, 0.15);
    color: #800080;
}

.premium-appointment-contact-section .channel-icon-box svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.premium-appointment-contact-section .channel-details span {
    display: block;
    font-size: 12.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: #888888;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.premium-appointment-contact-section .channel-details h5 {
    color: #333333;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

/* Right Section: Appointment Card Container */
.premium-appointment-contact-section .appointment-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(42, 119, 187, 0.08);
    box-shadow: 0 20px 50px rgba(42, 119, 187, 0.06);
}

.premium-appointment-contact-section .form-header-box h4 {
    color: #800080;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 6px;
}

.premium-appointment-contact-section .form-header-box p {
    color: #666666;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0;
}

/* Form Input Control Framework */
.premium-appointment-contact-section .form-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.premium-appointment-contact-section .form-custom-label {
    font-size: 13px;
    font-weight: 700;
    color: #444444;
}

.premium-appointment-contact-section .custom-field {
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    transition: all 0.3s ease;
}

.premium-appointment-contact-section .custom-field:focus {
    background-color: #ffffff;
    border-color: #800080;
    box-shadow: 0 0 0 4px rgba(42, 119, 187, 0.1);
    outline: none;
}

.premium-appointment-contact-section .custom-textarea {
    resize: none;
}

/* Submission Trigger Button Component */
.premium-appointment-contact-section .form-submit-trigger-btn {
    background: #800080;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    padding: 15px 25px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(42, 119, 187, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.premium-appointment-contact-section .form-submit-trigger-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.premium-appointment-contact-section .form-submit-trigger-btn:hover {
    background: #283b6a;
    box-shadow: 0 12px 28px rgba(42, 119, 187, 0.3);
    transform: translateY(-2px);
}

.premium-appointment-contact-section .form-submit-trigger-btn:hover svg {
    transform: translateX(4px);
}

/* Responsiveness Adaptations */
@media (max-width: 991px) {
    .premium-appointment-contact-section .contact-main-heading {
        font-size: 2rem;
    }

    .premium-appointment-contact-section .appointment-form-card {
        padding: 25px;
        margin-top: 20px;
    }
}

:root {
    --purple-primary: #800080;
    --navy-secondary: #283b6a;
    --text-dark: #1e2229;
    --shadow-subtle: 0 4px 15px rgba(40, 59, 106, 0.04);
    --transition-base: all 0.25s ease-in-out;
}

/* Section Main White Background */
.tm-faq-section {
    background-color: #ffffff;
}

/* Heading Typography */
.tm-faq-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
}

.tm-faq-heading span {
    color: var(--navy-secondary);
}

.tm-faq-sub {
    color: #202122;
    font-size: 16px;
    margin-top: 8px;
}

/* Compact Accordion Items with Tighter Gaps */
.tm-faq-accordion .accordion-item {
    border: 1px solid rgba(40, 59, 106, 0.08);
    border-radius: 12px !important;
    margin-bottom: 12px;
    /* Extra gaps ko kam kiya hai */
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    background-color: #ffffff;
    transition: var(--transition-base);
}

.tm-faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 20px rgba(40, 59, 106, 0.08);
}

/* Tighter Padding Buttons */
.tm-faq-accordion .accordion-button {
    font-size: 19px;
    font-weight: 600;
    color: var(--navy-secondary);
    background-color: #ffffff;
    padding: 16px 20px;
    /* Internal padding optimized */
    border: none;
    box-shadow: none !important;
    position: relative;
    transition: var(--transition-base);
}

/* Left Accent bar line */
.tm-faq-accordion .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--purple-primary);
    transform: scaleY(0);
    transition: var(--transition-base);
}

/* Active State Colors */
.tm-faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(128, 0, 128, 0.02);
    color: var(--purple-primary);
}

.tm-faq-accordion .accordion-button:not(.collapsed)::before {
    transform: scaleY(1);
}

/* Smooth Arrow Custom Configuration */
.tm-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23283b6a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 1rem;
    transition: var(--transition-base);
    filter: none !important;
}

.tm-faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23800080' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

/* Compact Content Body */
.tm-faq-accordion .accordion-body {
    background-color: #ffffff;
    color: #202122;
    font-size: 16px;
    line-height: 1.6;
    padding: 0px 20px 16px 20px;
    /* Balanced tight padding */
    border-top: none;
}


:root {
  --hrp-purple: #800080;
  --hrp-blue: #283b6a;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Base Section Styling */
.hrp-tips-section {
  background-color: #ffffff;
}

/* Header Badge */
.hrp-tips-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography Headings */
.hrp-tips-title {
  color: var(--hrp-blue);
}

.hrp-tips-accent {
  color: var(--hrp-purple);
}

.hrp-tips-subtitle {
  color: var(--hrp-blue);
  opacity: 0.85;
}

/* Card Styling */
.hrp-tips-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid rgba(40, 59, 106, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.hrp-tips-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--hrp-purple);
  box-shadow: 0 10px 20px rgba(128, 0, 128, 0.08);
}

/* Subtle Watermark Number */
.hrp-tips-number {
  position: absolute;
  top: -5px;
  right: 12px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(40, 59, 106, 0.08);
  user-select: none;
  transition: color 0.3s ease;
}

.hrp-tips-card:hover .hrp-tips-number {
  color: rgba(128, 0, 128, 0.15);
}

/* Font Awesome Icon Container Styling */
.hrp-tips-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--hrp-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Base Icon Color (#283b6a) */
.hrp-tips-icon i {
  color: #283b6a !important;
  transition: color 0.3s ease;
}

/* Hover Effect: Card hover changes icon box to purple and icon to white */
.hrp-tips-card:hover .hrp-tips-icon {
  background-color: var(--hrp-purple);
}

.hrp-tips-card:hover .hrp-tips-icon i {
  color: #ffffff !important;
}

/* Content Text */
.hrp-tips-content {
  z-index: 1;
}

.hrp-tips-name {
  color: var(--hrp-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hrp-tips-desc {
  color: #556080;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.4;
}

:root {
  --hrp-purple: #800080;
  --hrp-blue: #283b6a;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Section Background */
.hrp-timeline-section {
  background-color: #f8fafc;
}

/* Header Badge */
.hrp-timeline-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Headings */
.hrp-timeline-title {
  color: var(--hrp-blue);
}

.hrp-timeline-accent {
  color: var(--hrp-purple);
}

.hrp-timeline-subtitle {
  color: var(--hrp-blue);
  opacity: 0.85;
}

/* Card Wrapper */
.hrp-timeline-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(40, 59, 106, 0.12);
  border-top: 4px solid var(--hrp-purple);
  border-radius: 0 0 16px 16px;
  padding: 2rem 1.5rem 1.5rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(40, 59, 106, 0.04);
  transition: all 0.3s ease;
}

.hrp-timeline-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--hrp-blue);
  box-shadow: 0 10px 25px rgba(40, 59, 106, 0.1);
}

/* Trimester Step Badge (Top Right Pill) */
.hrp-timeline-step-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Icon Container */
.hrp-timeline-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--hrp-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

/* Icon Base Color (#283b6a) */
.hrp-timeline-icon i {
  color: #283b6a !important;
  transition: color 0.3s ease;
}

/* Hover Effect: Card hover changes icon box to purple and icon to white */
.hrp-timeline-card:hover .hrp-timeline-icon {
  background-color: var(--hrp-purple);
}

.hrp-timeline-card:hover .hrp-timeline-icon i {
  color: #ffffff !important;
}

.hrp-timeline-phase-title {
  color: var(--hrp-blue);
}

/* Checklist Styling */
.hrp-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(40, 59, 106, 0.08);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.hrp-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hrp-blue);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Bullet Dots */
.hrp-timeline-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background-color: var(--hrp-purple);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.hrp-timeline-item:hover .hrp-timeline-bullet {
  transform: scale(1.4);
  background-color: var(--hrp-blue);
}

:root {
  --hrp-purple: #800080;
  --hrp-blue: #283b6a;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Base Section Styling */
.hrp-treat-section {
  background-color: #ffffff;
}

/* Header Badge */
.hrp-treat-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography Headings */
.hrp-treat-title {
  color: var(--hrp-blue);
}

.hrp-treat-accent {
  color: var(--hrp-purple);
}

.hrp-treat-subtitle {
  color: var(--hrp-blue);
  opacity: 0.85;
}

/* Card Styling */
.hrp-treat-card {
  background: #f8fafc;
  border: 1px solid rgba(40, 59, 106, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hrp-treat-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--hrp-purple);
  box-shadow: 0 10px 20px rgba(128, 0, 128, 0.08);
}

/* Font Awesome Icon Container Styling */
.hrp-treat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--hrp-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

/* Base Icon Color (#283b6a) */
.hrp-treat-icon i {
  color: #283b6a !important;
  transition: color 0.3s ease;
}

/* Hover Effect: Card hover changes icon container to purple and icon to white */
.hrp-treat-card:hover .hrp-treat-icon {
  background-color: var(--hrp-purple);
}

.hrp-treat-card:hover .hrp-treat-icon i {
  color: #ffffff !important;
}

/* Content Text */
.hrp-treat-name {
  color: var(--hrp-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hrp-treat-desc {
  color: #556080;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.4;
}

:root {
  --hrp-purple: #800080;
  --hrp-blue: #283b6a;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Base Section Styling */
.hrp-care-section {
  background-color: #f8fafc;
}

/* Header Badge */
.hrp-care-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography Headings */
.hrp-care-title {
  color: var(--hrp-blue);
}

.hrp-care-accent {
  color: var(--hrp-purple);
}

.hrp-care-subtitle {
  color: var(--hrp-blue);
  opacity: 0.85;
}

/* Grouped Box Containers */
.hrp-care-group-card {
  background: #ffffff;
  border: 1px solid rgba(40, 59, 106, 0.12);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 15px rgba(40, 59, 106, 0.03);
  transition: all 0.3s ease;
}

.hrp-care-group-card:hover {
  border-color: var(--hrp-purple);
  box-shadow: 0 10px 25px rgba(128, 0, 128, 0.08);
}

/* Header Icon Inside Cards */
.hrp-care-group-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: #283b6a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.hrp-care-group-icon i {
  color: #ffffff !important;
}

.hrp-care-group-title {
  color: var(--hrp-blue);
}

/* List Item Styling */
.hrp-care-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hrp-care-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--hrp-blue-light);
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.hrp-care-item:hover {
  background-color: var(--hrp-purple-light);
  transform: translateX(4px);
}

/* List Icon Box */
.hrp-care-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Icon Base Color (#283b6a) */
.hrp-care-item-icon i {
  color: #283b6a !important;
  transition: color 0.3s ease;
}

/* Hover Effect: Hovering on list item changes icon to purple */
.hrp-care-item:hover .hrp-care-item-icon i {
  color: var(--hrp-purple) !important;
}

/* List Text */
.hrp-care-item-text {
  color: var(--hrp-blue);
  font-size: 0.95rem;
  line-height: 1.4;
}

.hrp-care-item-text strong {
  color: var(--hrp-blue);
}

:root {
  --hrp-purple: #800080;
  --hrp-blue: #283b6a;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Base Section Styling */
.hrp-warning-section {
  background-color: #ffffff;
}

/* Header Badge */
.hrp-warning-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography Headings */
.hrp-warning-title {
  color: var(--hrp-blue);
}

.hrp-warning-accent {
  color: var(--hrp-purple);
}

.hrp-warning-subtitle {
  color: var(--hrp-blue);
  opacity: 0.85;
}

/* Card Styling */
.hrp-warning-card {
  background: #ffffff;
  border: 1px solid rgba(40, 59, 106, 0.12);
  border-left: 4px solid var(--hrp-purple);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hrp-warning-card:hover {
  transform: translateY(-4px);
  border-color: var(--hrp-purple);
  box-shadow: 0 10px 20px rgba(40, 59, 106, 0.1);
}

/* Icon Container */
.hrp-warning-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--hrp-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

/* Icon Base Color (#283b6a) */
.hrp-warning-icon i {
  color: #283b6a !important;
  transition: color 0.3s ease;
}

/* Hover Effect: Card hover changes icon box to purple and icon to white */
.hrp-warning-card:hover .hrp-warning-icon {
  background-color: var(--hrp-purple);
}

.hrp-warning-card:hover .hrp-warning-icon i {
  color: #ffffff !important;
}

/* Card Text */
.hrp-warning-name {
  color: var(--hrp-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hrp-warning-desc {
  color: #556080;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Emergency Action Callout Box */
.hrp-warning-alert {
  background-color: var(--hrp-blue);
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(40, 59, 106, 0.2);
}

.hrp-warning-alert i {
  color: var(--hrp-purple-light);
}

:root {
  --hrp-purple: #800080;
  --hrp-blue: #283b6a;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Base Section Styling */
.hrp-causes-section {
  background-color: #f9fbfd;
}

/* Header Badge */
.hrp-causes-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography Headings */
.hrp-causes-title {
  color: var(--hrp-blue);
}

.hrp-causes-accent {
  color: var(--hrp-purple);
}

.hrp-causes-subtitle {
  color: var(--hrp-blue);
  opacity: 0.85;
}

.hrp-causes-cat-heading {
  color: var(--hrp-purple);
  border-bottom: 2px solid var(--hrp-purple-light);
  padding-bottom: 8px;
}

/* Card Styling */
.hrp-causes-card {
  background: #ffffff;
  border: 1px solid rgba(40, 59, 106, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hrp-causes-card:hover {
  transform: translateY(-4px);
  border-color: var(--hrp-purple);
  box-shadow: 0 10px 20px rgba(128, 0, 128, 0.08);
}

/* Font Awesome Icon Container Styling */
.hrp-causes-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--hrp-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

/* Icon Color Base Settings (#283b6a) */
.hrp-causes-icon i {
  color: #283b6a !important;
  transition: color 0.3s ease;
}

/* Hover Effect: Card hover karne par icon white ho jayega */
.hrp-causes-card:hover .hrp-causes-icon {
  background-color: var(--hrp-purple);
}

.hrp-causes-card:hover .hrp-causes-icon i {
  color: #ffffff !important;
}

/* Content Text */
.hrp-causes-name {
  color: var(--hrp-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hrp-causes-desc {
  color: #556080;
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.4;
}

:root {
  --hrp-purple: #800080;
  --hrp-blue: #181819;
  --hrp-purple-light: rgba(128, 0, 128, 0.08);
  --hrp-blue-light: rgba(40, 59, 106, 0.05);
}

/* Unique Section Wrapper */
.hrp-section {
  background-color: #ffffff;
}
.display-6{
    font-size: 30px;
}

/* Badge Styling */
.hrp-badge {
  display: inline-block;
  background-color: var(--hrp-purple-light);
  color: var(--hrp-purple);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Typography Headings & Accents */
.hrp-title {
  color: var(--hrp-blue);
  line-height: 1.25;
}

.hrp-title-accent {
  color: var(--hrp-purple);
}

.hrp-lead {
  color: var(--hrp-blue);
  opacity: 0.9;
  font-size: 15px;
  font-weight: 500;
}

/* Highlighted Callout Box */
.hrp-card {
  background-color: var(--hrp-blue-light);
  border-left: 4px solid var(--hrp-purple);
  border-radius: 0 8px 8px 0;
}

.hrp-card-text {
  color: var(--hrp-blue);
  font-size: 15px;
  line-height: 1.6;
}

/* Primary Button */
.hrp-btn-primary {
  background-color: var(--hrp-purple);
  color: #ffffff;
  border: 2px solid var(--hrp-purple);
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hrp-btn-primary:hover,
.hrp-btn-primary:focus {
  background-color: #283b6a;
  border-color: var(--hrp-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(40, 59, 106, 0.25);
}

/* Right Side Image Styling with Decorative Backdrop */
.hrp-image-container {
  position: relative;
  padding: 12px;
}

.hrp-image {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(40, 59, 106, 0.15);
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: cover;
}

.hrp-image-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--hrp-purple) 0%, var(--hrp-blue) 100%);
  border-radius: 20px;
  z-index: 1;
  opacity: 0.15;
}

