/* Global Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #ff6b6b;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-subtext {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 201, 151, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
}

.hero-image img {
    border-radius: var(--border-radius);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-image img {
    border-radius: var(--border-radius);
}

.about-content {
    padding-left: 2rem;
}

.qualifications ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.consultation-info {
    border-left: 4px solid var(--primary-color);
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: 0;
}

/* Feature Box */
.feature-box {
    padding: 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-box p {
    color: #666;
    margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.client-info h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.client-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.info-content h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p,
.info-content a {
    color: #666;
    margin-bottom: 0;
    text-decoration: none;
}

.info-content a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
}

.footer h4,
.footer h5 {
    color: #fff;
    font-weight: 600;
}

.footer p {
    color: rgba(255,255,255,0.7);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

/* Footer Social Media Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Contact Page Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background: #218838;
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* Floating Action Buttons (Mobile Only) */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.call-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-btn {
    background: #25D366;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(40, 167, 69, 0.1);
    }
}

/* Show floating buttons only on mobile devices */
@media (max-width: 768px) {
    .floating-buttons {
        display: flex;
        bottom: 100px;
    }
    
    /* Adjust scroll-to-top button position on mobile */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Success Stories Page */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.story-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.story-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-card-body {
    padding: 1.5rem;
}

.story-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 3rem;
}

.spinner {
    border: 4px solid rgba(0,0,0,0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #218838;
}

/* Internship Page Styles */
.internship-hero {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9)), 
                url('../img/hero-bg.jpg') center/cover;
    color: #fff;
}

.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-box-icon i {
    font-size: 2rem;
    color: #fff;
}

.info-box h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-box p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: #666;
    margin-bottom: 0;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.duration {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9)), 
                url('../img/contact-bg.jpg') center/cover;
    color: #fff;
}

.contact-info-wrapper {
    height: 100%;
}

.contact-detail-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-detail-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.contact-detail-content h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-detail-content p,
.contact-detail-content a {
    color: #666;
    margin-bottom: 0;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-detail-content a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #218838;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-modern .form-floating {
    margin-bottom: 0;
}

.contact-form-modern .form-control,
.contact-form-modern .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}

.quick-contact-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quick-contact-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.quick-contact-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.quick-contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background-color: #fff;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

/* Additional Responsive Styles */
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .price {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .quick-contact-card {
        margin-bottom: 1rem;
    }
}

/* Modern Design Styles - Newetrix Inspired */

/* Hero Section Modern */
.hero-section-modern {
    padding: 150px 0 100px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-badge,
.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.badge-icon {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.badge-text {
    letter-spacing: 1px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 2rem 0 1.5rem;
    color: var(--dark-color);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons-modern {
    margin-bottom: 3rem;
}

/* Stats Section */
.stats-section {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* About Section Modern */
.about-section-modern {
    background: #fff;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

.feature-card-modern {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card-modern p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-image-wrapper img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.doctor-info-modern {
    padding-left: 2rem;
}

.qualifications-modern {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.qualification-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #666;
}

.consultation-hours-modern {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

/* Services Page Modern */
.page-hero-modern {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    text-center;
}

.service-card-modern {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card-modern:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
    transform: translateY(-5px);
}

.service-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-modern i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card-modern p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Accordion Modern */
.accordion-item-modern {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button-modern {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button-modern:hover {
    background: #f8f9fa;
}

.accordion-button-modern:not(.collapsed) {
    background: #f8f9fa;
    color: var(--primary-color);
}

.accordion-button-modern::after {
    content: "+";
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button-modern:not(.collapsed)::after {
    transform: rotate(45deg);
}

.accordion-body-modern {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section Modern */
.cta-section-modern {
    background: #f8f9fa;
}

.cta-card-modern {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    padding: 4rem 2rem;
    border-radius: 16px;
    color: #fff;
}

.cta-card-modern h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

/* Contact Page Modern */
.contact-hero-modern {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-modern {
    height: 100%;
}

.contact-method-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-method-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.contact-method-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.quick-connect a {
    color: var(--primary-color);
    text-decoration: none;
}

.quick-connect a:hover {
    text-decoration: underline;
}

.contact-form-modern-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.modern-form .form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Responsive Updates */
@media (max-width: 991px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .doctor-info-modern {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 1.75rem;
    }
}

/* Training Page Styles */
.training-hero {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95), rgba(25, 118, 210, 0.95)), 
                url('../img/training-bg.jpg') center/cover;
    color: #fff;
    padding: 150px 0 80px;
}

.training-hero .section-badge-modern {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.training-hero .badge-icon {
    color: #ffc107;
}

.training-hero h1 {
    color: #fff;
}

.training-hero .text-gradient {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workshop-badges .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.workshop-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.workshop-info-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.info-item-training {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item-training:last-child {
    border-bottom: none;
}

.info-item-training i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 30px;
    flex-shrink: 0;
}

.info-item-training strong {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item-training p {
    margin: 0;
    color: #666;
}

.description-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.learning-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.learning-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    transform: translateY(-5px);
}

.learning-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.learning-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.learning-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.learning-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.instructor-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.instructor-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.instructor-card h3 {
    font-weight: 700;
    color: var(--dark-color);
}

.instructor-card p {
    line-height: 1.7;
    color: #666;
}

.step-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.step-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.step-card p {
    color: #666;
    margin-bottom: 0;
}

.registration-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.payment-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.payment-detail {
    padding: 0.75rem;
    background: #fff;
    border-radius: 8px;
}

.payment-detail strong {
    color: var(--dark-color);
}

.contact-options h5 {
    font-weight: 600;
    color: var(--dark-color);
}

/* Responsive Training Page */
@media (max-width: 991px) {
    .training-hero {
        padding: 120px 0 60px;
    }
    
    .workshop-info-card {
        margin-top: 2rem;
    }
    
    .instructor-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .training-hero h1 {
        font-size: 2rem;
    }
    
    .workshop-badges {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .workshop-badges .badge {
        display: inline-block;
        width: fit-content;
    }
    
    .step-card {
        margin-top: 2rem;
    }
    
    .registration-card {
        padding: 2rem 1.5rem;
    }
}

/* Internship Program Tabs */
.nav-pills .nav-link {
    color: var(--dark-color);
    background: #fff;
    border: 2px solid #e0e0e0;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.program-summary-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    position: relative;
}

.program-summary-card.featured-program {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.program-summary-card h3 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.duration-tag {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.curriculum-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.curriculum-card h4 {
    font-weight: 700;
    color: var(--dark-color);
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.curriculum-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.curriculum-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.curriculum-section h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.curriculum-section h5 i {
    color: var(--primary-color);
}

.curriculum-section ul {
    list-style: none;
    padding-left: 0;
}

.curriculum-section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.curriculum-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Tabs */
@media (max-width: 991px) {
    .nav-pills .nav-link {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .program-summary-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .nav-pills {
        flex-direction: column;
    }
    
    .nav-pills .nav-link {
        margin: 0.25rem 0;
        width: 100%;
    }
    
    .price-tag {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.95), rgba(32, 201, 151, 0.95));
    color: #fff;
}

.about-hero .section-badge-modern {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.about-hero h1 {
    color: #fff;
}

.about-image-wrapper img {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.mission-vision-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mv-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.mission-vision-card h3 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.mission-vision-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.expert-image-wrapper img {
    max-width: 400px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.expert-info {
    padding-left: 2rem;
}

.expert-info h4 {
    font-weight: 700;
    color: var(--dark-color);
}

.expertise-section h5 {
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 500;
}

.credentials-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.credentials-box h5 {
    font-weight: 600;
    color: var(--dark-color);
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.credentials-list li:last-child {
    border-bottom: none;
}

.credentials-list strong {
    color: var(--dark-color);
}

.value-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.why-choose-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    padding-top: 3.5rem;
}

.why-choose-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    transform: translateY(-5px);
}

.number-badge {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.why-choose-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.stat-box h2 {
    color: #fff;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive About Page */
@media (max-width: 991px) {
    .expert-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .expert-image-wrapper img {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .expert-image-wrapper img {
        max-width: 250px;
    }
    
    .why-choose-card {
        margin-top: 2rem;
    }
}

/* Why NutriCare Section */
.why-nutricare-section {
    background: #fff;
}

.why-feature-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.why-feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.why-feature-icon-new {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-feature-icon-new {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    transform: scale(1.1);
}

.why-feature-content h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.why-feature-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Reduce doctor image height */
.doctor-image-wrapper img,
.expert-image-wrapper img {
    max-height: 700px;
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Responsive Why NutriCare */
@media (max-width: 767px) {
    .why-feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .why-feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .why-feature-icon-new {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .doctor-image-wrapper img,
    .expert-image-wrapper img {
        max-height: 500px;
        max-width: 300px;
    }
}

/* Success Stories Page - New Design */
.testimonial-story-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-story-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.client-avatar i {
    font-size: 1.8rem;
    color: #fff;
}

.client-details h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.age-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.weight-badge {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.weight-before {
    color: #e53935;
    font-size: 1.1rem;
}

.weight-after {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.weight-badge i {
    color: var(--primary-color);
}

.success-badge {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    color: #fff;
}

.success-badge span {
    color: #fff;
    font-size: 1rem;
}

.story-content {
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
    position: relative;
    padding-left: 1.5rem;
}

.story-content p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.story-tags .tag {
    background: #f8f9fa;
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
}

/* Responsive Success Stories */
@media (max-width: 767px) {
    .testimonial-story-card {
        padding: 1.5rem;
    }
    
    .client-avatar {
        width: 50px;
        height: 50px;
    }
    
    .client-avatar i {
        font-size: 1.5rem;
    }
    
    .client-details h4 {
        font-size: 1.1rem;
    }
    
    .weight-badge {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .weight-badge i {
        transform: rotate(90deg);
    }
}

/* Fix for visible gradient text */
.text-gradient-visible {
    background: linear-gradient(135deg, var(--primary-color), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-text-gradient-visible {
    background: linear-gradient(135deg, var(--primary-color), #2b20c9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Mobile Menu Full Screen Overlay */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .navbar-collapse .navbar-nav {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    
    .navbar-collapse .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--dark-color) !important;
        text-align: center;
    }
    
    .navbar-collapse .btn-primary {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    /* Close button for mobile menu */
    .navbar-toggler[aria-expanded="true"]::before {
        content: "✕";
        position: fixed;
        top: 2rem;
        right: 2rem;
        font-size: 2rem;
        color: var(--dark-color);
        z-index: 10000;
    }
}

/* Fix internship active button visibility */
.nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff !important;
    font-weight: 600;
}

/* Ensure text is visible on active button */
.nav-pills .nav-link.active:hover {
    background: #218838;
    color: #fff !important;
}

/* Home page doctor image */
.doctor-image-wrapper-home img {
    max-height: 600px;
    width: 100%;
    max-width: 350px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .doctor-image-wrapper-home {
        margin-bottom: 2rem;
    }
    
    .doctor-image-wrapper-home img {
        max-height: 500px;
        max-width: 300px;
    }
}
