* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.nav-logo .logo-img {
    max-height: 80px;
    width: auto;
    display: block;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-logo h1 a {
    color: white;
    text-decoration: none;
}

.nav-logo .subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 1rem;
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 0.7rem 1.2rem;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #667eea;
    transform: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Legacy header styles for compatibility */
h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Carousel Styles */
.carousel-section {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.carousel-caption h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.95);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Main Content */
main {
    padding: 3rem 0;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Medical Conditions Section */
.medical-conditions {
    margin: 3rem 0;
}

.medical-conditions h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.condition-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.condition-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.condition-category.special {
    border: 2px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.condition-category.special:hover {
    border-color: #c0392b;
    box-shadow: 0 8px 25px rgba(231,76,60,0.2);
}

.condition-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.condition-category h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.condition-category h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.condition-category h3 a:hover {
    color: #667eea;
}

.condition-category.special h3 a:hover {
    color: #e74c3c;
}

.condition-category p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.protocol-link {
    margin-top: 1rem;
    text-align: center;
}

.protocol-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.protocol-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.tamil {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.hero {
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e2ff 100%);
    color: #2c3e50;
    padding: 6rem 0;
    text-align: center;
}

/* Contact Section */

.doctor-credentials {
    margin: 2rem 0;
}

.doctor-credentials h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.qualification {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.specialties {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.specialty {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
}

.specialty:hover {
background: rgba(102, 126, 234, 0.25);
transform: translateY(-2px);
}

.contact {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 4rem 0;
text-align: center;
width: 100%;
margin: 0;
box-sizing: border-box;
}

.contact-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clinic-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.clinic-details h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.clinic-details p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.clinic-details strong {
    color: #2c3e50;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin: 0;
}

/* Page-specific styles */
.condition-details {
    margin: 2rem 0;
}

.condition-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.condition-item.special {
    border-left: 4px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.condition-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.condition-item p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.treatment-approach {
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.treatment-approach h3 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.approach-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.approach-item h4 {
    color: #667eea;
    margin-bottom: 0.8rem;
}

.important-note {
    margin: 2rem 0;
}

/* Additional styles for new pages */
.about-grid, .contact-grid, .appointment-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-item, .contact-item, .appointment-item, .value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-item:hover, .contact-item:hover, .appointment-item:hover, .value-item:hover {
    transform: translateY(-3px);
}

.contact-icon, .value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Testimonials Page Styles */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
    border-left-color: #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.patient-info h3 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.condition {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.condition a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.condition a:hover {
    color: #4c63d2;
    text-decoration: underline;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffd700;
}

.date {
    color: #888;
    font-size: 0.85rem;
    white-space: nowrap;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    border: none;
    padding: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.verified {
    color: #27ae60;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Rating Summary */
.rating-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
    text-align: center;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-display .stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #555;
}

/* Statistics Section */
.testimonial-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.testimonial-stats h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clinic-details h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.clinic-details p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: white;
}

.clinic-details strong {
    color: white;
}

.opening-hours {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.opening-hours h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-bilingual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.hours-english,
.hours-tamil {
    text-align: center;
}

.hours-english p,
.hours-tamil p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hours-english strong,
.hours-tamil strong {
    color: white;
    font-weight: 600;
}

/* AKP Protocol Page Styles */
.protocol-header {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f3f0ff 0%, #e8e2ff 100%);
    border-radius: 15px;
}

.protocol-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tamil-title {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.protocol-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.protocol-content {
    max-width: 900px;
    margin: 0 auto;
}

.protocol-section {
    background: white;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.protocol-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.protocol-section h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
}

.protocol-section h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.important-notice p {
    color: #856404;
    margin-bottom: 1rem;
}

.important-notice ul {
    color: #856404;
}

.routine-steps ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.routine-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.benefits-box {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.benefits-box h4 {
    color: #2d5a2d;
    margin-bottom: 1rem;
}

.benefits-box ul {
    color: #2d5a2d;
}

.walking-routine {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.walking-routine h4 {
    color: #1565c0;
    margin-bottom: 1rem;
}

.walking-routine ul {
    color: #1565c0;
}

.supplements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.supplements-list li {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.remember-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-left: 4px solid #fff;
}

.remember-section h2 {
    color: white;
}

.remember-section ul li {
    margin-bottom: 0.8rem;
}

.protocol-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-left: 4px solid #fff;
}

.protocol-contact h2 {
    color: white;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Mobile Responsiveness for Protocol Page */
@media (max-width: 768px) {
    .protocol-header h1 {
        font-size: 2rem;
    }
    
    .protocol-intro {
        font-size: 1rem;
    }
    
    .protocol-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .supplements-list {
        grid-template-columns: 1fr;
    }
}

/* Home Page Testimonials Slider */
.testimonials-home {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin: 0;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.testimonials-home h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.testimonials-home > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-container {
    overflow: hidden;
    border-radius: 12px;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    border-left: 4px solid #667eea;
}

.testimonial-content .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.testimonial-content .star {
    color: #ffd700;
    font-size: 1.4rem;
}

.testimonial-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin: 0 0 1.5rem 0;
    border: none;
    padding: 0;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.condition-link {
    font-size: 0.9rem;
}

.condition-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.condition-link a:hover {
    color: #4c63d2;
    text-decoration: underline;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 2px solid #667eea;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.testimonials-footer {
    margin-top: 2rem;
    text-align: center;
}

.testimonials-footer p {
    color: #666;
    font-size: 1rem;
}

.testimonials-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.testimonials-footer a:hover {
    color: #4c63d2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        color: #333;
        font-size: 1.1rem;
        padding: 1rem;
    }

    .nav-link:hover {
        background: #f8f9fa;
        color: #667eea;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
    }

    .dropdown-toggle::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-logo .subtitle {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .contact-grid, .appointment-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* Mobile Carousel Styles */
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-caption {
        padding: 2rem 1rem 1rem;
    }
    
    .carousel-caption h3 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Mobile Testimonials Styles */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rating-display {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-stats {
        padding: 2rem 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    /* Mobile Testimonials Slider Styles */
    .testimonials-home {
        padding: 2rem 0;
    }
    
    .testimonials-home h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-slider {
        padding: 0 50px;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    /* Mobile Hero Section */
    .hero {
        padding: 4rem 0;
    }
    
    .doctor-credentials h2 {
        font-size: 1.5rem;
    }
    
    .specialties {
        gap: 0.5rem;
    }
    
    .specialty {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Mobile Opening Hours */
    .hours-bilingual {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .opening-hours h5 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .about-grid, .contact-grid, .appointment-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* Supplement Pages Branding Styles */
.supplement-hero {
    background: linear-gradient(135deg, #c4d4a8 0%, #b8c89a 100%);
    color: #2d3e2d;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.supplement-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.supplement-hero .container {
    position: relative;
    z-index: 2;
}

.supplement-header h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.supplement-header h1.kc-p {
    color: #8B4F9F;
}

.supplement-header h1.akp-2 {
    color: #FF6B4A;
}

.supplement-header h1.akp-booster {
    color: #E91E63;
}

.supplement-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 500;
}

.supplement-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.supplement-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3e2d;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.supplement-benefits {
    background: #f8faf6;
    padding: 5rem 0;
    position: relative;
}

.supplement-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4F9F, #FF6B4A, #E91E63);
}

.supplement-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3e2d;
    margin-bottom: 3rem;
    font-weight: 700;
}

.supplement-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.supplement-benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 212, 168, 0.3);
    position: relative;
    overflow: hidden;
}

.supplement-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4F9F, #FF6B4A, #E91E63);
}

.supplement-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.supplement-benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.supplement-benefit-card h3 {
    color: #2d3e2d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.supplement-benefit-card p {
    color: #5a6b5a;
    line-height: 1.6;
}

.supplement-ingredients {
    background: linear-gradient(135deg, #c4d4a8 0%, #b8c89a 100%);
    padding: 5rem 0;
    position: relative;
}

.supplement-ingredients h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3e2d;
    margin-bottom: 3rem;
    font-weight: 700;
}

.supplement-ingredients-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.supplement-ingredients-list {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.supplement-ingredients-list h3 {
    color: #2d3e2d;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.supplement-ingredients-list ul {
    list-style: none;
    padding: 0;
}

.supplement-ingredients-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196, 212, 168, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.supplement-ingredients-list li::before {
    content: '🌿';
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.supplement-ingredients-list strong {
    color: #2d3e2d;
}

.supplement-quality-badges {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.supplement-badge {
    background: linear-gradient(135deg, #8B4F9F, #A569BD);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 79, 159, 0.3);
}

.supplement-specs {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    height: fit-content;
}

.supplement-specs h3 {
    color: #2d3e2d;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.supplement-specs ul {
    list-style: none;
    padding: 0;
}

.supplement-specs li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(196, 212, 168, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.supplement-specs strong {
    color: #2d3e2d;
}

.supplement-usage {
    background: #f8faf6;
    padding: 5rem 0;
}

.supplement-usage h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3e2d;
    margin-bottom: 3rem;
    font-weight: 700;
}

.supplement-usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.supplement-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.supplement-step:hover {
    transform: translateY(-5px);
}

.supplement-step-number {
    background: linear-gradient(135deg, #FF6B4A, #FF8A65);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.supplement-step-content h3 {
    color: #2d3e2d;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.supplement-step-content p {
    color: #5a6b5a;
    line-height: 1.6;
}

.supplement-usage-note {
    background: linear-gradient(135deg, #FFF3E0, #FFECB3);
    border: 2px solid #FFB74D;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 183, 77, 0.2);
}

.supplement-usage-note p {
    margin: 0;
    color: #E65100;
    font-weight: 600;
}

.supplement-package {
    background: linear-gradient(135deg, #c4d4a8 0%, #b8c89a 100%);
    padding: 5rem 0;
}

.supplement-package h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3e2d;
    margin-bottom: 3rem;
    font-weight: 700;
}

.supplement-package-details {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-top: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.supplement-package-details h3 {
    color: #2d3e2d;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.supplement-related-products {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.supplement-related-link {
    background: linear-gradient(135deg, #E91E63, #F06292);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.supplement-related-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.supplement-website-ref {
    font-style: italic;
    color: #5a6b5a;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.supplement-contact {
    background: #f8faf6;
    padding: 5rem 0;
}

.supplement-contact-card {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(196, 212, 168, 0.3);
}

.supplement-contact-card h2 {
    color: #2d3e2d;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.supplement-contact-card p {
    color: #5a6b5a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.supplement-clinic-info {
    background: linear-gradient(135deg, #c4d4a8 0%, #b8c89a 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: left;
}

.supplement-clinic-info h3 {
    color: #2d3e2d;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.supplement-clinic-info p {
    color: #2d3e2d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.supplement-cta-button {
    background: linear-gradient(135deg, #8B4F9F, #A569BD);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 79, 159, 0.3);
}

.supplement-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 79, 159, 0.4);
}

@media (max-width: 768px) {
    .supplement-header h1 {
        font-size: 2.5rem;
    }
    
    .supplement-ingredients-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .supplement-usage-steps {
        grid-template-columns: 1fr;
    }
    
    .supplement-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .supplement-tags {
        justify-content: center;
    }
    
    .supplement-related-products {
        justify-content: center;
    }
    
    .supplement-contact-card {
        padding: 2.5rem;
    }
}

/* Home Page Supplements Section */
.supplements-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8faf6 0%, #e8f5e8 100%);
    border-radius: 20px;
    position: relative;
}

.supplements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4F9F, #FF6B4A, #E91E63);
    border-radius: 20px 20px 0 0;
}

.supplements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3e2d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.supplements-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6b5a;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

.supplement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 212, 168, 0.3);
    position: relative;
    overflow: hidden;
}

.supplement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.supplement-card.kc-p::before {
    background: linear-gradient(90deg, #8B4F9F, #A569BD);
}

.supplement-card.akp-2::before {
    background: linear-gradient(90deg, #FF6B4A, #FF8A65);
}

.supplement-card.akp-booster::before {
    background: linear-gradient(90deg, #E91E63, #F06292);
}

.supplement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.supplement-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.supplement-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.supplement-card h3 a {
    color: #2d3e2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.supplement-card.kc-p h3 a:hover {
    color: #8B4F9F;
}

.supplement-card.akp-2 h3 a:hover {
    color: #FF6B4A;
}

.supplement-card.akp-booster h3 a:hover {
    color: #E91E63;
}

.supplement-tagline {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.supplement-card.kc-p .supplement-tagline {
    color: #8B4F9F;
}

.supplement-card.akp-2 .supplement-tagline {
    color: #FF6B4A;
}

.supplement-card.akp-booster .supplement-tagline {
    color: #E91E63;
}

.supplement-card > p {
    color: #5a6b5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.supplement-benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.benefit-tag {
    background: rgba(196, 212, 168, 0.2);
    color: #2d3e2d;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(196, 212, 168, 0.3);
}

.supplement-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: white;
    margin-top: 1rem;
}

.supplement-card.kc-p .supplement-btn {
    background: linear-gradient(135deg, #8B4F9F, #A569BD);
    box-shadow: 0 4px 15px rgba(139, 79, 159, 0.3);
}

.supplement-card.akp-2 .supplement-btn {
    background: linear-gradient(135deg, #FF6B4A, #FF8A65);
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.supplement-card.akp-booster .supplement-btn {
    background: linear-gradient(135deg, #E91E63, #F06292);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.supplement-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.supplement-card.kc-p .supplement-btn:hover {
    box-shadow: 0 8px 25px rgba(139, 79, 159, 0.4);
}

.supplement-card.akp-2 .supplement-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 74, 0.4);
}

.supplement-card.akp-booster .supplement-btn:hover {
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.supplements-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-left: 2rem;
    margin-right: 2rem;
}

.supplements-cta p {
    font-size: 1.1rem;
    color: #5a6b5a;
    margin-bottom: 1.5rem;
}

.supplements-cta .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.supplements-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .supplements-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .supplement-card {
        padding: 2rem;
    }
    
    .supplements-section h2 {
        font-size: 2rem;
    }
    
    .supplements-cta {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem;
    }
}
