/* ===== WELL CARE NURSING HOME - GLOBAL THEME ===== */
:root {
    --wc-navy: #0A2A5E;
    --wc-green: #0B8A4E;
    --wc-green-light: #E8F5EE;
    --wc-green-soft: rgba(11, 138, 78, 0.08);
    --wc-navy-soft: rgba(10, 42, 94, 0.08);
    --wc-soft: #F7FAF9;
    --wc-white: #FFFFFF;
    --wc-shadow: 0 12px 40px -10px rgba(10, 42, 94, 0.18);
    --wc-shadow-green: 0 12px 40px -10px rgba(11, 138, 78, 0.18);
    --wc-radius: 16px;

    /* Aliases for easy replacement */
    --ar-red: var(--wc-green);
    --ar-red-light: #12a85c;
    --ar-red-dark: #097a42;
    --ar-red-soft: var(--wc-green-soft);
    --ar-red-gradient: linear-gradient(135deg, #0B8A4E, #097a42);

    --ar-blue: var(--wc-navy);
    --ar-blue-light: #1a3d7a;
    --ar-blue-dark: #071f45;
    --ar-blue-soft: var(--wc-navy-soft);
    --ar-blue-gradient: linear-gradient(135deg, #0A2A5E, #071f45);

    --ar-dark: #0A2A5E;
    --ar-shadow: var(--wc-shadow);
    --ar-shadow-red: var(--wc-shadow-green);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--wc-soft);
    color: #1a1f36;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

/* ----- BUTTONS ----- */
.btn-ar-red, .btn-ar-blue {
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 2rem;
    border-radius: 60px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-ar-red {
    background: var(--wc-green);
    box-shadow: 0 6px 20px rgba(11, 138, 78, 0.3);
}

.btn-ar-blue {
    background: var(--wc-navy);
    box-shadow: 0 6px 20px rgba(10, 42, 94, 0.3);
}

.btn-ar-red::after, .btn-ar-blue::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.5s;
}

.btn-ar-red:hover::after, .btn-ar-blue:hover::after { transform: scale(1); }

.btn-ar-red:hover {
    background: #097a42;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(11, 138, 78, 0.4);
    color: #fff;
}

.btn-ar-blue:hover {
    background: #071f45;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(10, 42, 94, 0.4);
    color: #fff;
}

.btn-outline-ar-red, .btn-outline-ar-blue {
    background: transparent;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 60px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline-ar-red {
    border: 2px solid var(--wc-green);
    color: var(--wc-green);
}

.btn-outline-ar-blue {
    border: 2px solid var(--wc-navy);
    color: var(--wc-navy);
}

.btn-outline-ar-red:hover {
    background: var(--wc-green);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(11, 138, 78, 0.3);
}

.btn-outline-ar-blue:hover {
    background: var(--wc-navy);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(10, 42, 94, 0.3);
}

/* ----- BADGES ----- */
.badge-ar, .badge-ar-blue {
    color: #fff;
    border-radius: 60px;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
}

.badge-ar {
    background: var(--wc-green);
    box-shadow: 0 4px 12px rgba(11, 138, 78, 0.2);
}

.badge-ar-blue {
    background: var(--wc-navy);
    box-shadow: 0 4px 12px rgba(10, 42, 94, 0.2);
}

/* ----- NAVBAR (old class - kept for compatibility) ----- */
/* .navbar-wellcare {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 2px solid rgba(11, 138, 78, 0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.navbar-wellcare .navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--wc-green) !important;
    letter-spacing: -0.5px;
}

.navbar-wellcare .navbar-brand i {
    color: var(--wc-navy);
    margin-right: 6px;
}

.navbar-wellcare .nav-link {
    font-weight: 600;
    color: #1a2a4a !important;
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    margin: 0 2px;
    transition: all 0.25s ease;
    position: relative;
}

.navbar-wellcare .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--wc-green);
    border-radius: 10px;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.navbar-wellcare .nav-link:hover::after,
.navbar-wellcare .nav-link.active::after {
    width: 60%;
}

.navbar-wellcare .nav-link:hover,
.navbar-wellcare .nav-link.active {
    background: var(--wc-green-soft);
    color: var(--wc-green) !important;
}

.navbar-wellcare .navbar-toggler {
    border-color: var(--wc-green);
    color: var(--wc-green);
}

.navbar-wellcare .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230B8A4E' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} */

/* ----- SCROLLER / MARQUEE SECTION ----- */
.scroller-section {
    background: linear-gradient(135deg, #0A2A5E, #071f45);
    padding: 0;
    overflow: hidden;
    border-top: 3px solid var(--wc-green);
    border-bottom: 3px solid var(--wc-navy);
    position: relative;
}

.scroller-section::before,
.scroller-section::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroller-section::before {
    left: 0;
    width: 60px;
    background: linear-gradient(90deg, #0A2A5E, transparent);
}

.scroller-section::after {
    right: 0;
    width: 60px;
    background: linear-gradient(270deg, #0A2A5E, transparent);
}

.scroller-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.scroller-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 0;
}

.scroller-track {
    display: flex;
    align-items: center;
    gap: 50px;
    animation: scrollMarquee 30s linear infinite;
    white-space: nowrap;
}

.scroller-item {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0 5px;
    letter-spacing: 0.3px;
    transition: 0.3s;
}

.scroller-item i {
    font-size: 1.2rem;
    min-width: 24px;
    color: #7DFFB3;
}

.scroller-item:hover {
    color: #7DFFB3;
    transform: scale(1.05);
}

.scroller-wrapper:hover .scroller-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----- HERO CAROUSEL ----- */
.hero-carousel-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background: #0A2A5E;
}

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
    height: 100%;
}

.hero-carousel-section .carousel-item {
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease;
}

.carousel-item.active .carousel-bg {
    transform: scale(1.05);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-carousel-section .row {
    height: 100%;
}

.hero-carousel-section .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.hero-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    margin: 0 6px;
    transition: 0.3s;
}

.hero-carousel-section .carousel-indicators button.active {
    background: var(--wc-green);
    border-color: var(--wc-green);
    width: 30px;
    border-radius: 10px;
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    transition: 0.3s;
}

.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel-section .carousel-control-prev {
    left: 20px;
}

.hero-carousel-section .carousel-control-next {
    right: 20px;
}

.hero-carousel-section .carousel-control-prev-icon,
.hero-carousel-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-carousel-section .carousel-item .container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.hero-carousel-section .carousel-item.active .container {
    opacity: 1;
    transform: translateY(0);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* ----- SECTION HEADINGS ----- */
.section-head {
    font-weight: 800;
    color: var(--wc-navy);
    letter-spacing: -0.5px;
    border-left: 8px solid var(--wc-green);
    padding-left: 1.2rem;
}

.section-head i { color: var(--wc-green); margin-right: 10px; }

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--wc-green), var(--wc-navy));
    border-radius: 10px;
    margin: 1rem auto 1.5rem;
}

/* ----- CARDS ----- */
.card-ar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 32px;
    box-shadow: 0 10px 30px -8px rgba(10, 42, 94, 0.06);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    padding: 2rem 1.5rem;
    overflow: hidden;
    position: relative;
}

.card-ar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--wc-green), var(--wc-navy));
    opacity: 0;
    transition: 0.4s;
}

.card-ar:hover::before { opacity: 1; }

.card-ar:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 50px -16px rgba(10, 42, 94, 0.18);
    border-color: rgba(11, 138, 78, 0.12);
}

.card-ar .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    transition: 0.3s;
}

.card-ar:hover .icon-box {
    transform: rotate(2deg) scale(1.05);
}

.icon-red { background: var(--wc-green-soft); color: var(--wc-green); }
.icon-blue { background: var(--wc-navy-soft); color: var(--wc-navy); }

.grid-icon {
    font-size: 2.8rem;
    color: var(--wc-green);
    background: var(--wc-green-soft);
    width: 85px;
    height: 85px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.grid-icon.blue { background: var(--wc-navy-soft); color: var(--wc-navy); }

.card-ar:hover .grid-icon { transform: scale(1.06) rotate(1deg); }

/* ----- COUNTER SECTION ----- */
.counter-section {
    background: linear-gradient(135deg, #f7faf9 0%, #ffffff 100%);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(11, 138, 78, 0.06);
    position: relative;
    overflow: hidden;
}

.counter-section::before,
.counter-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
}

.counter-section::before {
    top: -50%;
    right: -20%;
    background: radial-gradient(circle, rgba(11, 138, 78, 0.03) 0%, transparent 70%);
}

.counter-section::after {
    bottom: -50%;
    left: -20%;
    background: radial-gradient(circle, rgba(10, 42, 94, 0.03) 0%, transparent 70%);
}

.counter-item { text-align: center; }

.counter-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 138, 78, 0.06);
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--wc-green), var(--wc-navy));
    opacity: 0;
    transition: 0.4s;
}

.counter-card:hover::before { opacity: 1; }

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 42, 94, 0.1);
    border-color: rgba(11, 138, 78, 0.12);
}

.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: var(--wc-green-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--wc-green);
    transition: 0.3s;
}

.counter-card:hover .counter-icon {
    background: var(--wc-green);
    color: #fff;
    transform: scale(1.05) rotate(2deg);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--wc-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.counter-number .suffix { font-size: 2rem; }

.counter-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--wc-green);
    display: inline-block;
    margin-left: 2px;
    animation: pulsePlus 2s ease-in-out infinite;
}

@keyframes pulsePlus {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.counter-number.animated {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----- ABOUT SECTION ----- */
.about-section {
    padding: 5rem 0;
    background: #ffffff;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #2d3748;
}

.about-image-wrapper { position: relative; }

.about-image-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-image-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--wc-green);
    color: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 138, 78, 0.3);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.about-image-accreditation {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--wc-navy);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.3);
}

/* ----- MISSION SECTION ----- */
.mission-section {
    padding: 5rem 0;
    background: #f7faf9;
}

.mission-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(11, 138, 78, 0.06);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 42, 94, 0.08);
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 200px;
    margin: 0 auto;
}

.values-list li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* ----- SPECIALTIES PREVIEW ----- */
.specialties-preview {
    padding: 5rem 0;
    background: #ffffff;
}

.specialty-card {
    background: #f7faf9;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(10, 42, 94, 0.05);
}

.specialty-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.08);
    border-color: var(--wc-green);
}

.specialty-icon {
    font-size: 2rem;
    color: var(--wc-green);
    background: var(--wc-green-soft);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.3s;
}

.specialty-card:hover .specialty-icon {
    background: var(--wc-green);
    color: #fff;
    transform: scale(1.05);
}

/* ----- WHY CHOOSE SECTION ----- */
.why-choose-section {
    padding: 5rem 0;
    background: #f7faf9;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(11, 138, 78, 0.06);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.08);
    border-color: var(--wc-navy);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--wc-green);
    margin-bottom: 1rem;
    background: var(--wc-green-soft);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: 0.3s;
}

.why-card:hover .why-icon {
    background: var(--wc-green);
    color: #fff;
    transform: scale(1.05);
}

/* ============================================ */
/* ========== TESTIMONIAL SECTION ========== */
/* ============================================ */

.testimonial-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 42, 94, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 138, 78, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-wrapper {
    position: relative;
    padding: 0 80px;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem 1.8rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    border: 1px solid rgba(10, 42, 94, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 6rem;
    color: rgba(11, 138, 78, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 42, 94, 0.08);
    border-color: rgba(11, 138, 78, 0.12);
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(10, 42, 94, 0.08);
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--wc-navy);
    flex-shrink: 0;
}

.author-avatar i {
    background: var(--wc-navy-soft);
    border-radius: 50%;
    padding: 4px;
}

.author-name {
    font-weight: 700;
    color: #1a202c;
    font-size: 1rem;
}

.author-detail {
    font-size: 0.82rem;
    color: #718096;
}

/* Testimonial Arrow Buttons */
.testimonial-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--wc-navy);
    border: 2px solid rgba(10, 42, 94, 0.12);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    z-index: 100;
    padding: 0;
    line-height: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-prev-btn { left: -5px; }
.testimonial-next-btn { right: -5px; }

.testimonial-arrow-btn:hover {
    background: var(--wc-green);
    color: #ffffff;
    border-color: var(--wc-green);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 30px rgba(11, 138, 78, 0.25);
}

.testimonial-arrow-btn:active {
    transform: translateY(-50%) scale(0.92);
}

.testimonial-arrow-btn i {
    pointer-events: none;
    transition: transform 0.3s ease;
}

.testimonial-arrow-btn:hover i {
    transform: scale(1.1);
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0;
}

.testimonial-dots button.active {
    background: var(--wc-green);
    border-color: var(--wc-green);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(11, 138, 78, 0.2);
}

.testimonial-dots button:hover {
    background: var(--wc-green);
    opacity: 0.7;
    transform: scale(1.15);
}

/* Carousel Slide Animation */
.carousel-item .row [class*="col-"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.carousel-item.active .row [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .row [class*="col-"]:nth-child(2) {
    transition-delay: 0.4s;
}

.carousel-item.active .row [class*="col-"]:nth-child(3) {
    transition-delay: 0.5s;
}

/* ----- CTA SECTION ----- */
.cta-section {
        padding: 1rem 0 4rem;
    }

    .cta-wrapper {
        background: linear-gradient(135deg, #0A2A5E 0%, #0B8A4E 100%);
        padding: 3.5rem 3rem;
        border-radius: 28px;
        box-shadow: 0 25px 60px -15px rgba(10, 42, 94, 0.35);
        position: relative;
        overflow: hidden;
    }

    /* Soft decorative circles */
    .cta-shape {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-shape-1 {
        width: 280px;
        height: 280px;
        background: radial-gradient(circle, rgba(125, 255, 179, 0.18) 0%, transparent 70%);
        top: -80px;
        right: -60px;
    }

    .cta-shape-2 {
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
        bottom: -50px;
        left: -40px;
    }

    /* Button hover polish */
    .cta-wrapper .btn-light {
        transition: all 0.3s ease;
    }

    .cta-wrapper .btn-light:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
        background: #ffffff;
        color: #0A2A5E !important;
    }

    .cta-wrapper .btn-outline-light {
        border: 2px solid rgba(255, 255, 255, 0.55);
        transition: all 0.3s ease;
    }

    .cta-wrapper .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .cta-wrapper {
            padding: 2.8rem 2rem;
            text-align: center;
        }
        .cta-wrapper .text-lg-end {
            text-align: center !important;
        }
        .cta-wrapper .d-flex {
            justify-content: center !important;
        }
    }

    @media (max-width: 576px) {
        .cta-wrapper {
            padding: 2.2rem 1.5rem;
            border-radius: 20px;
        }
        .cta-wrapper h2 {
            font-size: 1.8rem !important;
        }
        .cta-wrapper .btn {
            width: 100%;
        }
    }

/* ----- CONTACT PAGES ----- */
.contact-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9f4 100%);
    border-bottom: 1px solid rgba(11, 138, 78, 0.06);
}

.contact-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #2d3748;
}

.contact-hero-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(11, 138, 78, 0.06);
    transition: 0.3s;
}

.contact-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(10, 42, 94, 0.08);
}

.contact-info-section {
    padding: 4rem 0;
    background: #ffffff;
}

.contact-info-card {
    background: #f7faf9;
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(10, 42, 94, 0.05);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.06);
    border-color: var(--wc-green);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
}

.contact-form-section {
    padding: 4rem 0;
    background: #f7faf9;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(11, 138, 78, 0.06);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: 0.3s;
    padding: 0.75rem 1rem;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--wc-navy);
    box-shadow: 0 0 0 0.2rem rgba(10, 42, 94, 0.1);
}

.contact-form-wrapper .form-control-lg { font-size: 1rem; }

.contact-map-wrapper { height: 100%; }

.map-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(11, 138, 78, 0.06);
    height: 100%;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.map-details { padding: 0 0.5rem; }

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 42, 94, 0.05);
}

.map-info-item:last-child { border-bottom: none; }

.map-info-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.emergency-contact-section {
    padding: 3rem 0;
    background: #ffffff;
}

.emergency-card {
    background: linear-gradient(135deg, var(--wc-green), #097a42);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(11, 138, 78, 0.2);
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    flex-shrink: 0;
}

.faq-section {
    padding: 5rem 0;
    background: #f7faf9;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
    border-radius: 20px !important;
    overflow: hidden;
}

.accordion-button {
    background: #ffffff;
    border: 1px solid rgba(10, 42, 94, 0.05);
    border-radius: 20px !important;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--wc-navy);
    box-shadow: none !important;
    transition: 0.3s;
}

.accordion-button:not(.collapsed) {
    background: #ffffff;
    color: var(--wc-green);
    border-bottom: 1px solid rgba(11, 138, 78, 0.1);
}

.accordion-button:hover { background: #f7faf9; }

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--wc-navy);
}

.accordion-body {
    background: #ffffff;
    padding: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.newsletter-section {
    padding: 3rem 0;
    background: #ffffff;
}

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--wc-navy), #071f45);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.2);
}

.newsletter-form .input-group {
    border-radius: 60px;
    overflow: hidden;
    background: #ffffff;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 60px 0 0 60px;
}

.newsletter-form .form-control:focus { box-shadow: none; }

.newsletter-form .btn {
    border-radius: 0 60px 60px 0;
    padding: 0.75rem 1.5rem;
}

/* ----- FOOTER ----- */
.footer-ar {
    background: linear-gradient(145deg, #0A2A5E, #071f45);
    color: #d6e4ff;
    padding: 3rem 0 1.5rem;
}

.footer-ar a {
    color: #a7f3d0;
    text-decoration: none;
    transition: 0.2s;
}

.footer-ar a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ----- ANIMATIONS ----- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards ease-out;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(11, 138, 78, 0.3); }
    70% { box-shadow: 0 0 0 15px rgba(11, 138, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 138, 78, 0); }
}

/* ----- AJAX DEMO BOX ----- */
.ajax-box {
    background: #fff;
    border-radius: 60px;
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--wc-green);
    color: var(--wc-navy);
    font-weight: 500;
    transition: 0.25s;
    display: inline-block;
}

.ajax-box:hover {
    border-color: var(--wc-navy);
    background: var(--wc-navy-soft);
}

.spin {
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--wc-green), var(--wc-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- PAGE SECTIONS ----- */
.page-section {
    padding: 5rem 0 4rem;
}

.page-section:nth-child(even) { background: #ffffff; }
.page-section:nth-child(odd) { background: #f7faf9; }

/* ============================================ */
/* ========== IPD ADMISSION SECTION ========== */
/* ============================================ */

.ipd-admission {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ipd-admission::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 42, 94, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ipd-step {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    background: #f7faf9;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    height: 100%;
    border: 1px solid rgba(10, 42, 94, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.ipd-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(10, 42, 94, 0.08);
    border-color: rgba(11, 138, 78, 0.12);
    background: #ffffff;
}

.ipd-step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--wc-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(11, 138, 78, 0.3);
    transition: all 0.3s ease;
}

.ipd-step:hover .ipd-step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(11, 138, 78, 0.4);
}

.ipd-step-icon {
    font-size: 2.8rem;
    color: var(--wc-navy);
    background: var(--wc-navy-soft);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.ipd-step:hover .ipd-step-icon {
    background: var(--wc-green);
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(11, 138, 78, 0.15);
}

.ipd-step h6 {
    font-size: 1.1rem;
    color: var(--wc-navy);
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.ipd-step:hover h6 {
    color: var(--wc-green);
}

.ipd-step .text-secondary {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1200px) {
    .testimonial-wrapper {
        padding: 0 60px;
    }
    .testimonial-arrow-btn {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
    .testimonial-prev-btn { left: -3px; }
    .testimonial-next-btn { right: -3px; }
}

@media (max-width: 991px) {
    .hero-carousel-section {
        height: 70vh;
        min-height: 450px;
        max-height: 600px;
    }
    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    .testimonial-wrapper {
        padding: 0 15px;
    }
    .testimonial-arrow-btn {
        display: none;
    }
    .testimonial-dots {
        gap: 10px;
    }
    .testimonial-dots button {
        width: 10px;
        height: 10px;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .ipd-admission {
        padding: 3rem 0;
    }
    .ipd-step {
        padding: 2rem 1.2rem;
    }
    .ipd-step-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.6rem; }
    .hero-stats .stat-number { font-size: 1.8rem; }
    .navbar-wellcare .navbar-brand { font-size: 1.4rem; }
    
    .hero-carousel-section {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    .hero-carousel-section .carousel-indicators {
        bottom: 15px;
    }
    .hero-carousel-section .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        width: 35px;
        height: 35px;
        opacity: 0.5;
    }
    
    .counter-section {
        padding: 3rem 0;
    }
    .counter-card {
        padding: 1.5rem 1rem;
    }
    .counter-number {
        font-size: 2.5rem;
    }
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    .counter-label {
        font-size: 0.85rem;
    }
    
    .about-image-experience {
        bottom: -10px;
        left: -10px;
        padding: 1rem;
    }
    .experience-number {
        font-size: 1.8rem;
    }
    .about-image-accreditation {
        top: -10px;
        right: -10px;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .cta-wrapper {
        padding: 2rem;
        border-radius: 25px;
    }
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .scroller-item {
        font-size: 0.8rem;
        gap: 30px;
    }
    .scroller-item i {
        font-size: 1rem;
        min-width: 20px;
    }
    .scroller-track {
        gap: 30px;
    }
    .scroller-section::before,
    .scroller-section::after {
        width: 30px;
    }
    
    .contact-hero {
        padding: 3rem 0 2rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    .contact-info-section,
    .contact-form-section,
    .faq-section {
        padding: 3rem 0;
    }
    .emergency-card {
        padding: 2rem;
        text-align: center;
    }
    .emergency-card .d-flex {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-wrapper {
        padding: 2rem;
    }
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
    }
    .newsletter-form .form-control {
        border-radius: 60px;
        margin-bottom: 10px;
    }
    .newsletter-form .btn {
        border-radius: 60px;
        width: 100%;
    }
    
    .testimonial-section {
        padding: 3rem 0;
    }
    .testimonial-dots {
        gap: 8px;
        margin-top: 30px;
    }
    .testimonial-dots button {
        width: 9px;
        height: 9px;
    }
    .testimonial-card {
        padding: 1.2rem;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
    .testimonial-card::before {
        font-size: 4rem;
        top: -5px;
        right: 15px;
    }
    
    .ipd-step {
        padding: 1.8rem 1rem;
    }
    .ipd-step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
        right: -12px;
    }
    .ipd-step-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    .ipd-step h6 {
        font-size: 1rem;
    }
    .ipd-step .text-secondary {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .card-ar { padding: 1.2rem; }
    
    .hero-carousel-section {
        height: 50vh;
        min-height: 350px;
        max-height: 450px;
    }
    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        display: none;
    }
    .hero-carousel-section .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 15px;
    }
    .counter-card {
        padding: 1.2rem 0.8rem;
    }
    .counter-label {
        font-size: 0.75rem;
    }
    
    .about-section {
        padding: 3rem 0;
    }
    .mission-section,
    .specialties-preview,
    .why-choose-section,
    .testimonial-section {
        padding: 3rem 0;
    }
    .cta-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .scroller-item {
        font-size: 0.7rem;
        gap: 20px;
    }
    .scroller-item i {
        font-size: 0.9rem;
        min-width: 18px;
    }
    .scroller-track {
        gap: 20px;
    }
    .scroller-section::before,
    .scroller-section::after {
        width: 20px;
    }
    
    .contact-hero-card {
        padding: 1.5rem;
    }
    .contact-info-card {
        padding: 1.5rem;
    }
    .map-card {
        padding: 1rem;
    }
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .testimonial-section {
        padding: 2rem 0;
    }
    .testimonial-card {
        padding: 1rem;
        border-radius: 18px;
    }
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .testimonial-rating {
        font-size: 0.8rem;
    }
    .author-avatar {
        font-size: 2rem;
    }
    .testimonial-dots {
        gap: 6px;
        margin-top: 20px;
    }
    .testimonial-dots button {
        width: 8px;
        height: 8px;
    }
    .testimonial-card::before {
        display: none;
    }
    
    .ipd-admission {
        padding: 2rem 0;
    }
    .ipd-step {
        padding: 1.5rem 0.8rem;
        border-radius: 18px;
    }
    .ipd-step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: -10px;
        right: -10px;
    }
    .ipd-step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    .ipd-step h6 {
        font-size: 0.95rem;
    }
    .ipd-step .text-secondary {
        font-size: 0.8rem;
    }
}


/* ============================================ */
/* ========== OPD PAGE STYLES ========== */
/* ============================================ */

/* ----- OPD HERO ----- */
.opd-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9f4 100%);
    position: relative;
    overflow: hidden;
}

.opd-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 42, 94, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.opd-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2d3748;
    background: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.opd-hero-image {
    position: relative;
}

.opd-hero-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--wc-green);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 138, 78, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ----- OPD STATS ----- */
.opd-stats {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 138, 78, 0.06);
}

.opd-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #f7faf9;
    border-radius: 20px;
    transition: 0.3s;
}

.opd-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.06);
}

.opd-stat-icon {
    font-size: 2.5rem;
    color: var(--wc-green);
    background: var(--wc-green-soft);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.opd-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--wc-navy);
    line-height: 1;
}

.opd-stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

/* ----- OPD TIMING ----- */
.opd-timing {
    padding: 4rem 0;
    background: #f7faf9;
}

.opd-timing-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
    border: 1px solid rgba(10, 42, 94, 0.06);
    transition: 0.3s;
}

.opd-timing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.06);
}

.opd-timing-icon {
    width: 60px;
    height: 60px;
    background: var(--wc-navy-soft);
    color: var(--wc-navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.opd-timing-slot {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 42, 94, 0.05);
}

.opd-timing-slot:last-child {
    border-bottom: none;
}

.opd-day {
    font-weight: 600;
    color: #2d3748;
}

.opd-time {
    color: var(--wc-navy);
    font-weight: 500;
}

/* ----- OPD SPECIALTIES ----- */
.opd-specialties {
    padding: 5rem 0;
    background: #ffffff;
}

.opd-specialty-item {
    text-align: center;
    padding: 1.5rem;
    background: #f7faf9;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 42, 94, 0.05);
    height: 100%;
}

.opd-specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.06);
    border-color: var(--wc-green);
}

.opd-specialty-icon {
    width: 55px;
    height: 55px;
    background: var(--wc-green-soft);
    color: var(--wc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 0.8rem;
    transition: 0.3s;
}

.opd-specialty-item:hover .opd-specialty-icon {
    background: var(--wc-green);
    color: #fff;
    transform: scale(1.05);
}

/* ----- OPD DOCTORS ----- */
.opd-doctors {
    padding: 5rem 0;
    background: #f7faf9;
}

.doctor-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid rgba(10, 42, 94, 0.05);
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.06);
}

.doctor-avatar {
    font-size: 4rem;
    color: var(--wc-green);
}

/* ----- OPD BOOKING ----- */
.opd-booking {
    padding: 5rem 0;
    background: #ffffff;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #2d3748;
}

.booking-card {
    background: #f7faf9;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(10, 42, 94, 0.06);
}

.booking-step-icon {
    width: 40px;
    height: 40px;
    background: var(--wc-green-soft);
    color: var(--wc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ----- OPD TESTIMONIALS ----- */
.opd-testimonials {
    padding: 5rem 0;
    background: #f7faf9;
}

/* ----- OPD CTA ----- */
/* .opd-cta {
    padding: 4rem 0;
    background: var(--wc-navy);
}

.opd-cta-wrapper {
    background: linear-gradient(135deg, var(--wc-green), var(--wc-navy));
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(11, 138, 78, 0.2);
}

@media (max-width: 991px) {
    .opd-hero {
        padding: 4rem 0 3rem;
    }
    .opd-hero-badge {
        bottom: -10px;
        right: -10px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .opd-timing {
        padding: 3rem 0;
    }
    .opd-timing-card {
        padding: 1.8rem;
    }
    .opd-specialties,
    .opd-doctors,
    .opd-booking,
    .opd-testimonials {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .opd-hero-stat {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    .opd-stat-number {
        font-size: 2rem;
    }
    .opd-stat-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    .opd-timing-card {
        padding: 1.5rem;
    }
    .opd-timing-slot {
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }
    .booking-card {
        padding: 1.5rem;
    }
    .opd-cta-wrapper {
        padding: 2rem;
        border-radius: 25px;
    }
}

@media (max-width: 576px) {
    .opd-hero {
        padding: 3rem 0 2rem;
    }
    .opd-hero-badge {
        display: none;
    }
    .opd-stat-number {
        font-size: 1.6rem;
    }
    .opd-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .opd-stat-card {
        padding: 1rem;
    }
    .opd-specialty-item {
        padding: 1rem;
    }
    .doctor-card {
        padding: 1.5rem 1rem;
    }
    .booking-feature {
        font-size: 0.9rem;
    }
    .opd-cta-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
} */

/* ============================================ */
/* ========== OPD REGISTRATION STYLES ========== */
/* ============================================ */

/* ----- OPD REGISTRATION ----- */
.opd-registration {
    padding: 5rem 0;
    background: #f7faf9;
}

.registration-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--wc-green), var(--wc-navy));
    opacity: 0;
    transition: 0.4s;
}

.registration-card:hover::before {
    opacity: 1;
}

.registration-new {
    border-color: rgba(11, 138, 78, 0.1);
}

.registration-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(11, 138, 78, 0.08);
    border-color: var(--wc-green);
}

.registration-existing {
    border-color: rgba(10, 42, 94, 0.1);
}

.registration-existing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 42, 94, 0.08);
    border-color: var(--wc-navy);
}

.registration-icon {
    width: 80px;
    height: 80px;
    background: var(--wc-green-soft);
    color: var(--wc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 1.5rem;
    transition: 0.3s;
}

.registration-card:hover .registration-icon {
    transform: scale(1.05) rotate(-3deg);
}

.registration-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.registration-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4a5568;
}

.registration-features li i {
    font-size: 1.1rem;
}

.registration-quick {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(10, 42, 94, 0.06);
    transition: 0.3s;
}

.registration-quick:hover {
    border-color: var(--wc-green);
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.06);
}

/* ----- OPD STATS (duplicate safe) ----- */
.opd-stats {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 138, 78, 0.06);
}

.opd-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #f7faf9;
    border-radius: 20px;
    transition: 0.3s;
}

.opd-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.06);
}

.opd-stat-icon {
    font-size: 2.5rem;
    color: var(--wc-green);
    background: var(--wc-green-soft);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.opd-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--wc-navy);
    line-height: 1;
}

.opd-stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

/* ----- OPD TIMING (duplicate safe) ----- */
.opd-timing {
    padding: 4rem 0;
    background: #f7faf9;
}

.opd-timing-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
    border: 1px solid rgba(10, 42, 94, 0.06);
    transition: 0.3s;
}

.opd-timing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.06);
}

.opd-timing-icon {
    width: 60px;
    height: 60px;
    background: var(--wc-navy-soft);
    color: var(--wc-navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.opd-timing-slot {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 42, 94, 0.05);
}

.opd-timing-slot:last-child {
    border-bottom: none;
}

.opd-day {
    font-weight: 600;
    color: #2d3748;
}

.opd-time {
    color: var(--wc-navy);
    font-weight: 500;
}

/* ----- OPD SPECIALTIES (duplicate safe) ----- */
.opd-specialties {
    padding: 5rem 0;
    background: #ffffff;
}

.opd-specialty-item {
    text-align: center;
    padding: 1.5rem;
    background: #f7faf9;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 42, 94, 0.05);
    height: 100%;
}

.opd-specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.06);
    border-color: var(--wc-green);
}

.opd-specialty-icon {
    width: 55px;
    height: 55px;
    background: var(--wc-green-soft);
    color: var(--wc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 0.8rem;
    transition: 0.3s;
}

.opd-specialty-item:hover .opd-specialty-icon {
    background: var(--wc-green);
    color: #fff;
    transform: scale(1.05);
}

/* ----- OPD DOCTORS (duplicate safe) ----- */
.opd-doctors {
    padding: 5rem 0;
    background: #f7faf9;
}

.doctor-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid rgba(10, 42, 94, 0.05);
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 42, 94, 0.06);
}

.doctor-avatar {
    font-size: 4rem;
    color: var(--wc-green);
}

/* ----- OPD BOOKING (duplicate safe) ----- */
.opd-booking {
    padding: 5rem 0;
    background: #ffffff;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #2d3748;
}

.booking-card {
    background: #f7faf9;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(10, 42, 94, 0.06);
}

.booking-step-icon {
    width: 40px;
    height: 40px;
    background: var(--wc-green-soft);
    color: var(--wc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ----- OPD CTA (duplicate safe) ----- */
.opd-cta {
    padding: 4rem 0;
    background: var(--wc-navy);
}

.opd-cta-wrapper {
    background: linear-gradient(135deg, var(--wc-green), var(--wc-navy));
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(11, 138, 78, 0.2);
}

/* ----- OPD RESPONSIVE (duplicate safe) ----- */
@media (max-width: 991px) {
    .opd-hero {
        padding: 4rem 0 3rem;
    }
    .opd-hero-badge {
        bottom: -10px;
        right: -10px;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .opd-timing {
        padding: 3rem 0;
    }
    .opd-timing-card {
        padding: 1.8rem;
    }
    .opd-specialties,
    .opd-doctors,
    .opd-booking,
    .opd-registration {
        padding: 3rem 0;
    }
    .registration-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .opd-hero-stat {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    .opd-stat-number {
        font-size: 2rem;
    }
    .opd-stat-icon {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    .opd-timing-card {
        padding: 1.5rem;
    }
    .opd-timing-slot {
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }
    .booking-card {
        padding: 1.5rem;
    }
    .opd-cta-wrapper {
        padding: 2rem;
        border-radius: 25px;
    }
    .registration-card {
        padding: 1.8rem 1.2rem;
    }
    .registration-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .opd-hero {
        padding: 3rem 0 2rem;
    }
    .opd-hero-badge {
        display: none;
    }
    .opd-stat-number {
        font-size: 1.6rem;
    }
    .opd-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .opd-stat-card {
        padding: 1rem;
    }
    .opd-specialty-item {
        padding: 1rem;
    }
    .doctor-card {
        padding: 1.5rem 1rem;
    }
    .booking-feature {
        font-size: 0.9rem;
    }
    .opd-cta-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .registration-card {
        padding: 1.5rem 1rem;
    }
    .registration-features li {
        font-size: 0.85rem;
    }
    .registration-quick {
        padding: 1.5rem;
    }
}

/* ----- LOGIN ICON ----- */
.login-icon {
    font-size: 5rem;
    color: var(--wc-navy);
    opacity: 0.8;
}

/* ----- MODAL INPUT GROUP FIX ----- */
.modal .input-group-text {
    border-radius: 12px 0 0 12px;
}

.modal .form-control,
.modal .form-select {
    border-radius: 0 12px 12px 0;
}

.modal .form-control:focus,
.modal .form-select:focus {
    border-color: var(--wc-navy);
    box-shadow: 0 0 0 0.2rem rgba(10, 42, 94, 0.1);
}

/* ----- ALERT STYLING ----- */
.modal .alert {
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

/* ----- RESPONSIVE MODAL ----- */
@media (max-width: 576px) {
    .modal-header {
        padding: 1rem !important;
    }
    .modal-body {
        padding: 1rem !important;
    }
    .modal-footer {
        padding: 1rem !important;
    }
    .modal .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* ============================================ */
/* ========== PHARMACY PAGE STYLES ========== */
/* ============================================ */

/* ----- PHARMACY HERO ----- */
.pharmacy-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(145deg, #ffffff 0%, #f0f9f4 100%);
    position: relative;
    overflow: hidden;
}

.pharmacy-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 42, 94, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pharmacy-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #2d3748;
    background: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.pharmacy-hero-image {
    position: relative;
}

.pharmacy-hero-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--wc-green);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 138, 78, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ----- PHARMACY STATS ----- */
.pharmacy-stats {
    padding: 3rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 138, 78, 0.06);
}

.pharmacy-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: #f7faf9;
    border-radius: 20px;
    transition: 0.3s;
}

.pharmacy-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 42, 94, 0.06);
}

.pharmacy-stat-icon {
    font-size: 2.5rem;
    color: var(--wc-green);
    background: var(--wc-green-soft);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.pharmacy-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--wc-navy);
    line-height: 1;
}

.pharmacy-stat-label {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

/* ----- PHARMACY SERVICES ----- */
.pharmacy-services {
    padding: 5rem 0;
    background: #f7faf9;
}

.pharmacy-service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    border: 1px solid rgba(10, 42, 94, 0.05);
    position: relative;
    overflow: hidden;
}

.pharmacy-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--wc-green), var(--wc-navy));
    opacity: 0;
    transition: 0.4s;
}

.pharmacy-service-card:hover::before {
    opacity: 1;
}

.pharmacy-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 42, 94, 0.08);
    border-color: rgba(11, 138, 78, 0.12);
}

.pharmacy-service-icon {
    width: 60px;
    height: 60px;
    background: var(--wc-green-soft);
    color: var(--wc-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: 0.3s;
}

.pharmacy-service-card:hover .pharmacy-service-icon {
    transform: scale(1.05) rotate(2deg);
}

.pharmacy-service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.pharmacy-service-features li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.pharmacy-service-features li i {
    color: var(--wc-navy);
    font-size: 0.8rem;
}