/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.4), rgba(221, 160, 221, 0.4)), #f8f9fa;
    padding: 140px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-banner img {
    width: 100%;
    height: 60vh;
    object-fit: fill;
    object-position: center;
    display: block;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #ff69b4, #dba6db);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
}

.mission-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mission-label {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.mission-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ff69b4;
    font-weight: 300;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.15);
}

.service-image {
    height: 300px;
    background: linear-gradient(135deg, #ff69b4, #dda0dd);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-image img {
    width: 150px;
    height: 200px;
    margin: 8vh 0 0 0;
    min-width: 30vh;
    min-height: 30vh;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="40" cy="40" r="3" fill="rgba(255,255,255,0.2)"/><circle cx="160" cy="60" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="160" r="2.5" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
}

.service-icon {
    font-size: 4rem;
    z-index: 2;
    position: relative;
}

.homeopathy-bg {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="rgba(255,255,255,0.3)"><path d="M100,40 Q120,60 100,80 Q80,60 100,40"/><circle cx="100" cy="100" r="8"/><path d="M60,120 Q80,140 60,160 Q40,140 60,120"/><path d="M140,120 Q160,140 140,160 Q120,140 140,120"/></g></svg>');
}

.biopuncture-bg {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="rgba(255,255,255,0.3)"><rect x="90" y="40" width="20" height="120" rx="10"/><circle cx="100" cy="50" r="8"/><circle cx="100" cy="150" r="6"/></g></svg>');
}

.accessbars-bg {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="rgba(255,255,255,0.3)"><circle cx="100" cy="100" r="40"/><path d="M60,100 Q80,80 100,100 Q120,80 140,100"/><circle cx="80" cy="80" r="4"/><circle cx="120" cy="80" r="4"/><circle cx="100" cy="60" r="3"/></g></svg>');
}

.service-content {
    padding: 40px 30px;
    text-align: center;
}

.service-title {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.service-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #ff69b4, #dda0dd);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ff69b4;
    font-weight: 300;
    letter-spacing: 1px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.testimonial-card {
    min-width: 100%;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Avatar removed */

.testimonial-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 600px;
}

.testimonial-name {
    font-weight: bold;
    color: #ff69b4;
    font-size: 1.1rem;
}

.testimonial-role {
    color: #999;
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ff69b4;
    transform: scale(1.2);
}

.testimonial-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 105, 180, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff69b4;
}

.testimonial-arrows:hover {
    background: rgba(255, 105, 180, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 10px;
    z-index: 10;
}

.testimonial-next {
    right: 10px;
    z-index: 10;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-card:hover .service-icon {
    animation: float 2s ease-in-out infinite;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    animation: slideIn 0.6s ease forwards;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .mission-label {
        font-size: 1.5rem;
    }

    .mission-title {
        font-size: 1.6rem;
    }

    .testimonials-slider {
        max-width: 95%;
        height: auto;
        min-height: 380px;
    }

    .testimonial-card {
        padding: 25px 15px;
        min-height: 350px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Avatar removed */

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }

    .testimonial-nav {
        margin-top: 25px;
        gap: 12px;
    }

    .nav-dot {
        width: 12px;
        height: 12px;
    }

    .testimonial-arrows {
        display: flex !important;
        margin-top: 15px;
    }

    .arrow {
        padding: 12px 20px;
        font-size: 1.2rem;
        background: linear-gradient(135deg, #ff69b4, #dda0dd);
        color: white;
        border-radius: 8px;
    }
}
