/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #6B2D5B;
    --primary-dark: #4E1F43;
    --primary-darker: #3A1632;
    --primary-light: #f8eef5;
    --primary-glow: rgba(107, 45, 91, 0.15);
    --accent: #3D6B45;
    --accent-light: #edf5ee;
    --accent-glow: rgba(61, 107, 69, 0.15);
    --secondary: #C87D9E;
    --secondary-light: #f9eff4;
    --text: #1a1a2e;
    --text-light: #555;
    --text-muted: #888;
    --white: #ffffff;
    --bg-light: #faf7f9;
    --bg-section: #fdfafc;
    --border-light: #f0e6ed;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 30px rgba(107, 45, 91, 0.2);
    --shadow-accent: 0 8px 30px rgba(61, 107, 69, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
    width:100%;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 28px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-bar-left span i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.top-bar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-bar-right a {
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-right a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px) scale(1.05);
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 52px;
    height: 52px;


    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    transition: var(--transition);
    padding: 3px;
}


.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text);
    font-size: 0.92rem;
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-block;
}

.nav-links li a:not(.btn-appointment):hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-links li a:not(.btn-appointment).active {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-appointment {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-primary);
    margin-left: 8px;
}

.btn-appointment:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 35px rgba(107, 45, 91, 0.4) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--primary-light);
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(15, 5, 12, 0.92) 0%, rgba(30, 10, 25, 0.88) 40%, rgba(50, 18, 40, 0.85) 100%), url('../images/banner.jpg') center/cover no-repeat;
height: calc(100vh - 130px);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 125, 158, 0.15) 0%, transparent 65%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
    border-radius: 50%;
}

@keyframes heroGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    color: rgba(200, 125, 158, 0.2);
    font-size: 1.4rem;
    animation: particleFloat 12s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 5%; font-size: 1.6rem; animation-duration: 14s; color: rgba(200, 125, 158, 0.25); }
.particle-2 { top: 20%; left: 15%; font-size: 1.2rem; animation-duration: 10s; animation-delay: 1s; color: rgba(61, 107, 69, 0.25); }
.particle-3 { top: 8%; left: 30%; font-size: 1rem; animation-duration: 8s; animation-delay: 2s; color: rgba(255, 255, 255, 0.12); }
.particle-4 { top: 60%; left: 8%; font-size: 1.8rem; animation-duration: 16s; animation-delay: 3s; color: rgba(200, 125, 158, 0.18); }
.particle-5 { top: 75%; left: 20%; font-size: 1.3rem; animation-duration: 11s; animation-delay: 0.5s; color: rgba(255, 255, 255, 0.1); }
.particle-6 { top: 15%; right: 25%; font-size: 1.5rem; animation-duration: 13s; animation-delay: 4s; color: rgba(61, 107, 69, 0.2); }
.particle-7 { top: 40%; right: 8%; font-size: 1.4rem; animation-duration: 9s; animation-delay: 1.5s; color: rgba(200, 125, 158, 0.15); }
.particle-8 { top: 30%; left: 45%; font-size: 1.6rem; animation-duration: 15s; animation-delay: 2.5s; color: rgba(255, 255, 255, 0.08); }
.particle-9 { bottom: 20%; right: 15%; font-size: 1.1rem; animation-duration: 12s; animation-delay: 3.5s; color: rgba(61, 107, 69, 0.2); }
.particle-10 { bottom: 35%; left: 35%; font-size: 0.9rem; animation-duration: 10s; animation-delay: 5s; color: rgba(255, 255, 255, 0.1); }
.particle-11 { top: 50%; left: 25%; font-size: 1.7rem; animation-duration: 18s; animation-delay: 1s; color: rgba(200, 125, 158, 0.12); }
.particle-12 { bottom: 10%; left: 50%; font-size: 1.3rem; animation-duration: 14s; animation-delay: 6s; color: rgba(255, 255, 255, 0.1); }

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.4; }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-40px) translateX(-5px) rotate(180deg); opacity: 0.5; }
    75% { transform: translateY(-15px) translateX(-10px) rotate(270deg); opacity: 0.9; }
    100% { transform: translateY(0) translateX(0) rotate(360deg); opacity: 0.4; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    position: relative;
    z-index: 2;
    min-height: 85vh;
    padding-bottom: 0;
}

.hero-content {
    color: var(--white);
    align-self: center;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #4ade80;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h2 .highlight {
    color: var(--secondary);
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 12px;
    opacity: 1;
    text-shadow: none;
}

.hero-content .credentials {
    font-size: 0.95rem;
    opacity: 1;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.8px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content > p {
    font-size: 1.1rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 38px;
    
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(200, 125, 158, 0.35);
    letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
    background: #d48daa;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 125, 158, 0.5);
}

.btn-hero-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 55px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(200, 125, 158, 0.3);
}

.stat-item .label {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 4px;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    align-self: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-image-circle {
    width: 100%;
    height: auto;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    border: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    position: relative;
    box-shadow: none;
}

.hero-image-circle::before {
    display: none;
}

.hero-image-circle img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    object-position: bottom;
    display: block;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

.hero-image-circle .placeholder-icon {
    font-size: 9rem;
    opacity: 0.4;
    color: var(--white);
}

.floating-card {
    position: relative;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    border: 1px solid var(--border-light);
}

.hero-cards-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    justify-content: center;
    position: absolute;
  bottom: 30px;
  z-index: 1;
  left:0;
  right:0;
}

.floating-card.card-1 {
    animation: none;
}

.floating-card.card-2 {
    animation: none;
}

.floating-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-card .card-icon.green {
    background: var(--primary-light);
    color: var(--primary);
}

.floating-card .card-icon.gold {
    background: var(--accent-light);
    color: var(--accent);
}

.floating-card .card-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.floating-card .card-text strong {
    display: block;
    color: var(--text);
    font-size: 0.92rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ===== BENEFITS OF HOMEOPATHY ===== */
.benefits-section {
    padding: 110px 0;
    background: linear-gradient(160deg, #0a1a0f 0%, #0f2518 30%, #152d1c 60%, #0a1a0f 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section .container {
    position: relative;
    z-index: 1;
}

/* Background decorations */
.benefits-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.benefits-glow {
    position: absolute;
    border-radius: 50%;
}

.benefits-glow-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(61, 107, 69, 0.15), transparent 70%);
}

.benefits-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(107, 45, 91, 0.1), transparent 70%);
}

.benefits-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.03);
    font-size: 4rem;
    animation: benefitFloat 8s ease-in-out infinite;
}

.benefits-float-1 {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.benefits-float-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2.5s;
    font-size: 3rem;
}

.benefits-float-3 {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
    font-size: 3.5rem;
}

@keyframes benefitFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.benefit-card {
    text-align: center;
    padding: 44px 30px 38px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(102, 255, 153, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform: perspective(800px) translateY(-12px) rotateX(3deg);
    transform-style: preserve-3d;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(61, 107, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3D6B45, #66ff99, #3D6B45);
    background-size: 200% 100%;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(61, 107, 69, 0.08), transparent 60%);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: perspective(800px) translateY(-16px) rotateX(4deg);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(61, 107, 69, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-color: rgba(102, 255, 153, 0.25);
    background: rgba(255, 255, 255, 0.09);
}

.benefit-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3D6B45, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(61, 107, 69, 0.4);
    transform: scale(1.12) translateZ(20px);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.18) translateZ(30px);
    box-shadow: 0 14px 35px rgba(61, 107, 69, 0.5);
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card:hover {
        transform: translateY(-8px);
    }
}

/* ===== MEDICINE KITS SECTION (E-Commerce) ===== */
.medicine-kits {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfafc 0%, #f5eef3 100%);
    position: relative;
    overflow: hidden;
}

.medicine-kits::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 45, 91, 0.05), transparent);
    pointer-events: none;
}

.kit-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.kit-tab {
    padding: 10px 22px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    background: var(--white);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.kit-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.kit-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.kits-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.kit-card {
    display: flex;
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(107, 45, 91, 0.06);
}

.kit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(107, 45, 91, 0.12);
}

.kit-card.hidden {
    display: none;
}

/* Product Image */
.kit-card-image {
    width: 320px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #f9f5f8;
}

.kit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kit-card:hover .kit-card-image img {
    transform: scale(1.05);
}

.kit-offer-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
    animation: pulse-tag 2s infinite;
}

@keyframes pulse-tag {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.kit-offer-tag i {
    margin-right: 4px;
}

/* Product Info */
.kit-card-info {
    flex: 1;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kit-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.kit-category-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kit-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.kit-rating i {
    color: #f9a825;
    font-size: 0.8rem;
}

.kit-rating span {
    margin-left: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.kit-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.kit-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}

.kit-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kit-includes li {
    padding: 4px 12px;
    background: #f8f4f7;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Pricing */
.kit-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.kit-offer-price {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.kit-original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.kit-save-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: #fff;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Action Buttons */
.kit-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-buy-now {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(107, 45, 91, 0.35);
}

.btn-buy-now i {
    font-size: 1rem;
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-add-cart:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-add-cart i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .kit-card {
        flex-direction: column;
    }
    
    .kit-card-image {
        width: 100%;
        min-height: 220px;
        max-height: 260px;
    }
    
    .kit-card-info {
        padding: 22px 20px;
    }
    
    .kit-card-info h3 {
        font-size: 1.2rem;
    }
    
    .kit-offer-price {
        font-size: 1.5rem;
    }
    
    .kit-actions {
        flex-direction: column;
    }
    
    .btn-buy-now,
    .btn-add-cart {
        width: 100%;
        justify-content: center;
    }
    
    .kit-tabs {
        gap: 6px;
    }
    
    .kit-tab {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
}

/* ===== HOMEOPATHY HINDI SECTION ===== */
.homeopathy-hindi {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f7 0%, #fdf9fc 100%);
}

.hindi-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hindi-text h2 {
    font-size: 2.4rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hindi-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}

.hindi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.hindi-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.hindi-feature i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hindi-image {
    position: relative;
}

.hindi-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(107, 45, 91, 0.15);
}

.hindi-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(107, 45, 91, 0.3);
}

.hindi-badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.hindi-badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hindi-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hindi-text h2 {
        font-size: 1.8rem;
    }

    .hindi-features {
        grid-template-columns: 1fr;
    }

    .hindi-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom-bar {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    display: flex;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    filter: drop-shadow(0 -4px 20px rgba(0,0,0,0.25));
}

.sticky-bottom-bar.visible {
    bottom: 0;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.4);
}

.sticky-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0,0,0,0.15);
}

.sticky-btn i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

.sticky-call {
    background: linear-gradient(180deg, #ffc844 0%, #e5a820 50%, #d4960a 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.3);
    box-shadow: inset 0 2px 3px rgba(255,255,255,0.3), inset 0 -2px 3px rgba(0,0,0,0.15);
}

.sticky-call:hover {
    background: linear-gradient(180deg, #ffd466 0%, #f5b731 50%, #e5a820 100%);
    transform: translateY(-2px);
}

.sticky-book {
    background: linear-gradient(180deg, #6b85ff 0%, #4a6cf7 50%, #3555d4 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: inset 0 2px 3px rgba(255,255,255,0.2), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.sticky-book:hover {
    background: linear-gradient(180deg, #839cff 0%, #5a7cff 50%, #4a6cf7 100%);
    transform: translateY(-2px);
}

.sticky-whatsapp {
    background: linear-gradient(180deg, #34eb7a 0%, #25d366 50%, #1aaa50 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: inset 0 2px 3px rgba(255,255,255,0.25), inset 0 -2px 3px rgba(0,0,0,0.15);
}

.sticky-whatsapp:hover {
    background: linear-gradient(180deg, #4cff8f 0%, #34eb7a 50%, #25d366 100%);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .sticky-btn span {
        font-size: 0.8rem;
    }

    .sticky-btn {
        padding: 14px 10px;
        gap: 6px;
        font-size: 0.9rem;
    }
}

/* ===== TREATMENT SLIDER ===== */
/* ===== TREATMENT SLIDER (Rich Design) ===== */
.treatment-slider {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #0f0a12 0%, #1a1025 50%, #0f0a12 100%);
    position: relative;
    overflow: hidden;
}

.treatment-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(107, 45, 91, 0.15), transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 125, 158, 0.1), transparent 60%);
    pointer-events: none;
}

.treatment-slider .section-title .subtitle {
    color: var(--secondary);
}

.treatment-slider .section-title h2 {
    color: #fff;
}

.treatment-slider .section-title h2 span {
    background: linear-gradient(135deg, var(--secondary), #e8a0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.treatment-slider .section-title p {
    color: rgba(255, 255, 255, 0.5);
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slides-container {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    border-radius: 20px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Background Patterns */
.slide-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.slide-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.06;
}

.slide-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.04;
}

/* Slide Theme Colors */
.slide[data-theme="skin"] {
    background: linear-gradient(135deg, #1a0808 0%, #3d1515 40%, #6b2525 100%);
}
.slide[data-theme="skin"] .slide-bg-pattern::before { background: #ff9966; }
.slide[data-theme="skin"] .slide-bg-pattern::after { background: #ff6633; }

.slide[data-theme="pcos"] {
    background: linear-gradient(135deg, #081a0d 0%, #153d20 40%, #256b35 100%);
}
.slide[data-theme="pcos"] .slide-bg-pattern::before { background: #66ff99; }
.slide[data-theme="pcos"] .slide-bg-pattern::after { background: #33cc66; }

.slide[data-theme="kidney"] {
    background: linear-gradient(135deg, #08101a 0%, #152a3d 40%, #254a6b 100%);
}
.slide[data-theme="kidney"] .slide-bg-pattern::before { background: #66b3ff; }
.slide[data-theme="kidney"] .slide-bg-pattern::after { background: #3399ff; }

.slide[data-theme="child"] {
    background: linear-gradient(135deg, #0a0820 0%, #1a1550 40%, #2a2570 100%);
}
.slide[data-theme="child"] .slide-bg-pattern::before { background: #a088ff; }
.slide[data-theme="child"] .slide-bg-pattern::after { background: #7766dd; }

.slide[data-theme="acne"] {
    background: linear-gradient(135deg, #1a0a10 0%, #3d1525 40%, #6b2540 100%);
}
.slide[data-theme="acne"] .slide-bg-pattern::before { background: #ff6699; }
.slide[data-theme="acne"] .slide-bg-pattern::after { background: #ff3366; }

/* Slide Inner Layout */
.slide-inner {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 30px;
    padding: 40px 44px;
    height: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column - Treatment Info */
.slide-left-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slide-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.slide[data-theme="skin"] .slide-label { background: rgba(255, 153, 102, 0.15); color: #ff9966; }
.slide[data-theme="pcos"] .slide-label { background: rgba(102, 255, 153, 0.15); color: #66ff99; }
.slide[data-theme="kidney"] .slide-label { background: rgba(102, 179, 255, 0.15); color: #66b3ff; }
.slide[data-theme="child"] .slide-label { background: rgba(160, 136, 255, 0.15); color: #a088ff; }
.slide[data-theme="acne"] .slide-label { background: rgba(255, 102, 153, 0.15); color: #ff6699; }

.slide-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-family: var(--font-heading);
    font-style: italic;
}

.slide-condition {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
}

.slide[data-theme="skin"] .slide-condition { color: #ff9966; text-shadow: 0 0 40px rgba(255, 153, 102, 0.2); }
.slide[data-theme="pcos"] .slide-condition { color: #66ff99; text-shadow: 0 0 40px rgba(102, 255, 153, 0.2); }
.slide[data-theme="kidney"] .slide-condition { color: #66b3ff; text-shadow: 0 0 40px rgba(102, 179, 255, 0.2); }
.slide[data-theme="child"] .slide-condition { color: #a088ff; text-shadow: 0 0 40px rgba(160, 136, 255, 0.2); }
.slide[data-theme="acne"] .slide-condition { color: #ff6699; text-shadow: 0 0 40px rgba(255, 102, 153, 0.2); }

.slide-location {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slide-location i {
    font-size: 0.75rem;
}

.slide-doctor-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.slide-doctor-mini img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: #fff;
    padding: 2px;
}

.slide-doctor-mini strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.slide-doctor-mini span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
}

/* Center Column - Treatment Image */
.slide-center-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-treatment-visual {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
}

.slide[data-theme="skin"] .slide-treatment-visual { border: 4px solid rgba(255, 153, 102, 0.3); }
.slide[data-theme="pcos"] .slide-treatment-visual { border: 4px solid rgba(102, 255, 153, 0.3); }
.slide[data-theme="kidney"] .slide-treatment-visual { border: 4px solid rgba(102, 179, 255, 0.3); }
.slide[data-theme="child"] .slide-treatment-visual { border: 4px solid rgba(160, 136, 255, 0.3); }
.slide[data-theme="acne"] .slide-treatment-visual { border: 4px solid rgba(255, 102, 153, 0.3); }

.slide-treatment-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slide:hover .slide-treatment-visual img {
    transform: scale(1.08);
}

.slide-treatment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.treatment-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: rgba(46, 204, 113, 0.9);
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Right Column - Patient Card */
.slide-right-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-patient-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    max-width: 340px;
}

.slide-patient-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 5rem;
    font-family: Georgia, serif;
    opacity: 0.06;
    color: #fff;
    line-height: 1;
}

.patient-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.patient-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.patient-info h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.patient-loc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 4px;
}

.patient-loc i {
    font-size: 0.65rem;
}

.patient-rating {
    display: flex;
    gap: 3px;
    margin: 10px 0;
}

.patient-rating i {
    color: #f9a825;
    font-size: 0.8rem;
}

.patient-feedback {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.patient-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
}

.result-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.result-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--secondary);
    width: 30px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(200, 125, 158, 0.5);
}

/* Slider Responsive */
@media (max-width: 1024px) {
    .slide-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 30px;
    }

    .slide-center-col {
        display: none;
    }

    .slide-condition {
        font-size: 2rem;
    }

    .slides-container {
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .treatment-slider {
        padding: 70px 0 50px;
    }

    .slides-container {
        min-height: auto;
    }

    .slide-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }

    .slide-center-col {
        display: flex;
    }

    .slide-treatment-visual {
        width: 160px;
        height: 160px;
    }

    .slide-condition {
        font-size: 1.8rem;
    }

    .slide-patient-card {
        max-width: 100%;
    }

    .slide-intro {
        font-size: 0.9rem;
    }

    .slider-controls {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .slide-condition {
        font-size: 1.5rem;
    }

    .slide-inner {
        padding: 20px 16px;
    }

    .slide-treatment-visual {
        width: 130px;
        height: 130px;
    }

    .patient-feedback {
        font-size: 0.82rem;
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: 0;
}

.about-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 4/4;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(107, 45, 91, 0.15);
    z-index: 1;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-exp-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: linear-gradient(135deg, var(--accent), #2d5033);
    color: var(--white);
    padding: 22px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 25px rgba(61, 107, 69, 0.35);
    z-index: 2;
}

.about-exp-badge .years {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-exp-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 500;
}

.about-content {
    padding-top: 10px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 12px;
}

.about-content h2 span {
    color: var(--primary);
    font-style: italic;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 14px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    background: var(--light-bg);
    border: 1px solid rgba(107, 45, 91, 0.06);
    transition: var(--transition);
}

.about-highlights li:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(107, 45, 91, 0.1);
    transform: translateX(4px);
}

.about-highlights li .check {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(107, 45, 91, 0.3);
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 45, 91, 0.4);
}

@media (max-width: 1024px) {
    .about .container {
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-image-box {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 450px;
        margin: 0 auto;
        padding: 15px;
    }
    
    .about-image-box {
        height: 400px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ===== QUALIFICATIONS ===== */
.qualifications {
    padding: 110px 0;
    background: var(--bg-section);
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.qual-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.qual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 0 4px 4px 0;
}

.qual-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.4;
    transition: var(--transition);
}

.qual-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.qual-card:hover::after {
    transform: scale(1.3);
    opacity: 0.6;
}

.qual-card .degree {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.qual-card .full-name {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.qual-card .institute {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.qual-card .institute .icon {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience {
    padding: 110px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent), var(--primary));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 0 0 50px 0;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    align-self: flex-start;
    justify-content: flex-start;
    padding-right: 55px;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    padding-left: 55px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 5px var(--primary-light), var(--shadow);
    z-index: 2;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--secondary);
    box-shadow: 0 0 0 5px var(--secondary-light), var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.timeline-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-card .position {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.timeline-card .institution {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-card .duration {
    font-size: 0.84rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.timeline-card .duration i {
    color: var(--secondary);
}

.timeline-card .period {
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 500;
    padding: 4px 12px;
    background: var(--primary-light);
    display: inline-block;
    border-radius: 50px;
}

.timeline-total {
    text-align: center;
    margin-top: 40px;
    padding: 22px 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: var(--shadow-primary);
}

.timeline-total-wrapper {
    text-align: center;
}

/* ===== SERVICES ===== */
.services {
    padding: 110px 0;
    background: var(--bg-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--primary-light), #f3e4f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed var(--primary-light);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-primary);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    animation: rotate 6s linear infinite;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== TREATMENTS BANNER (Premium Conditions Grid) ===== */
.treatments-banner {
    padding: 100px 0;
    background: var(--light-bg);
}

.treatments-banner .section-title .subtitle {
    color: var(--primary);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.condition-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(107, 45, 91, 0.08);
    border: 1px solid rgba(107, 45, 91, 0.06);
    transition: all 0.4s ease;
}

.condition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(107, 45, 91, 0.15);
}

.condition-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.condition-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.condition-card:hover .condition-img img {
    transform: scale(1.1);
}

.condition-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.condition-content {
    padding: 20px 22px 24px;
}

.condition-content h4 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.condition-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.condition-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.condition-readmore i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.condition-readmore:hover {
    color: var(--secondary);
}

.condition-readmore:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .condition-img {
        height: 150px;
    }
}

/* ===== TREATMENT GALLERY ===== */
.treatment-gallery {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(107, 45, 91, 0.9));
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    margin-top: 16px;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials .section-title .subtitle {
    color: var(--secondary);
    border-color: rgba(200, 125, 158, 0.3);
}

.testimonials .section-title h2 {
    color: #fff;
}

.testimonials .section-title h2 span {
    color: var(--secondary);
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    position: relative;
    margin-top: 30px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #f5c518;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 125, 158, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 2rem;
    color: var(--secondary);
}

.testimonial-info strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--secondary);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 24px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
}

/* ===== PUBLICATIONS ===== */
.publications {
    padding: 110px 0;
    background: linear-gradient(160deg, #0f0a12 0%, #1a1025 40%, #251535 70%, #0f0a12 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.pub-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.pub-bg-circle {
    position: absolute;
    border-radius: 50%;
}

.pub-bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(107, 45, 91, 0.12), transparent 70%);
}

.pub-bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(200, 125, 158, 0.08), transparent 70%);
}

.pub-bg-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(200, 125, 158, 0.06), transparent);
}

.pub-bg-line-1 {
    width: 1px;
    height: 100%;
    top: 0;
    left: 20%;
}

.pub-bg-line-2 {
    width: 1px;
    height: 100%;
    top: 0;
    right: 25%;
}

.publications .container {
    position: relative;
    z-index: 1;
}

.pub-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pub-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 38px 32px 28px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.pub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.pub-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(107, 45, 91, 0.03), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pub-card:hover {
    box-shadow: 0 16px 50px rgba(107, 45, 91, 0.2);
    border-color: rgba(200, 125, 158, 0.2);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
}

.pub-card:hover::before {
    transform: scaleX(1);
}

.pub-card:hover::after {
    opacity: 1;
}

.pub-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(107, 45, 91, 0.2), rgba(200, 125, 158, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    border: 1px solid rgba(200, 125, 158, 0.1);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.pub-card:hover .pub-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(107, 45, 91, 0.3);
}

.pub-card .pub-type {
    display: inline-block;
    background: rgba(200, 125, 158, 0.12);
    color: var(--secondary);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 1px solid rgba(200, 125, 158, 0.1);
    position: relative;
    z-index: 1;
}

.pub-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.pub-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.pub-card-footer {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pub-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.pub-card-footer span i {
    color: var(--secondary);
    font-size: 0.72rem;
}

/* ===== NGO SECTION ===== */
.ngo {
    padding: 110px 0;
    background: var(--bg-section);
}

.ngo .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ngo-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.ngo-content .ngo-tagline {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 22px;
    letter-spacing: 0.3px;
}

.ngo-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.02rem;
    line-height: 1.8;
}

.ngo-activities {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ngo-activity {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.ngo-activity:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.ngo-activity .act-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-light), #d5e8d8);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.ngo-activity:hover .act-icon {
    background: var(--accent);
    color: var(--white);
}

.ngo-activity span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
}

.ngo-image {
    position: relative;
}

.ngo-image-box {
    width: 100%;
    height:700px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-light), #c8deca);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ngo-image-box .placeholder-icon {
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.3;
}

/* ===== VOLUNTEER / PARTICIPATION ===== */
.volunteer-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    perspective: 1000px;
}

.volunteer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/volunteer-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.volunteer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(10, 2, 8, 0.92) 0%, rgba(78, 31, 67, 0.82) 40%, rgba(107, 45, 91, 0.7) 70%, rgba(58, 22, 50, 0.88) 100%);
    z-index: 1;
}

.volunteer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 125, 158, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatGlow 8s ease-in-out infinite;
}

.volunteer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107, 45, 91, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.1); }
}

.volunteer-section .container {
    position: relative;
    z-index: 2;
}

.volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.volunteer-text {
    color: #fff;
}

.volunteer-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 125, 158, 0.15), rgba(107, 45, 91, 0.2));
    border: 1px solid rgba(200, 125, 158, 0.5);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(200, 125, 158, 0.15);
    backdrop-filter: blur(10px);
}

.volunteer-text h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.volunteer-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.volunteer-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.volunteer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.volunteer-list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(200, 125, 158, 0.2);
    transform: translateX(5px);
}

.volunteer-list li i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(200, 125, 158, 0.4);
}

.volunteer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.volunteer-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 240, 245, 0.95) 100%);
    border-radius: 16px;
    padding: 24px 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateZ(0) rotateX(0) rotateY(0);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.volunteer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.volunteer-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 125, 158, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.volunteer-card:hover {
    transform: translateY(-8px) translateZ(20px) rotateX(2deg);
    box-shadow: 
        0 20px 50px rgba(107, 45, 91, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(200, 125, 158, 0.3);
}

.volunteer-card:hover::before {
    opacity: 1;
}

.volunteer-card:hover::after {
    opacity: 1;
}

.volunteer-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 14px;
    box-shadow: 
        0 6px 16px rgba(107, 45, 91, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateZ(10px);
    transition: all 0.4s ease;
}

.volunteer-card:hover .volunteer-card-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateZ(15px) scale(1.05);
    box-shadow: 0 8px 20px rgba(200, 125, 158, 0.4);
}

.volunteer-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.volunteer-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .volunteer-content {
        gap: 40px;
    }
    
    .volunteer-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .volunteer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .volunteer-cards {
        grid-template-columns: 1fr 1fr;
    }
    
    .volunteer-text h2 {
        font-size: 1.8rem;
    }
}

/* ===== CONTACT / APPOINTMENT ===== */
.contact {
    padding: 110px 0;
    background: var(--white);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap:15px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding:15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    background: var(--bg-light);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(107, 45, 91, 0.1);
}

.contact-item .ci-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.contact-item:hover .ci-icon {
    transform: scale(1.05);
}

.contact-item .ci-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-item .ci-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form h3 i {
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    font-family: inherit;
    box-shadow: var(--shadow-primary);
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 45, 91, 0.35);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #2d1526 0%, #1a0e15 100%);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-about .footer-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  
}



.footer-about .footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(107, 45, 91, 0.3);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    transform: translateX(6px);
    color: var(--primary);
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    font-size: 0.84rem;
    opacity: 0.5;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom:170px;
    right: 35px;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(107, 45, 91, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content > p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 340px;
        height: auto;
    }

    .ngo .container,
    .contact .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 65px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 0;
        padding-left: 65px;
    }

    .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 90px 30px 30px;
        gap: 8px;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        border-left: 1px solid var(--border-light);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 12px 18px;
        width: 100%;
        display: block;
        border-radius: var(--radius-sm);
    }

    .btn-appointment {
        margin-left: 0 !important;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-content h2 {
        font-size: 2.4rem;
    }

    .hero-image-wrapper {
        width: 280px;
        height: auto;
    }

    .floating-card.card-1 {
        right: -10px;
        top: 10px;
        padding: 12px 16px;
    }

    .floating-card.card-2 {
        left: -10px;
        bottom: 30px;
        padding: 12px 16px;
    }

    .section-title h2 {
        font-size: 2.1rem;
    }

    .about-content h2,
    .ngo-content h2,
    .contact-info h2 {
        font-size: 1.9rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .qual-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-item .number {
        font-size: 1.8rem;
    }

    .pub-cards {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-image-wrapper {
        width: 230px;
        height: auto;
    }

    .hero-content .credentials {
        font-size: 0.82rem;
    }

    .about, .qualifications, .experience, .services, .publications, .ngo, .contact {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}
