/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: #fff;
}

/* Doctor Image Card */
.doctor-image-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 77, 64, 0.1);
    margin-bottom: 30px;
}

.doctor-image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.doctor-info {
    padding: 20px;
    background: linear-gradient(to right, #004d40, #00695c);
    color: #fff;
}

.doctor-speciality {
    text-align: center;
}

.doctor-speciality span {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.doctor-speciality small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Doctor Details */
.doctor-details {
    padding: 0 30px;
}

.doctor-name {
    color: #004d40;
    font-size: 32px;
    margin-bottom: 6px;
    font-weight: 700;
}

.doctor-highlights {
    margin-bottom: 17px;
}

.doctor-highlights span {
    display: inline-block;
    margin-right: 30px;
    color: #555;
}

.doctor-highlights i {
    color: #004d40;
    margin-right: 10px;
}

.doctor-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.doctor-description p {
    margin-bottom: 15px;
}

/* Achievement Cards */
.achievements-wrapper {
    margin: 40px 0;
}

.achievements-wrapper h3 {
    color: #004d40;
    font-size: 24px;
    margin-bottom: 20px;
}

.achievement-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.achievement-card {
    flex: 1;
    min-width: 200px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 77, 64, 0.1);
    border-color: #004d40;
}

.achievement-card i {
    font-size: 24px;
    color: #004d40;
    margin-bottom: 15px;
}

.achievement-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

/* CTA Button */
.doctor-cta {
    margin-top: 30px;
    text-align: right;
}

.btn-theme-colored1 {
    background: #004d40;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #004d40;
}

.btn-theme-colored1:hover {
    background: transparent;
    color: #004d40;
}

/* Responsive Design */
@media (max-width: 991px) {
    .doctor-details {
        padding: 0;
        margin-top: 30px;
    }
    
    .achievement-cards {
        flex-direction: column;
    }
    
    .achievement-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 50px 0;
    }
    
    .doctor-highlights span {
        display: block;
        margin-bottom: 10px;
    }
}

/* Memberships Section Styles */
.memberships-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.memberships-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004d40' fill-opacity='0.12'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.memberships-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 77, 64, 0.03) 0%, rgba(0, 77, 64, 0.07) 100%);
    z-index: 0;
}

.memberships-section .container {
    position: relative;
    z-index: 1;
}

.memberships-section .section-title {
    margin-bottom: 40px;
    position: relative;
}

.memberships-section .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.memberships-section .title-separator {
    width: 60px;
    height: 2px;
    background: #004d40;
    margin: 0 auto;
    position: relative;
}

.memberships-section .row {
    display: flex;
    flex-wrap: wrap;
}

.memberships-section .col-sm-6,
.memberships-section .col-md-3 {
    display: flex;
    flex-direction: column;
}

.membership-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px 15px 16px 15px;
    margin-bottom: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 77, 64, 0.1);
    backdrop-filter: blur(5px);
    height: 100%;
    flex: 1 1 auto;
}

.membership-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 77, 64, 0.1);
    border-color: #004d40;
    background: #fff;
}

.membership-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(248, 249, 250, 0.9);
    transition: all 0.3s ease;
}

.membership-card:hover .membership-logo {
    background: #f8f9fa;
}

.membership-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.membership-info h4 {
    color: #004d40;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.membership-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(232, 245, 233, 0.9);
    color: #004d40;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

.membership-card:hover .membership-type {
    background: #e8f5e9;
}

.membership-info {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 767px) {
    .memberships-section {
        padding: 40px 0;
    }
    
    .membership-card {
        padding: 15px 10px;
    }
    
    .membership-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
}

/* Clinical Videos Section Styles */
.clinical-videos-section {
    padding: 60px 0;
    background: #fff;
}

.clinical-videos-section .section-title {
    margin-bottom: 40px;
}

.clinical-videos-section .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.clinical-videos-section .title-separator {
    width: 60px;
    height: 2px;
    background: #004d40;
    margin: 0 auto;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 77, 64, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 77, 64, 0.15);
    border-color: #004d40;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 20px;
    background: #fff;
    text-align: center;
}

.video-info h4 {
    color: #004d40;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.clinical-videos-section .btn-theme-colored1 {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.clinical-videos-section .btn-theme-colored1:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 64, 0.2);
}

@media (max-width: 767px) {
    .clinical-videos-section {
        padding: 40px 0;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h4 {
        font-size: 16px;
    }
}

/* Our Services Section Styles */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004d40' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-title {
    margin-bottom: 40px;
    position: relative;
}

.services-section .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.services-section .title-separator {
    width: 60px;
    height: 2px;
    background: #004d40;
    margin: 0 auto;
    position: relative;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 77, 64, 0.08);
    padding: 32px 24px 24px 24px;
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(0, 77, 64, 0.08);
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(0, 77, 64, 0.16);
    transform: translateY(-6px) scale(1.03);
    border-color: #004d40;
}

.service-icon {
    width: 110px;
    height: 110px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 77, 64, 0.07);
    overflow: hidden;
}

.service-icon img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #004d40;
    margin-bottom: 12px;
    margin-top: 0;
}

.service-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 18px;
    min-height: 48px;
}

.btn-service {
    background: #004d40;
    color: #fff;
    border-radius: 30px;
    padding: 8px 28px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 77, 64, 0.07);
    text-decoration: none;
    display: inline-block;
}

.btn-service:hover {
    background: #fff;
    color: #004d40;
    border: 1px solid #004d40;
    box-shadow: 0 4px 16px rgba(0, 77, 64, 0.12);
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .col-md-4 {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .service-card {
        padding: 24px 12px 18px 12px;
    }
    .service-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }
    .service-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 40px 0;
    }
    .service-card {
        margin-bottom: 20px;
    }
    .service-icon {
        width: 64px;
        height: 64px;
    }
    .service-icon img {
        width: 44px;
        height: 44px;
    }
}

/* In the News Section Styles */
.news-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Remove pattern background from In the News section */
.news-section::before {
    display: none !important;
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-section .section-title {
    margin-bottom: 40px;
    position: relative;
}

.news-section .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.news-section .title-separator {
    width: 60px;
    height: 2px;
    background: #004d40;
    margin: 0 auto;
    position: relative;
}

.news-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 77, 64, 0.08);
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(0, 77, 64, 0.08);
    overflow: hidden;
}

.news-card:hover {
    box-shadow: 0 8px 32px rgba(0, 77, 64, 0.16);
    transform: translateY(-6px) scale(1.03);
    border-color: #004d40;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e8f5e9;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(.4,1.7,.7,1.01);
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.08);
}

.news-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 77, 64, 0.07);
    z-index: 2;
    letter-spacing: 0.5px;
    background: #4169e1; /* Default color */
}

.news-badge[data-type="conference"] {
    background: #4169e1;
}
.news-badge[data-type="testimonial"] {
    background: #00b894;
}
.news-badge[data-type="special"] {
    background: #e17055;
}

.news-info {
    padding: 20px 18px 18px 18px;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    min-height: 70px;
    justify-content: center;
}

.news-info p {
    color: #004d40;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

.news-section .row {
    display: flex;
    flex-wrap: wrap;
}

.news-section .col-md-4 {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .news-card {
        margin-bottom: 20px;
    }
    .news-info {
        padding: 16px 10px 12px 10px;
        min-height: 50px;
    }
    .news-badge {
        top: 10px;
        left: 10px;
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 40px 0;
    }
    .news-card {
        margin-bottom: 16px;
    }
    .news-info {
        padding: 12px 6px 8px 6px;
    }
}

/* Patient Education & Awareness Section Styles */
.education-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.education-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23004d40' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.education-section .container {
    position: relative;
    z-index: 1;
}

.education-section .section-title {
    margin-bottom: 40px;
    position: relative;
}

.education-section .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.education-section .title-separator {
    width: 60px;
    height: 2px;
    background: #004d40;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 77, 64, 0.08);
    padding: 32px 24px 24px 24px;
    margin-bottom: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(0, 77, 64, 0.08);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 77, 64, 0.16);
    transform: translateY(-6px) scale(1.03);
    border-color: #004d40;
}

.testimonial-quote-icon {
    font-size: 32px;
    color: #e17055;
    margin-bottom: 18px;
}

.testimonial-text {
    color: #555;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
    min-height: 90px;
    line-height: 1.7;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-author-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f5e9;
    box-shadow: 0 2px 8px rgba(0, 77, 64, 0.07);
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-name {
    color: #004d40;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.education-section .row {
    display: flex;
    flex-wrap: wrap;
}

.education-section .col-md-4 {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .testimonial-card {
        padding: 24px 12px 18px 12px;
    }
    .testimonial-author-img {
        width: 44px;
        height: 44px;
    }
    .testimonial-text {
        font-size: 15px;
        min-height: 60px;
    }
}

@media (max-width: 767px) {
    .education-section {
        padding: 40px 0;
    }
    .testimonial-card {
        margin-bottom: 20px;
    }
    .testimonial-author {
        gap: 8px;
    }
} 