:root {
    --primary-purple: #9333ea;
    --primary-pink: #c026d3;
    --rose-pink: #C06480;
    --gradient-purple-pink: linear-gradient(to right, #9333ea, #db2777, #9333ea);
    --gradient-purple-pink-br: linear-gradient(135deg, #9333ea, #db2777);
    --heading-color: #4B0055;
    --text-gray: #6c757d;
    --dark-purple: #4B0055;
    --light-purple: #f8f5ff;
    --light-pink: #fef5fb;
    --gradient-purple: #8A2BE2;
    --gradient-pink: #C13584;
    --border-gray: #E5E7EB;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-purple-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

/* Gradient Border */
.gradient-border {
    border-left: 4px solid var(--primary-purple);
}
.gradient-border-pink {
    border-left: 4px solid var(--primary-pink);
}
.gradient-border-inner {
    background: white;
    padding: 24px 32px;
    border-radius: 15px;
}


/* Gradient Buttons */
.btn-gradient {
    background: var(--gradient-purple-pink);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
    color: white;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 0px;
}

.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
    color: #374151 !important;
    padding: 24px 18px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

.dropdown-menu {
    border: 3px solid;
    border-color: red;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.625rem 1rem;
    transition: all 0.3s ease;
}
.dropdown-item:hover {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(219, 39, 119, 0.1));
    color: var(--primary-purple);
}
.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 26px;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: rgba(255,255,255,.14);;
  transform:translateX(2px); 
}
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}

.section{
    padding: 50px 0px;
}

.counter-area{
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.03), rgba(219, 39, 119, 0.03));
}
.couter-area-title{
    font-size: 48px;
    font-weight: 700;
    color: #9810fa;
}

/* Hero Section */
.hero-section {
    align-items: center;
    padding: 100px 0px 60px 0px;
}

.hero-image {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.floating-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

/* About Section */

.small-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 2rem;
}

.feature-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), rgba(219, 39, 119, 0.05));
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-purple-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(88, 28, 135, 0.2), transparent);
}

.about-floating-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 10;
}

.about-stat-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-purple-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.decorative-blob {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(219, 39, 119, 0.4));
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

/* Services Section */
.service-card {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
    border-color: var(--primary-purple);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-purple-pink);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Why Choose Us Section */
.why-section {
    background: linear-gradient(to bottom, rgba(147, 51, 234, 0.03), white);
}

.reason-card {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.reason-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
}

.quote-icon {
    color: var(--primary-purple);
    opacity: 0.2;
    font-size: 3rem;
}

.rating {
    color: #fbbf24;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, white, rgba(147, 51, 234, 0.03));
}

.contact-card {
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}


/* CTA Sections */
.cta-section-1 {
    padding: 80px 0;
    background: white;
}

.cta-box-1 {
    background: var(--gradient-purple-pink);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box-1::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 3s infinite;
}

.cta-box-1::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(50px);
    animation: pulse 3s infinite 1s;
}

.cta-section-2 {
    background: linear-gradient(to bottom, white, rgba(147, 51, 234, 0.03));
}

.cta-image-wrapper {
    position: relative;
}

.cta-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.cta-decorative-circle-1 {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    background: var(--gradient-purple-pink-br);
    border-radius: 50%;
    z-index: -1;
}

.cta-decorative-circle-2 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(219, 39, 119, 0.4), rgba(147, 51, 234, 0.4));
    border-radius: 50%;
    z-index: -1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(147, 51, 234, 0.1), rgba(219, 39, 119, 0.1));
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-purple-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.cta-section-3 {
    background: white;
}

.cta-box-3 {
    background: linear-gradient(135deg, #1f2937, #581c87, #831843);
    border-radius: 24px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-floating-orb-1 {
    position: absolute;
    top: 80px;
    left: 80px;
    width: 256px;
    height: 256px;
    background: rgba(147, 51, 234, 0.3);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s infinite;
}

.cta-floating-orb-2 {
    position: absolute;
    bottom: 80px;
    right: 80px;
    width: 320px;
    height: 320px;
    background: rgba(219, 39, 119, 0.3);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s infinite 1s;
}

.stat-box {
    text-align: center;
}

.stat-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #151e2e, #262e3b);
    color: white;
    padding: 4rem 0 0;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--gradient-purple-pink);
    color: white;
}

.keyword-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #374151;
    color: #9ca3af;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.keyword-tag:hover {
    background: var(--gradient-purple-pink);
    color: white;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: var(--gradient-purple-pink);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.5);
}

.scroll-top-btn.show {
    display: flex;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 1000;
    padding: 1rem 1.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-icon {
    font-size: 1.5rem;
    animation: pulse-scale 1.5s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .floating-stat, .about-floating-stat {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
    
    .cta-box-1, .cta-box-3 {
        padding: 3rem 1.5rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        padding: 1rem;
        border-radius: 50%;
    }
}
.badge-btn{
    background-color: #faf5ff;
    border-radius: 40px;
    display: inline;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 400;
    color: #9810fa;
}



.heading-primary {
    color: var(--heading-color);
}

.text-heading {
    color: var(--heading-color);
}

/* Card Styles */
.card-hover {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Box */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-sm {
    width: 48px;
    height: 48px;
}

.icon-box-xs {
    width: 40px;
    height: 40px;
}

/* Image Container */
.image-wrapper {
    position: relative;
}

.image-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    border-radius: 16px;
    transform: rotate(3deg);
}

.doctor-image {
    position: relative;
    border-radius: 16px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .doctor-image {
        height: 500px;
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-purple);
}

@media (min-width: 768px) {
    .experience-badge {
        bottom: -24px;
        right: -24px;
        padding: 1.5rem 2rem;
    }
}

.experience-number {
    font-size: 1.5rem;
    font-weight: bold;
}

@media (min-width: 768px) {
    .experience-number {
        font-size: 2.5rem;
    }
}

.experience-text {
    font-size: 0.75rem;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .experience-text {
        font-size: 0.875rem;
    }
}

/* Professional Journey Background */
.journey-bg {
    background: linear-gradient(135deg, var(--light-purple), var(--light-pink));
    border-radius: 16px;
}

/* CTA Section */
.cta-section {
    border-radius: 16px;
    text-align: center;
}

.btn-appointment {
    background: white;
    color: var(--heading-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: var(--heading-color);
}

@media (min-width: 768px) {
    .btn-appointment {
        padding: 1rem 2.5rem;
    }
}

/* Responsive Headings */
.heading-xl {
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .heading-xl {
        font-size: 3rem;
    }
}

.heading-lg {
    font-size: 1.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .heading-lg {
        font-size: 1.875rem;
    }
}

.heading-md {
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .heading-md {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.animate-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

/* Responsive Text */
.text-responsive {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .text-responsive {
        font-size: 1rem;
    }
}

.text-responsive-lg {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .text-responsive-lg {
        font-size: 1.125rem;
    }
}


/* ------------------------------ */
.banner-section {
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 50%, var(--primary-purple) 100%);
}

.banner-animated-circle-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-rotate-1 20s linear infinite;
}

.banner-animated-circle-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-rotate-2 15s linear infinite;
}

@keyframes float-rotate-1 {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(90deg); }
    100% { transform: scale(1) rotate(0deg); }
}

@keyframes float-rotate-2 {
    0% { transform: scale(1.2) rotate(0deg); }
    50% { transform: scale(1) rotate(-90deg); }
    100% { transform: scale(1.2) rotate(0deg); }
}

.banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.banner-icon-wrapper {
    position: relative;
    margin-bottom: 1rem;
    animation: icon-entrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes icon-entrance {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.banner-icon {
    font-size: 3rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

.banner-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.banner-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    animation: fade-up 0.8s ease-out 0.2s backwards;
}

.banner-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    animation: fade-up 0.8s ease-out 0.4s backwards;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Section Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Background Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float-vertical 3s ease-in-out infinite;
}

.floating-element-1 {
    top: 80px;
    right: 40px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(193, 53, 132, 0.05));
}

.floating-element-2 {
    top: 384px;
    left: 40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(193, 53, 132, 0.05), rgba(138, 43, 226, 0.05));
    animation-delay: 1.5s;
}

@keyframes float-vertical {
    0%, 100% { transform: translateY(-10px); }
    50% { transform: translateY(10px); }
}

/* Gradient Line */
.gradient-line {
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
    margin: 0 auto 2rem;
    animation: line-expand 0.8s ease-out forwards;
}

@keyframes line-expand {
    to { width: 80px; }
}

/* Headings */
.heading-primary {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.heading-secondary {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}
.gradient-underline {
    width: 96px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    border-radius: 50px;
    margin: 0 auto 64px;
}


/* Image Section */
.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: scale-in 0.6s ease-out;
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.2), rgba(193, 53, 132, 0.2));
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Info Card */
.info-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(193, 53, 132, 0.05));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
}

.info-card-glow {
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.1), rgba(193, 53, 132, 0.1));
    border-radius: 1.5rem;
    filter: blur(20px);
    z-index: -1;
}

/* CTA Button */
.btn-gradient {
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
    color: white;
}

.btn-gradient:active {
    transform: scale(0.95);
}

/* Decorative Dots */
.decorative-dots {
    text-align: center;
    margin-bottom: 1.5rem;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 2px;
}

.dot-purple {
    background-color: var(--primary-purple);
}

.dot-line {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    border-radius: 2px;
    margin: 8px auto;
}

.dot-pink {
    background-color: var(--primary-pink);
}

/* Pattern Background */
.pattern-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--primary-purple) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    z-index: -1;
}

/* Value Cards */
.value-card {
    position: relative;
    padding: 2rem;
    height: 100%;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.5s ease;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.value-card-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.value-card:hover .value-card-gradient-overlay {
    opacity: 0.05;
}

.gradient-overlay-1 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

.gradient-overlay-2 {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

.gradient-overlay-3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink), var(--primary-purple));
}

.value-card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
}

.value-card:hover .value-card-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.icon-gradient-1 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

.icon-gradient-2 {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

.icon-gradient-3 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
}

.value-card-icon {
    font-size: 2.5rem;
    color: white;
}

.value-card-title {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-card-description {
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.value-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    opacity: 0.1;
    border-bottom-left-radius: 100%;
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
}

.stats-animated-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate-shape-1 30s linear infinite;
}

.stats-animated-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate-shape-2 25s linear infinite;
}

@keyframes rotate-shape-1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-shape-2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.stat-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    animation: count-up 1s ease-out;
}

@keyframes count-up {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Typography */
@media (min-width: 768px) {
    .banner-section {
        height: 320px;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .banner-icon {
        font-size: 3.5rem;
    }

    .heading-primary,
    .heading-secondary {
        font-size: 2.5rem;
    }

    .image-container img {
        height: 400px;
    }

    .value-card-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .heading-primary,
    .heading-secondary {
        font-size: 3rem;
    }

    .banner-title {
        font-size: 3rem;
    }
}

/* Utility Classes */
.text-gray {
    color: var(--text-gray);
}

.section-spacing {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 5rem 0;
    }
}


/* ----------------------------------- Homeopath page */
.section-title {
    color: var(--heading-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Treatment Card Styles */
.treatment-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(50px);
}

.treatment-card.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.treatment-card-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    transform: scaleX(0);
    transform-origin: left;
}

.treatment-card.animate-in .treatment-card-top-border {
    animation: scaleIn 0.8s ease forwards 0.2s;
}

.treatment-card-image-wrapper {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.treatment-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card-image {
    transform: scale(1.1);
}

.treatment-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.treatment-card:hover .treatment-card-overlay {
    opacity: 1;
}

.treatment-card-content {
    padding: 24px;
}

.treatment-card-title {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.treatment-card-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.treatment-card-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.treatment-card-link:hover {
    gap: 12px;
}

.treatment-card-arrow {
    transition: transform 0.3s ease;
}

.treatment-card-link:hover .treatment-card-arrow {
    transform: translateX(5px);
}

/* Divider Section */
.divider-text {
    font-size: 1.25rem;
    color: var(--heading-color);
}

@media (min-width: 768px) {
    .divider-text {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleInCenter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleInCenter 0.8s ease forwards;
}

/* Stagger delays for cards */
.treatment-card:nth-child(1) { animation-delay: 0s; }
.treatment-card:nth-child(2) { animation-delay: 0.1s; }
.treatment-card:nth-child(3) { animation-delay: 0.2s; }
.treatment-card:nth-child(4) { animation-delay: 0.3s; }
.treatment-card:nth-child(5) { animation-delay: 0.4s; }
.treatment-card:nth-child(6) { animation-delay: 0.5s; }
.treatment-card:nth-child(7) { animation-delay: 0.6s; }
.treatment-card:nth-child(8) { animation-delay: 0.7s; }

/* Utility Classes */
.hidden-initially {
    opacity: 0;
}

/* Responsive Grid Adjustments */
@media (min-width: 1400px) {
    .treatment-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}


/* ------------------------------------------------- Why Homeopathy */
/* Typography */
.heading-color {
    color: var(--heading-color);
}

.main-heading {
    color: var(--heading-color);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.section-heading {
    color: var(--heading-color);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 3rem;
}

.benefit-title {
    color: var(--heading-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .main-heading,
    .section-heading {
        font-size: 2.75rem;
    }
}

/* Main Content Section */
.main-content-section {
    padding: 3rem 0 5rem;
    background: linear-gradient(to bottom, #ffffff, rgba(138, 43, 226, 0.03));
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.4);
    color: white;
}

.cta-button:active {
    transform: scale(0.98);
}


/* Benefits Section */
.benefits-section {
    padding: 4rem 0 5rem;
    background: white;
}

.benefit-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-card-prevent::before {
    background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.benefit-card-cure::before {
    background: linear-gradient(to bottom right, #ec4899, #9333ea);
}

.benefit-card-relieve::before {
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
}

.benefit-card-safe::before {
    background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}

.benefit-card-effective::before {
    background: linear-gradient(to bottom right, #db2777, #a855f7);
}

.benefit-card-affordable::before {
    background: linear-gradient(to bottom right, #9333ea, #db2777);
}

.icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-container {
    animation: iconWiggle 0.5s ease;
}

.icon-container i {
    font-size: 2rem;
    color: white;
}

.icon-prevent {
    background: linear-gradient(to bottom right, #a855f7, #9333ea);
}

.icon-cure {
    background: linear-gradient(to bottom right, #ec4899, #9333ea);
}

.icon-relieve {
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
}

.icon-safe {
    background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}

.icon-effective {
    background: linear-gradient(to bottom right, #db2777, #a855f7);
}

.icon-affordable {
    background: linear-gradient(to bottom right, #9333ea, #db2777);
}

.benefit-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.gradient-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.benefit-card:hover .gradient-line {
    transform: scaleX(1);
}

.gradient-line-prevent {
    background: linear-gradient(to right, #a855f7, #9333ea);
}

.gradient-line-cure {
    background: linear-gradient(to right, #ec4899, #9333ea);
}

.gradient-line-relieve {
    background: linear-gradient(to right, #9333ea, #ec4899);
}

.gradient-line-safe {
    background: linear-gradient(to right, #a855f7, #7e22ce);
}

.gradient-line-effective {
    background: linear-gradient(to right, #db2777, #a855f7);
}

.gradient-line-affordable {
    background: linear-gradient(to right, #9333ea, #db2777);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

@keyframes cardStagger {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-heading {
    opacity: 0;
}

.animate-heading.animated {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.animate-text-1 {
    opacity: 0;
}

.animate-text-1.animated {
    animation: slideInLeft 0.6s ease 0.5s forwards;
}

.animate-text-2 {
    opacity: 0;
}

.animate-text-2.animated {
    animation: slideInLeft 0.6s ease 0.7s forwards;
}

.animate-cta {
    opacity: 0;
}

.animate-cta.animated {
    animation: fadeInUp 0.6s ease 0.9s forwards;
}

.animate-card {
    opacity: 0;
}

.animate-card.animated {
    animation: cardStagger 0.6s ease forwards;
}

/* Stagger delays for cards */
.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }
.animate-card:nth-child(4) { animation-delay: 0.4s; }
.animate-card:nth-child(5) { animation-delay: 0.5s; }
.animate-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (min-width: 768px) {
    .main-content-section {
        padding: 5rem 0;
    }

    .benefits-section {
        padding: 6rem 0;
    }

    .benefit-card {
        padding: 2.5rem;
    }

    .icon-container {
        width: 4.5rem;
        height: 4.5rem;
    }

    .icon-container i {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .benefit-card {
        margin-bottom: 1.5rem;
    }
}

/* -------------------------------------------- Services page */

/* Main Container */
.main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Section Divider */
.section-divider {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.section-divider.visible {
    opacity: 1;
    transform: scale(1);
}

.section-divider-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: -1;
}

.section-divider-circle {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(193, 53, 132, 0.05));
    border-radius: 50%;
    filter: blur(60px);
}

.section-divider.visible .section-title {
    opacity: 1;
    transform: translateY(0);
}

.title-underline {
    width: 8rem;
    height: 0.375rem;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--gradient-purple), var(--gradient-pink), var(--gradient-purple));
    border-radius: 9999px;
    transform: scaleX(0);
    transition: transform 0.8s ease 0.4s;
}

.section-divider.visible .title-underline {
    transform: scaleX(1);
}

.decorative-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.decorative-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--gradient-purple), var(--gradient-pink));
    transform: scale(0);
    transition: transform 0.4s ease;
}

.section-divider.visible .decorative-dot:nth-child(1) {
    transition-delay: 0.6s;
    transform: scale(1);
}

.section-divider.visible .decorative-dot:nth-child(2) {
    transition-delay: 0.7s;
    transform: scale(1);
}

.section-divider.visible .decorative-dot:nth-child(3) {
    transition-delay: 0.8s;
    transform: scale(1);
}

/* Treatment Card Container */
.treatment-card-wrapper {
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s ease;
}

.treatment-card-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.treatment-card-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.treatment-card-row.reverse {
    flex-direction: column;
}

/* Icon Container */
.icon-container {
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.treatment-card-wrapper.visible .icon-container {
    opacity: 1;
    transform: scale(1);
}

.icon-wrapper {
    position: relative;
}

.icon-box {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.5s ease;
}

.icon-box:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--white);
}

.icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-pink));
    opacity: 0;
    filter: blur(24px);
    transition: opacity 0.5s ease;
}

.icon-wrapper:hover .icon-glow {
    opacity: 0.2;
}

/* Content Card */
.content-card {
    flex: 1;
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-gray);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.content-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0), transparent, rgba(193, 53, 132, 0));
    transition: all 0.7s ease;
    pointer-events: none;
}

.content-card:hover .card-gradient-overlay {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), transparent, rgba(193, 53, 132, 0.05));
}

.decorative-blob {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(193, 53, 132, 0.1));
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.content-card:hover .decorative-blob {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 10;
}

.card-title {
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transition: all 0.6s ease;
}

.treatment-card-wrapper.visible .card-title {
    opacity: 1;
}

.card-description {
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.6s ease;
}

.treatment-card-wrapper.visible .card-description {
    opacity: 1;
}

/* Conditions Section */
.conditions-section {
    margin-top: 1rem;
}

.conditions-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.conditions-line {
    flex: 1;
    height: 2px;
    border-radius: 9999px;
}

.conditions-line-left {
    background: linear-gradient(90deg, var(--gradient-purple), transparent);
}

.conditions-line-right {
    background: linear-gradient(270deg, var(--gradient-pink), transparent);
}

.conditions-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.condition-pill {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.1), rgba(193, 53, 132, 0.1));
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: scale(0.8);
}

.treatment-card-wrapper.visible .condition-pill {
    opacity: 1;
    transform: scale(1);
}

.condition-pill:hover {
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(138, 43, 226, 0.4);
}

.condition-text {
    font-size: 0.875rem;
    font-weight: 500;
    background: linear-gradient(90deg, var(--gradient-purple), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.condition-pill:hover .condition-text {
    background: var(--heading-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


@media (min-width: 992px) {
    .main-container {
        padding: 3rem 2rem;
    }

    .section-divider {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .treatment-card-wrapper {
        margin-bottom: 4rem;
    }

    .treatment-card-row {
        flex-direction: row;
        gap: 2.5rem;
    }

    .treatment-card-row.reverse {
        flex-direction: row-reverse;
    }

    .icon-box {
        width: 7rem;
        height: 7rem;
    }

    .icon-box i {
        font-size: 3.5rem;
    }

    .content-card {
        padding: 2.5rem;
    }

    .scroll-top-btn {
        bottom: 2rem;
        right: 2rem;
        width: 4rem;
        height: 4rem;
    }

    .scroll-top-btn i {
        font-size: 1.75rem;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* Animation Delays */
.treatment-card-wrapper:nth-child(1) { transition-delay: 0s; }
.treatment-card-wrapper:nth-child(2) { transition-delay: 0.15s; }
.treatment-card-wrapper:nth-child(3) { transition-delay: 0.3s; }
.treatment-card-wrapper:nth-child(4) { transition-delay: 0.45s; }
.treatment-card-wrapper:nth-child(5) { transition-delay: 0.6s; }
.treatment-card-wrapper:nth-child(6) { transition-delay: 0.75s; }
.treatment-card-wrapper:nth-child(7) { transition-delay: 0.9s; }
.treatment-card-wrapper:nth-child(8) { transition-delay: 1.05s; }

.treatment-card-wrapper:nth-child(1) .icon-container { transition-delay: 0.2s; }
.treatment-card-wrapper:nth-child(2) .icon-container { transition-delay: 0.35s; }
.treatment-card-wrapper:nth-child(3) .icon-container { transition-delay: 0.5s; }
.treatment-card-wrapper:nth-child(4) .icon-container { transition-delay: 0.65s; }
.treatment-card-wrapper:nth-child(5) .icon-container { transition-delay: 0.8s; }
.treatment-card-wrapper:nth-child(6) .icon-container { transition-delay: 0.95s; }
.treatment-card-wrapper:nth-child(7) .icon-container { transition-delay: 1.1s; }
.treatment-card-wrapper:nth-child(8) .icon-container { transition-delay: 1.25s; }

.treatment-card-wrapper:nth-child(1) .card-title { transition-delay: 0.3s; }
.treatment-card-wrapper:nth-child(2) .card-title { transition-delay: 0.45s; }
.treatment-card-wrapper:nth-child(3) .card-title { transition-delay: 0.6s; }
.treatment-card-wrapper:nth-child(4) .card-title { transition-delay: 0.75s; }
.treatment-card-wrapper:nth-child(5) .card-title { transition-delay: 0.9s; }
.treatment-card-wrapper:nth-child(6) .card-title { transition-delay: 1.05s; }
.treatment-card-wrapper:nth-child(7) .card-title { transition-delay: 1.2s; }
.treatment-card-wrapper:nth-child(8) .card-title { transition-delay: 1.35s; }

.treatment-card-wrapper:nth-child(1) .card-description { transition-delay: 0.4s; }
.treatment-card-wrapper:nth-child(2) .card-description { transition-delay: 0.55s; }
.treatment-card-wrapper:nth-child(3) .card-description { transition-delay: 0.7s; }
.treatment-card-wrapper:nth-child(4) .card-description { transition-delay: 0.85s; }
.treatment-card-wrapper:nth-child(5) .card-description { transition-delay: 1s; }
.treatment-card-wrapper:nth-child(6) .card-description { transition-delay: 1.15s; }
.treatment-card-wrapper:nth-child(7) .card-description { transition-delay: 1.3s; }
.treatment-card-wrapper:nth-child(8) .card-description { transition-delay: 1.45s; }

/* Condition pill stagger animation */
.condition-pill:nth-child(1) { transition-delay: 0.5s; }
.condition-pill:nth-child(2) { transition-delay: 0.55s; }
.condition-pill:nth-child(3) { transition-delay: 0.6s; }
.condition-pill:nth-child(4) { transition-delay: 0.65s; }
.condition-pill:nth-child(5) { transition-delay: 0.7s; }
.condition-pill:nth-child(6) { transition-delay: 0.75s; }
.condition-pill:nth-child(7) { transition-delay: 0.8s; }

.bg-lightgray{
    background-color: #fcf5f9;
}
.big-border-btn{
    border: 5px solid #9333ea;
    font-size: 22px;
    padding: 20px 70px;
    display: inline;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Gradient Backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
}

.gradient-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.gradient-card:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.15);
}

/* Form Container */
.form-container {
    animation: fadeInLeft 0.6s ease-out 0.3s both;
}

.my-form-area .form-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.15);
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.1);
}
.my-form-area .form-title {
    color: var(--dark-purple);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.5s ease-out 0.2s both;
}

/* Form Inputs */
.my-form-area .form-label {
    color: var(--dark-purple);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.my-form-area .form-control,
.my-form-area .form-select {
    border: 2px solid rgba(138, 43, 226, 0.2);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.my-form-area .form-control:focus,
.my-form-area .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(138, 43, 226, 0.25);
}

.my-form-area .input-group-1 {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.my-form-area .input-group-2 {
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.my-form-area .input-group-3 {
    animation: fadeInUp 0.5s ease-out 0.5s both;
}

.my-form-area .input-group-4 {
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

.my-form-area .checkbox-group {
    animation: fadeInUp 0.5s ease-out 0.7s both;
}

.my-form-area .form-check-input {
    border: 2px solid rgba(138, 43, 226, 0.3);
    cursor: pointer;
}

.my-form-area .form-check-input:checked {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.my-form-area .form-check-label {
    cursor: pointer;
    color: #333;
}

/* Submit Button */
.my-form-area .btn-submit {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    animation: scaleIn 0.5s ease-out 0.8s both;
}
.my-form-area .btn-submit:hover {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-pink) 100%);
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.4);
}
.my-form-area .btn-submit:active {
    transform: scale(0.98);
}

/* Map Section */
.map-container {
    animation: scaleIn 0.5s ease-out 0.7s both;
}

.map-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.map-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.map-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-card:hover .map-image {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-title {
    color: var(--dark-purple);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.map-subtitle {
    color: #666;
    margin: 0;
}

/* Contact Info Section */
.contact-info-container {
    animation: fadeInRight 0.6s ease-out 0.4s both;
}

/* Contact Cards */
.my-contact-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.my-contact-card:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.2);
}

.my-contact-card-1 {
    animation: fadeInRight 0.5s ease-out 0.2s both;
}

.my-contact-card-2 {
    animation: fadeInRight 0.5s ease-out 0.3s both;
}

.my-contact-card-3 {
    animation: fadeInRight 0.5s ease-out 0.4s both;
}

.my-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.icon-purple {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.icon-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
}
.my-contact-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-label {
    color: var(--dark-purple);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #666;
    margin: 0;
}

/* Address Card */
.address-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

.address-card:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.15);
}

.address-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.address-title {
    color: var(--dark-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.address-text {
    color: #666;
    line-height: 1.6;
}

/* Clinic Hours Banner */
.hours-banner {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-pink) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
    animation: fadeInUp 0.5s ease-out 0.8s both;
}

.hours-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.hours-text {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hours-text:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .form-title {
        font-size: 1.75rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .btn-submit {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .form-title {
        font-size: 1.5rem;
    }

    .form-card {
        padding: 1.25rem;
    }

    .map-image {
        height: 250px;
    }

    .contact-card {
        padding: 1.25rem;
    }
}
