/* About Us Section Styles */
.about-section {
    padding: 40px 0;
    background-color: #fff;
    background-image: radial-gradient(#00B050 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
    background-color: rgba(255, 255, 255, 0.97);
    background-blend-mode: overlay;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #00B050, transparent);
    opacity: 0.3;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text-content {
    flex: 1;
}

.about-badge {
    display: inline-block;
    font-size: 14px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background-color: #e8f5e9;
    padding: 5px 10px;
    border-radius: 4px;
}

.about-subtitle {
    font-size: 32px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.2;
}

.about-role {
    font-size: 20px;
    color: #666;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-text-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #00B050;
    font-size: 20px;
}

.feature-item span {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.about-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #00B050;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 176, 80, 0.3);
    border: 5px solid #fff;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Facilities Section Styles */
.facilities-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.facilities-title {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.facilities-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00B050;
    margin: 10px auto 0;
    border-radius: 2px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.facility-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0f2f1;
}

.facility-card i {
    font-size: 24px;
    color: #00B050;
    background-color: #e8f5e9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.facility-card:hover i {
    background-color: #00B050;
    color: #fff;
}

.facility-card span {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive Styles for New Sections */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .experience-badge {
        right: 20px;
    }

    .consultation-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .location-card {
        flex-direction: column;
        padding: 40px;
        gap: 35px;
    }

    .location-map {
        min-height: 350px;
    }

    .profile-card {
        flex-direction: column;
    }

    .profile-image,
    .profile-image-placeholder {
        width: 100%;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-subtitle {
        font-size: 24px;
    }

    .about-features {
        flex-direction: column;
        gap: 15px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .facilities-section {
        padding: 60px 0;
    }

    .vaidya-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container {
        padding-left: 20px;
    }

    .timeline-dot {
        left: -26px;
        width: 12px;
        height: 12px;
        top: 6px;
    }

    .timeline-container::before {
        left: 0;
    }

    /* Location Section Mobile */
    .location-section {
        padding: 60px 0;
    }

    .location-card {
        flex-direction: column;
        padding: 25px 20px;
        gap: 30px;
    }

    .info-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .info-item i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        min-width: 50px;
        /* Prevent shrinking */
    }

    .info-item div {
        flex: 1;
    }

    .info-item h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .info-item p {
        font-size: 13px;
    }

    .location-map {
        min-height: 300px;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: -25px;
        height: 300px;
        border-radius: 0 0 20px 20px;
    }

    /* Consultation Section Mobile */
    .consultation-section {
        padding: 60px 0;
    }

    .section-header-centered .section-heading {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .section-header-centered .section-heading i {
        font-size: 20px;
    }

    .consultation-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 30px;
    }

    .consultation-card {
        padding: 30px 20px;
    }

    .consultation-card .card-icon {
        width: 70px;
        height: 70px;
    }

    .consultation-card .card-icon i {
        font-size: 28px;
    }

    .consultation-card h4 {
        font-size: 18px;
    }

    .consultation-card p {
        font-size: 13px;
    }

    .consultation-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .consultation-cta i {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 5px;
    }

    .consultation-cta p {
        font-size: 14px;
    }

    .profile-info {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .location-card {
        padding: 20px 15px;
    }

    .consultation-cta {
        padding: 20px 15px;
    }
}

/* Location Section Styles */
.location-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-centered .section-heading {
    font-size: 28px;
    color: #333;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-header-centered .section-heading i {
    color: #00B050;
    font-size: 24px;
}

.section-underline {
    width: 80px;
    height: 3px;
    background-color: #00B050;
    margin: 15px auto 0;
    border-radius: 2px;
}

.location-card {
    display: flex;
    gap: 40px;
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 28px;
    color: #00B050;
    background-color: #e8f5e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.location-map {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Consultation Section Styles */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.consultation-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.consultation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 176, 80, 0.15);
    border-color: #00B050;
}

.consultation-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B050, #00d967);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 16px rgba(0, 176, 80, 0.3);
}

.consultation-card .card-icon i {
    font-size: 32px;
    color: #fff;
}

.consultation-card h4 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.consultation-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.consultation-cta {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #00B050;
}

.consultation-cta i {
    font-size: 32px;
    color: #00B050;
    background-color: #e8f5e9;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.consultation-cta p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Profiles Section Styles */
.profiles-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.profiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.profile-card {
    display: flex;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #e0f2f1;
}

.profile-image-placeholder {
    width: 280px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-image-placeholder::after {
    content: '\f007';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 80px;
    color: rgba(0, 176, 80, 0.2);
}

.profile-image {
    width: 280px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-size: 24px;
    color: #00B050;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-name::before {
    content: '';
    width: 4px;
    height: 24px;
    background-color: #00B050;
    border-radius: 2px;
}

.profile-desc {
    font-size: 16px;
    color: #555;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.profile-info p:last-child {
    margin-bottom: 0;
}

/* Tradition Section Styles */
.tradition-section {
    padding: 0 0 80px;
    background-color: #fff;
}

.tradition-section .section-heading {
    text-align: center;
}

.tradition-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -29px;
    top: 5px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 3px solid #00B050;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background-color: #f9f9f9;
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 4px solid #00B050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
}

.timeline-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-name {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Ayurveda Info Card */
.ayurveda-info-card {
    background-color: #f0fdf4;
    /* Very light green */
    border: 1px solid #dcfce7;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.tradition-subheading {
    font-size: 20px;
    color: #00B050;
    font-weight: 600;
    margin-bottom: 20px;
}

.ayurveda-info-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ayurveda-info-card p:last-child {
    margin-bottom: 0;
}

/* Vaidya Grid */
.vaidya-list-intro {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

.vaidya-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vaidya-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.vaidya-card::before {
    content: '\f0f0';
    /* FontAwesome user-md icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00B050;
    font-size: 16px;
    margin-top: 3px;
}

.vaidya-card:hover {
    border-color: #00B050;
    box-shadow: 0 5px 15px rgba(0, 176, 80, 0.1);
    transform: translateY(-2px);
}

/* Responsive Styles for New Sections */
@media screen and (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-image,
    .profile-image-placeholder {
        width: 100%;
        max-width: 250px;
        height: auto;
        min-height: 250px;
        /* For placeholder */
    }

    .profile-info {
        width: 100%;
    }

    .vaidya-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container {
        padding-left: 20px;
    }

    .timeline-dot {
        left: -26px;
        width: 12px;
        height: 12px;
        top: 6px;
    }

    .timeline-container::before {
        left: 0;
    }
}