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

:root {
    /* Primary gradient (dark and sophisticated) */
    --primary-gradient: linear-gradient(135deg, #2c3e50, #4a2c5d);
    
    /* Accent gradient (warm but not orange) */
    --accent-gradient: linear-gradient(135deg, #c94b4b, #4b134f);
    
    /* Text colors */
    --text-dark: #1a1a2e;
    --text-light: #f5f5f7;
    --text-muted: #7e7e8f;
    
    /* Secondary gradient (rich and elegant) */
    --secondary-gradient: linear-gradient(135deg, #373B44, #4286f4);
    
    /* Navbar/footer gradient */
    --navbar-gradient: linear-gradient(to right, #1a1a2e, #30344e);
    
    /* Font families */
    --heading-font: 'Raleway', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header and Navbar Styles */
.doctor__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.doctor__header.scrolled {
    background: var(--navbar-gradient);
}

.doctor__header.scrolled .doctor__navbar-link,
.doctor__header.scrolled .doctor__logo-text {
    color: var(--text-light);
}

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

.doctor__logo {
    display: flex;
    align-items: center;
}

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

.doctor__logo-icon {
    font-size: 1.8rem;
    color: #c94b4b;
    transition: transform 0.3s ease;
}

.doctor__logo:hover .doctor__logo-icon {
    transform: scale(1.1);
}

.doctor__logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.doctor__navbar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.doctor__navbar-link-item {
    position: relative;
}

.doctor__navbar-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.doctor__navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.doctor__navbar-link:hover::after,
.doctor__navbar-link--active::after {
    width: 100%;
}

.doctor__navbar-link:hover,
.doctor__navbar-link--active {
    color: #c94b4b;
}

.doctor__navbar-cta {
    display: flex;
    align-items: center;
}

.doctor__call-btn {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.5rem;
    background: var(--accent-gradient);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 75, 75, 0.3);
}

.doctor__call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 75, 75, 0.4);
}

.doctor__call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.doctor__navbar-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
}

/* Mobile Menu */
@media screen and (max-width: 992px) {
    .doctor__navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #c94b4b;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 3rem 0;
    }
    
    .doctor__navbar-links.active {
        right: 0;
    }
    
    .doctor__navbar-toggle {
        display: block;
    }
    
    .doctor__navbar-link-item {
        margin: 1rem 0;
    }
    
    .doctor__navbar-link {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .doctor__navbar-container {
        padding: 0.8rem 1rem;
    }
    
    .doctor__logo-text {
        font-size: 1.3rem;
    }
    
    .doctor__call-text {
        display: none;
    }
    
    .doctor__call-btn {
        padding: 0.7rem;
        border-radius: 50%;
    }
}







































/* Hero Section Styles */
.doctor__hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* To account for fixed header */
}

/* Video Background */
.doctor__hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.doctor__hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Simple dark overlay */
}

/* Content Styles */
.doctor__hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.doctor__hero-content {
    max-width: 600px;
    color: #fff;
    text-align: left;
}

.doctor__hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.doctor__hero-highlight {
    color: #c94b4b;
}

.doctor__hero-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.doctor__hero-caption {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #c94b4b;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 0 5px 5px 0;
 
}
.doctor__hero-caption p{
    color: #fff;
 
}

.doctor__hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.doctor__hero-btn-primary {
    background: #c94b4b;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doctor__hero-btn-primary:hover {
    background: #a73c3c;
    transform: translateY(-3px);
}

.doctor__hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.doctor__hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .doctor__hero-title {
        font-size: 36px;
    }
    
    .doctor__hero-subtitle {
        font-size: 18px;
    }
    
    .doctor__hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .doctor__hero-btn-primary, .doctor__hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .doctor__hero-title {
        font-size: 30px;
    }
    
    .doctor__hero-section {
        padding-top: 100px;
    }
}






























/* Doctor Profile CSS - Exact Match to Screenshot */
.docmd__profile-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.docmd__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.docmd__profile-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Left Side - Image */
.docmd__image-wrapper {
    width: 40%;
    background: linear-gradient(135deg, #2c3e50, #4a2c5d);
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.docmd__image-container {
    position: relative;
    width: 100%;
}

.docmd__doctor-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.docmd__experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #c94b4b;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(201, 75, 75, 0.3);
}

.docmd__exp-years {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.docmd__exp-text {
    font-size: 12px;
    display: block;
    text-align: center;
}

/* Right Side - Info */
.docmd__info-container {
    width: 60%;
    padding: 40px;
}

.docmd__doctor-name {
    font-size: 32px;
    color: #1a1a2e;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.docmd__doctor-specialty {
    font-size: 18px;
    color: #c94b4b;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.docmd__doctor-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    text-align: center;
}

.docmd__credentials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docmd__credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.docmd__credential-item i {
    color: #c94b4b;
    margin-right: 10px;
    font-size: 16px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .docmd__profile-card {
        flex-direction: column;
    }
    
    .docmd__image-wrapper,
    .docmd__info-container {
        width: 100%;
    }
    
    .docmd__image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .docmd__experience-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 576px) {
    .docmd__profile-section {
        padding: 40px 0;
    }
    
    .docmd__info-container {
        padding: 30px 20px;
    }
    
    .docmd__doctor-name {
        font-size: 28px;
        text-align: center;
    }
    
    .docmd__doctor-specialty {
        font-size: 16px;
        text-align: center;
    }
}














































/* 3D Services Showcase Section */
.med__services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
    position: relative;
    overflow: hidden;
}

.med__services-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.med__services-header {
    text-align: center;
    margin-bottom: 80px;
}

.med__services-title {
    font: bold 3.2em var(--heading-font), sans-serif;
    color: #1a1a2e;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.med__services-title span {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 8px;
    display: block;
    color: #c94b4b;
    margin-top: 10px;
    font-weight: 500;
}

.med__services-intro {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* 3D Card Layout */
.med__services-cards {
    list-style: none;
    margin: 50px 0;
    height: 550px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.med__service-item {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: perspective 1s;
    flex: 1;
    max-width: 300px;
}

.med__service-item:hover {
    perspective: 500px;
}

.med__service-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 10px solid white;
    transform: rotateY(30deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
}

.med__service-item:hover .med__service-image {
    transform: rotateY(0deg);
}

/* Modified info box to ensure text stays within bounds */
.med__service-info {
    border: 5px solid #c94b4b;
    padding: 20px;
    width: 80%;
    height: 200px; /* Increased height to accommodate the extra heading */
    background-color: white;
    margin: -150px 0 0 55px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateZ(30px) rotateY(30deg);
    transition: transform 0.5s, box-shadow 0.5s, margin 0.5s;
    z-index: 1;
    overflow: hidden; /* Prevent content from spilling out */
}

.med__service-item:hover .med__service-info {
    transform: rotateY(0deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin: -130px 0 0 30px;
}

/* Modified for main heading (Knee/Hip/Shoulder) */
.med__service-info h3 {
    color: #1a1a2e;
    font-family: var(--heading-font), serif;
    font-size: 1.5em;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

/* Added for the subheading (Replacement) */
.med__service-info h4 {
    color: #1a1a2e;
    font-family: var(--heading-font), serif;
    font-size: 1.3em;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Modified to ensure text fits perfectly */
.med__service-info p {
    font-size: 0.9em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
    height: 54px; /* Reduced height to ensure no overflow */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to exactly 2 lines */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.med__service-link {
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    padding: 8px 15px;
    color: white;
    text-decoration: none;
    display: block;
    width: 120px;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    position: absolute; /* Position absolutely to ensure consistent placement */
    bottom: 20px; /* Position from bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center adjustment */
}

.med__service-link:hover {
    background: linear-gradient(135deg, #b83b3b, #3b0f3f);
    transform: translateX(-50%) translateY(-3px); /* Maintain center while lifting */
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.3);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .med__services-cards {
        height: auto;
        flex-direction: column;
        align-items: center;
    }
    
    .med__service-item {
        margin-bottom: 100px;
        width: 80%;
        max-width: 400px;
    }
    
    .med__service-info {
        width: 85%;
        margin: -130px auto 0;
        left: 0;
        right: 0;
    }
    
    .med__service-item:hover .med__service-info {
        margin: -110px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .med__services-showcase {
        padding: 70px 0;
    }
    
    .med__services-title {
        font-size: 2.5em;
    }
    
    .med__service-item {
        width: 90%;
    }
    
    .med__service-image {
        height: 380px;
    }
}

@media screen and (max-width: 480px) {
    .med__services-showcase {
        padding: 50px 0;
    }
    
    .med__services-title {
        font-size: 2em;
    }
    
    .med__services-title span {
        font-size: 14px;
        letter-spacing: 5px;
    }
    
    .med__service-item {
        width: 100%;
    }
    
    .med__service-image {
        height: 320px;
        border-width: 5px;
    }
    
    .med__service-info {
        height: 220px; /* Increased height for mobile to ensure text fits */
        padding: 15px;
    }
    
    .med__service-info h3 {
        font-size: 1.3em;
    }
    
    .med__service-info h4 {
        font-size: 1.1em;
    }
    
    .med__service-info p {
        font-size: 0.9em;
        height: 72px; /* Adjusted for mobile */
    }
}



































/* Sports Medicine Services Section */
.doctor__sports-section {
    padding: 100px 0;
    background-color: #f5f7fa;
    overflow: hidden;
}

.doctor__sports-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Header */
.doctor__sports-header {
    text-align: center;
    margin-bottom: 60px;
}

.doctor__sports-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.doctor__sports-subtitle {
    font-size: 18px;
    color: #c94b4b;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Layout */
.doctor__sports-gallery {
    width: 100%;
    margin: 0 auto;
}

.doctor__sports-items {
    width: 100%;
    margin: 0 auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    position: relative;
    min-height: 650px;
}

/* Individual Items */
.doctor__sports-item {
    width: 300px;
    margin: 0 20px 40px 0;
    filter: sepia(0.5);
    position: relative;
    transition: all 0.8s ease;
    z-index: 1;
}

.doctor__sports-item:hover {
    filter: sepia(0);
    z-index: 10;
}

.doctor__sports-item:nth-child(3n) {
    margin-right: 0;
}

/* Image Styling */
.doctor__sports-item img {
    transition: 0.8s ease;
    max-width: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    border: 8px solid white;
    border-bottom-width: 60px; /* Increased to fit heading and button */
    box-sizing: border-box;
}

/* Random rotation and positions */
.doctor__sports-item:nth-child(1) img {
    transform: translate(-10px, 20px) rotate(-8deg);
}

.doctor__sports-item:nth-child(2) img {
    transform: translate(-20px, 70px) rotate(10deg);
}

.doctor__sports-item:nth-child(3) img {
    transform: translate(-40px, 5px) rotate(13deg);
}

.doctor__sports-item:nth-child(4) img {
    transform: translate(-20px, 20px) rotate(5deg);
}

.doctor__sports-item:nth-child(5) img {
    transform: translate(-30px, 50px) rotate(-10deg);
}

.doctor__sports-item:nth-child(6) img {
    transform: translate(-40px) rotate(5deg);
}

/* Hover effect */
.doctor__sports-item:hover img {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: scale(1.2) rotate(0deg);
}

/* Fix for visible headings - add this to your existing CSS */

/* Make the text info area stand out better */
.doctor__sports-info {
    position: absolute;
    bottom: 10px;
    left: 8px;
    right: 8px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 8px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Make the heading more visible */
.doctor__sports-info h3 {
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 1px white;
}

/* Keep the read more button simple */
.doctor__sports-link {
    display: inline-block;
    background: #c94b4b;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 5px;
}

.doctor__sports-item:hover .doctor__sports-link {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .doctor__sports-items {
        width: 100%;
        justify-content: center;
    }
    
    .doctor__sports-item {
        width: 280px;
    }
}

@media screen and (max-width: 992px) {
    .doctor__sports-item {
        width: 260px;
    }
    
    .doctor__sports-items {
        min-height: 900px;
    }
}

@media screen and (max-width: 768px) {
    .doctor__sports-section {
        padding: 80px 0;
    }
    
    .doctor__sports-items {
        width: 100%;
        min-height: 1300px;
    }
    
    .doctor__sports-item {
        width: 220px;
        margin: 0 10px 40px 0;
    }
    
    .doctor__sports-item:nth-child(2n) {
        margin-right: 0;
    }
    
    .doctor__sports-item:nth-child(3n) {
        margin-right: 10px;
    }
}

@media screen and (max-width: 576px) {
    .doctor__sports-section {
        padding: 60px 0;
    }
    
    .doctor__sports-items {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }
    
    .doctor__sports-item {
        width: 280px;
        margin: 30px 0;
    }
    
    .doctor__sports-item:nth-child(n) {
        margin-right: 0;
    }
    
    .doctor__sports-item img {
        transform: none !important;
    }
    
    .doctor__sports-item:hover img {
        transform: scale(1.1) !important;
    }
}








































/* Patient Information Section Styles with Images and Video */
.csmadhu__patient-info {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Background decoration elements */
.csmadhu__patient-info::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 75, 0.05) 0%, rgba(201, 75, 75, 0) 70%);
    z-index: 0;
}

.csmadhu__patient-info::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 19, 79, 0.05) 0%, rgba(75, 19, 79, 0) 70%);
    z-index: 0;
}

/* Container with consistent width */
.csmadhu__patient-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.csmadhu__patient-header {
    text-align: center;
    margin-bottom: 60px;
}

.csmadhu__patient-subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__patient-title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__patient-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

.csmadhu__patient-intro {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Journey Timeline Styles */
.csmadhu__journey-timeline {
    margin-bottom: 60px;
    position: relative;
}

.csmadhu__journey-track {
    display: flex;
    position: relative;
    justify-content: space-between;
    padding: 30px 0;
}

/* Journey Timeline - Line */
.csmadhu__journey-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    z-index: 1;
}

/* Journey Steps */
.csmadhu__journey-step {
    position: relative;
    width: 22%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease;
}

.csmadhu__journey-step:hover {
    transform: translateY(-10px);
}

.csmadhu__journey-media {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.csmadhu__journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.csmadhu__journey-step:hover .csmadhu__journey-image {
    transform: scale(1.1);
}

.csmadhu__journey-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.3);
}

.csmadhu__journey-content {
    text-align: center;
    padding: 0 10px;
}

.csmadhu__journey-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__journey-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.csmadhu__journey-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #c94b4b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 2px;
}

.csmadhu__journey-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    transition: width 0.3s ease;
}

.csmadhu__journey-link:hover {
    color: #4b134f;
}

.csmadhu__journey-link:hover::after {
    width: 100%;
}

/* Video and Info Cards Grid */
.csmadhu__patient-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Video Section */
.csmadhu__patient-video-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.csmadhu__video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.csmadhu__patient-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
}

.csmadhu__video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(201, 75, 75, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 10px rgba(201, 75, 75, 0.2);
}

.csmadhu__video-container:hover .csmadhu__video-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(201, 75, 75, 1);
}

.csmadhu__video-caption {
    padding: 25px;
}

.csmadhu__video-caption h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__video-caption p {
    font-size: 15px;
    color: #555;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Info Cards Grid */
.csmadhu__info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.csmadhu__info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.csmadhu__info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #c94b4b;
}

.csmadhu__info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50, #4a2c5d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.csmadhu__info-card:hover .csmadhu__info-icon {
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    transform: rotateY(180deg);
}

.csmadhu__info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__info-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    
}



.csmadhu__info-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #c94b4b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__info-link::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.csmadhu__info-link:hover {
    color: #4b134f;
}

.csmadhu__info-link:hover::after {
    transform: translateX(5px);
}

/* Bottom Support Section */
.csmadhu__patient-support {
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    border-radius: 15px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 30px rgba(201, 75, 75, 0.15);
}

.csmadhu__support-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.csmadhu__support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.csmadhu__support-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 0 0 5px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__support-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__support-button {
    display: inline-block;
    background: white;
    color: #1a1a2e;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.csmadhu__support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
    .csmadhu__journey-track {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 30px 0 40px;
    }
    
    .csmadhu__journey-step {
        min-width: 200px;
        margin-right: 20px;
    }
    
    .csmadhu__journey-track::-webkit-scrollbar {
        height: 8px;
    }
    
    .csmadhu__journey-track::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 8px;
    }
    
    .csmadhu__journey-track::-webkit-scrollbar-thumb {
        background: #c94b4b;
        border-radius: 8px;
    }
}

@media screen and (max-width: 992px) {
    .csmadhu__patient-info {
        padding: 80px 0;
    }
    
    .csmadhu__patient-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .csmadhu__patient-video-wrapper {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .csmadhu__info-cards {
        max-width: 650px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .csmadhu__patient-info {
        padding: 60px 0;
    }
    
    .csmadhu__patient-title {
        font-size: 32px;
    }
    
    .csmadhu__journey-track::before {
        display: none;
    }
    
    .csmadhu__video-play {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .csmadhu__patient-support {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px;
    }
    
    .csmadhu__support-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .csmadhu__patient-info {
        padding: 50px 0;
    }
    
    .csmadhu__patient-title {
        font-size: 28px;
    }
    
    .csmadhu__patient-subtitle {
        font-size: 16px;
    }
    
    .csmadhu__info-cards {
        grid-template-columns: 1fr;
    }
    
    .csmadhu__journey-text {
        font-size: 13px;
    }
    
    .csmadhu__support-title {
        font-size: 20px;
    }
}

/* Add these styles to your CSS file for the YouTube video integration */

.csmadhu__youtube-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    /* Maintain 16:9 aspect ratio for the video container */
    padding-top: 56.25%;
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* Optional: Add a hover effect to enhance the video container */
.csmadhu__youtube-container:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Style for video caption remains the same */
.csmadhu__video-caption {
    padding: 25px;
    background-color: white;
    border-radius: 0 0 10px 10px;
}

.csmadhu__video-caption h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__video-caption p {
    font-size: 15px;
    color: #555;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* For mobile responsiveness */
@media screen and (max-width: 576px) {
    .csmadhu__video-caption h3 {
        font-size: 18px;
    }
    
    .csmadhu__video-caption p {
        font-size: 14px;
    }
    
    .csmadhu__video-caption {
        padding: 20px;
    }
}



























/* Testimonial Section - Complete Styling */
.doctor__testimonial-section {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Ubuntu', Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
}

.doctor__testimonial-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.doctor__testimonial-header {
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a2e;
}

.doctor__testimonial-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.doctor__testimonial-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.doctor__testimonial-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

/* Carousel Styles */
.doctor__testimonial-carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
    padding: 20px 0 40px;
}

.doctor__testimonial-carousel:active {
    cursor: grabbing;
}

.doctor__testimonial-carousel .owl-item {
    overflow: hidden;
    transition: all ease-out 0.3s;
    transform: scale(0.7);
    opacity: 0;
}

.doctor__testimonial-carousel .owl-item.active {
    transform: scale(1);
    opacity: 1;
}

/* Testimonial Item */
.doctor__testimonial-item {
    padding: 30px 10px;
}

.doctor__testimonial-wrapper {
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.doctor__testimonial-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    position: relative;
    padding: 30px;
    color: #333;
    border-radius: 5px;
    background: #f5f7fa;
    border-left: 4px solid #c94b4b;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.doctor__testimonial-text::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 16px;
    font-size: 60px;
    line-height: 1;
    color: rgba(201, 75, 75, 0.1);
    font-family: serif;
}

.doctor__testimonial-blob,
.doctor__testimonial-img {
    border-radius: 100%;
}

.doctor__testimonial-img {
    position: relative;
    left: 50%;
    overflow: hidden !important;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    margin-left: -50px;
    box-shadow: 0 0 0 5px #c94b4b;
    transition: all ease-out 0.5s;
    transform: translateY(-30%);
    filter: brightness(2);
}

.doctor__testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor__testimonial-carousel .active .doctor__testimonial-img {
    transform: translateY(0);
    filter: brightness(1);
}

.doctor__testimonial-person {
    text-align: center;
    color: #1a1a2e;
    margin-top: 5px;
}

.doctor__testimonial-person b {
    color: #c94b4b;
    font-size: 16px;
    display: block;
    margin-bottom: 2px;
}

.doctor__testimonial-person p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}

.doctor__testimonial-blob {
    position: relative;
    left: 80%;
    width: 3px;
    height: 3px;
    transform: rotate(45deg);
}

@keyframes testimonialAnim {
    0% {
        opacity: 0;
        box-shadow: 0 0 0 0 #c94b4b, 0 0 0 0 #c94b4b;
    }
    50% {
        box-shadow: 0 15px 0 0 #c94b4b, 0 0 0 0 #c94b4b;
    }
    100% {
        opacity: 1;
        background: #c94b4b;
        box-shadow: 0 15px 0 4px #c94b4b, 0 35px 0 6px #c94b4b;
    }
}

.doctor__testimonial-carousel .active .doctor__testimonial-blob {
    transform-origin: 50% 50%;
    animation: testimonialAnim linear 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

/* Navigation Buttons */
.doctor__testimonial-carousel .owl-next,
.doctor__testimonial-carousel .owl-prev {
    font-size: 13px;
    line-height: 35px;
    position: absolute;
    top: 50%;
    padding: 0 10px;
    transition: all ease-out 0.25s;
    transform: translateY(-100%);
    opacity: 1;
    color: #fff;
    border-radius: 3px;
    background: #c94b4b;
}

.doctor__testimonial-carousel .owl-next:hover,
.doctor__testimonial-carousel .owl-prev:hover {
    color: #fff;
    background: #b83b3b;
}

.doctor__testimonial-carousel .owl-prev {
    left: 10px;
}

.doctor__testimonial-carousel .owl-next {
    right: 10px;
}

.doctor__testimonial-carousel .owl-next.disabled,
.doctor__testimonial-carousel .owl-prev.disabled {
    opacity: 0;
}

/* Dots navigation */
.doctor__testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.doctor__testimonial-carousel .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.doctor__testimonial-carousel .owl-dot.active {
    background: #c94b4b;
    transform: scale(1.3);
}

/* Background decoration */
.doctor__testimonial-section::before,
.doctor__testimonial-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201, 75, 75, 0.05);
    z-index: 1;
}

.doctor__testimonial-section::before {
    top: -50px;
    left: -50px;
}

.doctor__testimonial-section::after {
    bottom: -50px;
    right: -50px;
    background: rgba(75, 19, 79, 0.05);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .doctor__testimonial-carousel {
        padding: 15px 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .doctor__testimonial-section {
        padding: 80px 0;
    }
    
    .doctor__testimonial-title {
        font-size: 30px;
    }
    
    .doctor__testimonial-wrapper {
        max-width: 450px;
    }
    
    .doctor__testimonial-text {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .doctor__testimonial-section {
        padding: 60px 0;
    }
    
    .doctor__testimonial-title {
        font-size: 28px;
    }
    
    .doctor__testimonial-text {
        font-size: 14px;
        padding: 20px;
        padding-left: 25px;
    }
    
    .doctor__testimonial-text::before {
        font-size: 40px;
        left: 10px;
    }
    
    .doctor__testimonial-img {
        width: 80px;
        height: 80px;
        margin-left: -40px;
    }
    
    .doctor__testimonial-person b {
        font-size: 15px;
    }
    
    .doctor__testimonial-person p {
        font-size: 13px;
    }
}






























/* Creative Professional Footer Styles */
.csmadhu__footer {
    position: relative;
    overflow: hidden;
}

/* Top Wave Separator */
.csmadhu__footer-wave {
    position: relative;
    height: 120px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.csmadhu__footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* Main Footer */
.csmadhu__footer-main {
    background: linear-gradient(135deg, #2c3e50, #4a2c5d);
    padding: 70px 0 40px;
    color: #fff;
    position: relative;
}

/* Add decorative elements to footer background */
.csmadhu__footer-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 10h10v10H10V10zm0-10h10v10H10V0zM0 10h10v10H0V10z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.csmadhu__footer-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Grid Layout */
.csmadhu__footer-main .csmadhu__footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Column Styles */
.csmadhu__footer-column {
    position: relative;
}

/* About Column */
.csmadhu__footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.csmadhu__footer-logo-icon {
    font-size: 1.8rem;
    color: #c94b4b;
    transition: transform 0.3s ease;
}

.csmadhu__footer-logo:hover .csmadhu__footer-logo-icon {
    transform: scale(1.1);
}

.csmadhu__footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.csmadhu__footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
    font-family: 'Poppins', sans-serif;
    color: aliceblue;
    text-align: justify;
}

/* Social Icons */
.csmadhu__footer-social {
    display: flex;
    gap: 15px;
}

.csmadhu__footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.csmadhu__footer-social a:hover {
    background: #c94b4b;
    transform: translateY(-5px);
}

/* Headings */
.csmadhu__footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    border-radius: 3px;
}

/* Menu Links */
.csmadhu__footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.csmadhu__footer-menu li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.csmadhu__footer-menu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c94b4b;
}

.csmadhu__footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__footer-menu li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #c94b4b;
}

/* Contact List */
.csmadhu__footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.csmadhu__footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.csmadhu__footer-contact-list li i {
    width: 18px;
    color: #c94b4b;
    font-size: 16px;
    margin-top: 3px;
}

.csmadhu__footer-contact-list li span,
.csmadhu__footer-contact-list li a {
    color: #fff;
    font-size: 15px;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__footer-contact-list li a:hover {
    opacity: 1;
    color: #c94b4b;
}

/* CTA Button */
.csmadhu__footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    padding: 12px 20px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.csmadhu__footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Bottom Bar */
.csmadhu__footer-bottom {
    background: #1a1a2e;
    padding: 20px 0;
    color: #fff;
    position: relative;
}

.csmadhu__footer-bottom .csmadhu__footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.csmadhu__footer-copyright p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
    font-family: 'Poppins', sans-serif;
    color: aliceblue;
}

.csmadhu__footer-developer {
    font-size: 14px;
    opacity: 0.7;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__footer-developer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.csmadhu__footer-developer a:hover {
    border-bottom-color: #fff;
    opacity: 1;
}

.csmadhu__footer-top a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.csmadhu__footer-top a:hover {
    background: #c94b4b;
    transform: translateY(-5px);
}

/* Animation for Back to Top */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

.csmadhu__footer-top a {
    animation: float 2s ease-in-out infinite;
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
    .csmadhu__footer-main .csmadhu__footer-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }
}

@media screen and (max-width: 768px) {
    .csmadhu__footer-wave {
        height: 80px;
    }
    
    .csmadhu__footer-wave svg {
        height: 80px;
    }
    
    .csmadhu__footer-main {
        padding: 50px 0 30px;
    }
    
    .csmadhu__footer-main .csmadhu__footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .csmadhu__footer-bottom .csmadhu__footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .csmadhu__footer-heading {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .csmadhu__footer-wave {
        height: 60px;
    }
    
    .csmadhu__footer-wave svg {
        height: 60px;
    }
    
    .csmadhu__footer-logo-text {
        font-size: 1.3rem;
    }
    
    .csmadhu__footer-social {
        justify-content: center;
    }
    
    .csmadhu__footer-description {
        text-align: center;
    }
    
    .csmadhu__footer-heading {
        text-align: center;
    }
    
    .csmadhu__footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .csmadhu__footer-contact-list li {
        justify-content: center;
    }
    
    .csmadhu__footer-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}











































/* Professional Inner Page Banner Styles */
.medicare__pro-banner {
    position: relative;
    padding: 0;
    margin-top: 80px; /* Adjust based on header height */
    min-height: 400px;
    overflow: hidden;
    z-index: 1;
}

/* Background setup */
.medicare__pro-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: -2;
}

.medicare__pro-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

/* Decorative elements */
.medicare__pro-banner-decor {
    position: absolute;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.medicare__pro-banner-decor-left {
    left: 0;
    width: 200px;
}

.medicare__pro-banner-decor-right {
    right: 0;
    top: 0;
    width: 300px;
}

.medicare__pro-banner-decor svg {
    width: 100%;
    height: 100%;
}

.medicare__pro-banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 10h10v10H10V10zm0-10h10v10H10V0zM0 10h10v10H0V10z' fill='%23ffffff' fill-opacity='1'/%3E%3C/svg%3E");
    z-index: -1;
}

/* Container and content layout */
.medicare__pro-banner-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
}

.medicare__pro-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left side info column */
.medicare__pro-banner-info {
    flex: 1;
    color: var(--text-light);
    max-width: 600px;
}

.medicare__pro-banner-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.medicare__pro-banner-category i {
    color: #c94b4b;
    font-size: 8px;
}

.medicare__pro-banner-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.medicare__pro-banner-title span {
    display: block;
    font-weight: 300;
    font-size: 90%;
    color: rgb(255, 255, 255);
}

.medicare__pro-banner-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    opacity: 0.9;
    color: var(--text-light);
}

/* Breadcrumb navigation */
.medicare__pro-banner-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.medicare__pro-banner-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.medicare__pro-banner-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.medicare__pro-breadcrumb-divider {
    display: flex;
    align-items: center;
    font-size: 10px;
    opacity: 0.5;
}

.medicare__pro-breadcrumb-current {
    color: #c94b4b;
    font-weight: 500;
}

/* Right side feature image */
.medicare__pro-banner-feature {
    flex: 0 0 450px;
    position: relative;
}

.medicare__pro-banner-image-wrapper {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.medicare__pro-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.medicare__pro-banner-image-wrapper:hover .medicare__pro-banner-image {
    transform: scale(1.03);
}

/* Floating stats card */
.medicare__pro-banner-stats {
    position: absolute;
    bottom: -20px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.medicare__pro-stats-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.medicare__pro-stats-info {
    display: flex;
    flex-direction: column;
}

.medicare__pro-stats-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.medicare__pro-stats-text {
    font-size: 14px;
    color: #666;
    margin-top: 3px;
}

/* Bottom wave separator */
.medicare__pro-banner-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.medicare__pro-banner-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

/* Responsive styles */
@media screen and (max-width: 1100px) {
    .medicare__pro-banner-feature {
        flex: 0 0 400px;
    }
    
    .medicare__pro-banner-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 992px) {
    .medicare__pro-banner {
        min-height: auto;
    }
    
    .medicare__pro-banner-container {
        padding: 60px 0 100px;
    }
    
    .medicare__pro-banner-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .medicare__pro-banner-info {
        text-align: center;
        max-width: 100%;
    }
    
    .medicare__pro-banner-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .medicare__pro-banner-breadcrumb {
        justify-content: center;
    }
    
    .medicare__pro-banner-feature {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .medicare__pro-banner-container {
        padding: 50px 0 90px;
    }
    
    .medicare__pro-banner-title {
        font-size: 36px;
    }
    
    .medicare__pro-banner-stats {
        right: 20px;
    }
}

@media screen and (max-width: 576px) {
    .medicare__pro-banner-title {
        font-size: 30px;
    }
    
    .medicare__pro-banner-category {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .medicare__pro-banner-desc {
        font-size: 15px;
    }
    
    .medicare__pro-stats-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .medicare__pro-stats-number {
        font-size: 20px;
    }
    
    .medicare__pro-stats-text {
        font-size: 12px;
    }
}










































/* Doctor Profile Section Styles */
.medicare__doctor-profile {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

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

/* Section Header */
.medicare__profile-header {
    text-align: center;
    margin-bottom: 60px;
}

.medicare__profile-subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.medicare__profile-title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.medicare__profile-divider {
    height: 4px;
    width: 70px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Doctor Card */
.medicare__doctor-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Doctor Image Side */
.medicare__doctor-image-side {
    flex: 0 0 350px;
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #4a2c5d);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.medicare__doctor-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.medicare__doctor-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.medicare__doctor-credentials {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--accent-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.3);
}

.medicare__doctor-social {
    display: flex;
    gap: 15px;
}

.medicare__doctor-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.medicare__doctor-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Doctor Content Side */
.medicare__doctor-content-side {
    flex: 1;
    padding: 40px;
    position: relative;
}

.medicare__doctor-header {
    margin-bottom: 15px;
}

.medicare__doctor-name {
    font-size: 28px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--heading-font);
}

.medicare__doctor-specialty {
    font-size: 16px;
    color: #c94b4b;
    font-weight: 500;
}

.medicare__doctor-accent-bar {
    width: 50px;
    height: 4px;
    background: var(--accent-gradient);
    margin-bottom: 20px;
    border-radius: 2px;
}

.medicare__doctor-description {
    margin-bottom: 30px;
    text-align: justify;
}

.medicare__doctor-description p {
    color: #555;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.medicare__doctor-description p:last-child {
    margin-bottom: 0;
}

/* Doctor Stats */
.medicare__doctor-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.medicare__doctor-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    min-width: 120px;
}

.medicare__doctor-stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.medicare__doctor-stat-label {
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* CTA Section */
.medicare__doctor-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.medicare__doctor-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.2);
    text-decoration: none;
}

.medicare__doctor-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 75, 75, 0.3);
}

.medicare__doctor-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.medicare__doctor-cta-link:hover {
    color: #c94b4b;
}

.medicare__doctor-cta-link i {
    transition: transform 0.3s ease;
}

.medicare__doctor-cta-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
    .medicare__doctor-image-side {
        flex: 0 0 300px;
        padding: 30px;
    }
}

@media screen and (max-width: 992px) {
    .medicare__doctor-card {
        flex-direction: column;
    }
    
    .medicare__doctor-image-side {
        flex: auto;
        width: 100%;
        padding: 30px 30px 50px;
        align-items: center;
    }
    
    .medicare__doctor-image-wrapper {
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .medicare__doctor-stats {
        justify-content: center;
    }
    
    .medicare__doctor-cta {
        justify-content: center;
    }
    
    .medicare__doctor-credentials {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .medicare__doctor-profile {
        padding: 80px 0;
    }
    
    .medicare__profile-title {
        font-size: 30px;
    }
    
    .medicare__doctor-content-side {
        padding: 30px;
    }
    
    .medicare__doctor-name {
        font-size: 24px;
    }
    
    .medicare__doctor-stats {
        flex-direction: column;
        gap: 15px;
        max-width: 250px;
        margin: 0 auto 30px;
    }
    
    .medicare__doctor-stat-item {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: 12px 20px;
    }
    
    .medicare__doctor-stat-number {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .medicare__doctor-profile {
        padding: 60px 0;
    }
    
    .medicare__doctor-content-side {
        padding: 25px 20px;
    }
    
    .medicare__doctor-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .medicare__doctor-cta-btn,
    .medicare__doctor-cta-link {
        width: 100%;
        justify-content: center;
    }
}

























/* Doctor Qualifications Section Styles */
.csmadhu__qualifications {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Background decoration elements */
.csmadhu__qualifications::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 75, 0.05) 0%, rgba(201, 75, 75, 0) 70%);
    z-index: 0;
}

.csmadhu__qualifications::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 19, 79, 0.05) 0%, rgba(75, 19, 79, 0) 70%);
    z-index: 0;
}

/* Container with consistent width */
.csmadhu__qualifications-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.csmadhu__qualifications-header {
    text-align: center;
    margin-bottom: 60px;
}

.csmadhu__qualifications-subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__qualifications-title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__qualifications-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tabs Navigation */
.csmadhu__tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.csmadhu__tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

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

.csmadhu__tab-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #1a1a2e;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.csmadhu__tab-btn span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Raleway', sans-serif;
    transition: color 0.3s ease;
}

.csmadhu__tab-btn:hover .csmadhu__tab-icon {
    border-color: #c94b4b;
    color: #c94b4b;
}

.csmadhu__tab-btn:hover span {
    color: #c94b4b;
}

.csmadhu__tab-btn--active .csmadhu__tab-icon {
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(201, 75, 75, 0.2);
}

.csmadhu__tab-btn--active span {
    color: #c94b4b;
}

/* Tab Content */
.csmadhu__tabs-content {
    position: relative;
}

.csmadhu__tab-panel {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.csmadhu__tab-panel--active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Styles */
.csmadhu__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.csmadhu__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background: linear-gradient(to bottom, rgba(201, 75, 75, 0.3), rgba(75, 19, 79, 0.3));
    border-radius: 3px;
}

.csmadhu__timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 40px;
}

.csmadhu__timeline-item:last-child {
    padding-bottom: 0;
}

.csmadhu__timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 1;
    box-shadow: 0 0 0 5px white, 0 5px 15px rgba(0, 0, 0, 0.1);
}

.csmadhu__timeline-content {
    display: flex;
    position: relative;
}

.csmadhu__timeline-date {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-top: 5px;
}

.csmadhu__timeline-year {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.1;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__timeline-duration {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__timeline-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    border-left: 4px solid #c94b4b;
    transition: all 0.3s ease;
}

.csmadhu__timeline-item:hover .csmadhu__timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.csmadhu__timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__timeline-institution {
    font-size: 16px;
    font-weight: 500;
    color: #c94b4b;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__timeline-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Awards Grid */
.csmadhu__awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.csmadhu__award-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.csmadhu__award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 75, 75, 0.3);
}

.csmadhu__award-icon {
    flex: 0 0 80px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.csmadhu__award-content {
    flex: 1;
    padding: 20px;
}

.csmadhu__award-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__award-details {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.csmadhu__award-year {
    font-size: 15px;
    font-weight: 600;
    color: #c94b4b;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__award-org {
    font-size: 14px;
    color: #777;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
   
}

.csmadhu__award-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .csmadhu__qualifications {
        padding: 80px 0;
    }
    
    .csmadhu__awards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .csmadhu__timeline-content {
        flex-direction: column;
    }
    
    .csmadhu__timeline-date {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        padding-right: 0;
    }
    
    .csmadhu__timeline-duration {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .csmadhu__qualifications {
        padding: 60px 0;
    }
    
    .csmadhu__qualifications-title {
        font-size: 32px;
    }
    
    .csmadhu__tabs-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .csmadhu__tab-btn {
        flex: 1;
        min-width: 150px;
    }
    
    .csmadhu__tab-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .csmadhu__timeline::before {
        left: 15px;
    }
    
    .csmadhu__timeline-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .csmadhu__timeline-item {
        padding-left: 45px;
    }
}

@media screen and (max-width: 576px) {
    .csmadhu__qualifications {
        padding: 50px 0;
    }
    
    .csmadhu__qualifications-title {
        font-size: 28px;
    }
    
    .csmadhu__tab-btn {
        min-width: 120px;
    }
    
    .csmadhu__tab-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .csmadhu__tab-btn span {
        font-size: 14px;
    }
    
    .csmadhu__timeline-title {
        font-size: 18px;
    }
    
    .csmadhu__timeline-institution {
        font-size: 15px;
    }
    
    .csmadhu__timeline-description {
        font-size: 14px;
    }
    
    .csmadhu__award-card {
        flex-direction: column;
    }
    
    .csmadhu__award-icon {
        flex: 0 0 auto;
        height: 60px;
    }
    
    .csmadhu__award-title {
        font-size: 16px;
    }
}










































/* Simple Working FAQ Section Styles */
.medicare__simple-faq {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
}

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

/* Section Header */
.medicare__simple-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.medicare__simple-faq-subtitle {
    color: #c94b4b;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.medicare__simple-faq-title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
}

.medicare__simple-faq-divider {
    height: 3px;
    width: 60px;
    background: #c94b4b;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.medicare__simple-faq-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Layout */
.medicare__simple-faq-layout {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* Left Column - FAQ */
.medicare__simple-faq-accordion {
    flex: 1;
}

.medicare__simple-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
}

.medicare__simple-faq-question {
    padding: 20px;
    background-color: #f5f5f7;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.medicare__simple-faq-question:hover {
    background-color: #f0f0f2;
}

.medicare__simple-faq-question h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Raleway', sans-serif;
    padding-right: 30px;
}

.medicare__simple-faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #c94b4b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.medicare__simple-faq-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.medicare__simple-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.medicare__simple-faq-answer p {
    margin: 0;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Active state */
.medicare__simple-faq-item.active .medicare__simple-faq-question {
    background-color: #f0f0f2;
}

.medicare__simple-faq-item.active .medicare__simple-faq-toggle {
    background-color: #a73c3c;
}

.medicare__simple-faq-item.active .medicare__simple-faq-toggle i {
    transform: rotate(45deg);
}

.medicare__simple-faq-item.active .medicare__simple-faq-answer {
    max-height: 1000px; /* Large enough for all content */
}

/* Right Column - Image */
.medicare__simple-faq-image {
    flex: 0 0 370px;
    position: relative;
}

.medicare__simple-faq-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.medicare__simple-faq-contact {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 280px;
}

.medicare__simple-faq-contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.medicare__simple-faq-contact h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.medicare__simple-faq-contact p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.medicare__simple-faq-phone-btn {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medicare__simple-faq-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.2);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .medicare__simple-faq-layout {
        flex-direction: column;
    }
    
    .medicare__simple-faq-image {
        flex: 0 0 auto;
        max-width: 500px;
        margin: 0 auto;
        order: -1; /* Show image first on mobile */
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .medicare__simple-faq {
        padding: 60px 0;
    }
    
    .medicare__simple-faq-title {
        font-size: 30px;
    }
    
    .medicare__simple-faq-question h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .medicare__simple-faq {
        padding: 50px 0;
    }
    
    .medicare__simple-faq-question {
        padding: 15px;
    }
    
    .medicare__simple-faq-question h3 {
        font-size: 15px;
    }
    
    .medicare__simple-faq-answer p {
        padding: 15px;
        font-size: 14px;
    }
    
    .medicare__simple-faq-contact {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: -40px;
        z-index: 1;
        width: 90%;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}

















*{
    box-sizing:border-box;
  }
  body{
    background-image: url('https://subtlepatterns.com/patterns/sativa.png');
  }
  .title{
    text-align: center;
    font-family: 'Oswald';
    font-weight: 100;
    font-size: 3.75rem;
    letter-spacing:5px;
    background: linear-gradient(rgba(255,0,0,0), #c94b4b,rgba(255,0,0,0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
  }
  @media screen and (min-width:37.5em){
    .title {
      font-size: 4.75rem;
    }
  }
  p{
    margin:0 auto 2rem;
    text-align: center;
    font-family: 'oswald';
    font-size: 1.25rem;
    color:#444;
    font-weight: 100;
    width: 90%;
  }
  @media screen and (min-width:37.5em){
    p {
      height: 70%;
    }
  }
  .case-study-gallery{
    margin-top:50px;
    width: 90%;
    margin:50px auto;
    max-width:1100px;
  }
  .case-study {
    position: relative;
    display:block;
    width: 90%;
    height: 250px;
    margin:0 auto 2rem;
    background-size:cover;
    border-radius:10px;
    box-shadow:0px 25px 50px rgba(0,0,0,.5);
    overflow:hidden;
    transition:all .4s ease;
  }
  @media screen and (min-width:37.5em){
    .case-study {
      height: 300px;
    }
  }
  @media screen and (min-width:45em) {
    .case-study {
      display:inline-block;
      width: 45%;
      margin-left: 25px;
    }
  }
  .case-study__img{
    width: 90%;
    display:block;
    margin-top:50%;
    transform:translateY(50%);
    margin:0 auto;
  }
  .case-study__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    z-index:10;
  }
  .case-study__overlay:after {
    content:'';
    width: 100%;
    border-radius:10px;
    height: 100%;
    background-color: #202020;
    opacity:0;
    position: absolute;
    top:0;
    z-index:-10;
    left:0;
    transition:all .3s ease;
  }
    
  .case-study__title {
    position: relative;
    top:-200px;
    margin-bottom:2rem;
    margin-top:4rem;
    font-size: 1.25rem;
    font-family: 'Oswald';
    font-weight: 100;
    color:white;
    text-align: center;
    letter-spacing:5px;
    transition:all .3s cubic-bezier(.3, 0, 0, 1.3);
  }
    
  .case-study__link {
    position: relative;
    display:block;
    width:60%;
    top:200px;
    padding:10px;
    margin: 0 auto;
    font-family: 'Oswald';
    color:white;
    letter-spacing:3px;
    text-decoration: none;
    text-align: center;
    border:2px solid white;
    border-radius:3px;
    font-size: 1rem;
    transition:all .3s cubic-bezier(.3, 0, 0, 1.3);
  }
  .case-study__link:hover {
    background-color: white;
    color:#202020;
  }
  .case-study:hover .case-study__title{
    top:0;
  }
  .case-study:hover .case-study__link{
    top:0;
  }
    
  .case-study:hover .case-study__overlay:after{
    opacity:.75;
  } 
  .study1{
    background-image: url('../image/j1.png');
  }
  .study2 {
    background-image: url('../image/j2.png');
  }
  .study3{
    background-image: url('../image/j3.png');
  }
  .study4{
    background-image: url('../image/s1.png');
  }
  .study5{
    background-image: url('../image/s2.png');
  }
  .study6{
    background-image: url('../image/s3.png');
  }
  .study7{
    background-image: url('../image/s4.png');
  }
  .study8 {
    background-image: url('../image/s5.png');
  }
  .study9{
    background-image: url('../image/s6.png');
  }





































/* Final Contact Section CSS */
.dm__contact {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.dm__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* Section Heading */
.dm__section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.dm__section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c94b4b;
    margin: 15px auto 0;
}

.dm__contact-card {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Left Column - Dark Contact Info */
.dm__contact-info {
    width: 30%;
    padding: 40px 30px;
    background-color: #1a1a2e;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.dm__info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.dm__icon {
    width: 20px;
    display: flex;
    justify-content: center;
    color: #c94b4b;
    margin-top: 3px;
    margin-right: 15px;
    font-size: 18px;
}

.dm__info-content {
    flex: 1;
}

.dm__info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.dm__info-content p {
    font-size: 15px;
    margin: 0 0 5px 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Quote Section */
.dm__quote {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.dm__quote p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Right Column - Form & Map */
.dm__contact-right {
    width: 70%;
    display: flex;
    flex-direction: column;
}

/* Form Styles */
.dm__form {
    padding: 40px;
    background-color: #fff;
}

.dm__form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.dm__input, 
.dm__textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
}

.dm__input:focus,
.dm__textarea:focus {
    outline: none;
    border-color: #c94b4b;
}

.dm__textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.dm__submit-btn {
    background-color: #c94b4b;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dm__submit-btn:hover {
    background-color: #b83b3b;
}

/* Map */
.dm__map {
    flex-grow: 1;
    min-height: 300px;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .dm__contact-card {
        flex-direction: column;
    }
    
    .dm__contact-info,
    .dm__contact-right {
        width: 100%;
    }
    
    .dm__map {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .dm__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .dm__form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .dm__contact {
        padding: 40px 0;
    }
    
    .dm__form {
        padding: 30px 20px;
    }
}







































/* Total Knee Replacement Section Styles */
.drortho__tkr-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Container with specified width */
.drortho__tkr-container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.drortho__tkr-header {
    text-align: center;
    margin-bottom: 60px;
}

.drortho__tkr-subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.drortho__tkr-title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.drortho__tkr-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

/* Q&A Content */
.drortho__tkr-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.drortho__tkr-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drortho__tkr-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Question Styling */
.drortho__tkr-question {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(90deg, rgba(44, 62, 80, 0.05), rgba(74, 44, 93, 0.05));
    border-left: 4px solid #c94b4b;
    gap: 20px;
}

.drortho__tkr-question-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.3);
}

.drortho__tkr-question-text {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Raleway', sans-serif;
}

/* Answer Styling */
.drortho__tkr-answer {
    padding: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.drortho__tkr-answer p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

/* Background Decorations */
.drortho__tkr-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 75, 0.05) 0%, rgba(201, 75, 75, 0) 70%);
    z-index: 0;
}

.drortho__tkr-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 19, 79, 0.05) 0%, rgba(75, 19, 79, 0) 70%);
    z-index: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .drortho__tkr-container {
        max-width: 1200px;
    }
    
    .drortho__tkr-question-text {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) {
    .drortho__tkr-section {
        padding: 80px 0;
    }
    
    .drortho__tkr-title {
        font-size: 32px;
    }
    
    .drortho__tkr-question {
        padding: 20px 25px;
    }
    
    .drortho__tkr-question-text {
        font-size: 18px;
    }
    
    .drortho__tkr-answer {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .drortho__tkr-section {
        padding: 60px 0;
    }
    
    .drortho__tkr-question {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .drortho__tkr-question-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .drortho__tkr-answer {
        padding: 20px;
    }
    
    .drortho__tkr-answer p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 576px) {
    .drortho__tkr-section {
        padding: 50px 0;
    }
    
    .drortho__tkr-subtitle {
        font-size: 16px;
    }
    
    .drortho__tkr-title {
        font-size: 28px;
    }
    
    .drortho__tkr-question-text {
        font-size: 17px;
    }
}















/* Orthopedic Services Section Styles */
.drortho__services-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.drortho__services-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 75, 75, 0.03) 0%, rgba(201, 75, 75, 0) 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 1;
}

.drortho__services-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 44, 93, 0.03) 0%, rgba(74, 44, 93, 0) 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 1;
}

/* Container */
.drortho__services-container {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Header */
.drortho__services-header {
    text-align: center;
    margin-bottom: 60px;
}

.drortho__services-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #c94b4b;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.drortho__services-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.drortho__services-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.drortho__services-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

/* Services Grid */
.drortho__services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Service Card */
.drortho__service-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.drortho__service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Custom backgrounds for each card */
.drortho__service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.5s ease;
    z-index: -1;
}

.breast-cancer-card::before {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.03), rgba(199, 21, 133, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.7-6-6-6z' fill='%23FF69B4' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.gi-card::before {
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.03), rgba(139, 69, 19, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M17 5H3c-1.1 0-2 .9-2 2v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 8H3V7h14v6z' fill='%23FF7F50' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.gynae-card::before {
    background: linear-gradient(135deg, rgba(218, 112, 214, 0.03), rgba(139, 0, 139, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 5.5a4.5 4.5 0 100 9 4.5 4.5 0 000-9zM10 3a7 7 0 017 7 7 7 0 11-7-7z' fill='%23DA70D6' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.head-neck-card::before {
    background: linear-gradient(135deg, rgba(70, 130, 180, 0.03), rgba(25, 25, 112, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z' fill='%234682B4' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.musculoskeletal-card::before {
    background: linear-gradient(135deg, rgba(112, 128, 144, 0.03), rgba(47, 79, 79, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 3.5l-6 6 6 6 6-6-6-6z' fill='%23708090' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.neuro-card::before {
    background: linear-gradient(135deg, rgba(147, 112, 219, 0.03), rgba(72, 61, 139, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 0a10 10 0 100 20 10 10 0 000-20zm0 18a8 8 0 110-16 8 8 0 010 16z' fill='%239370DB' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.uro-card::before {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.03), rgba(0, 128, 128, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M17 1H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-7 14H5v-2h5v2zm5-4H5V9h10v2zm0-4H5V5h10v2z' fill='%2320B2AA' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.chemo-card::before {
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.03), rgba(0, 100, 0, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M10 0a10 10 0 100 20 10 10 0 000-20zm1 15H9v-2h2v2zm0-4H9V5h2v6z' fill='%233CB371' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.hormonal-card::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(184, 134, 11, 0.03));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M15 8c0-1.4-1.1-2.5-2.5-2.5S10 6.6 10 8H5v7c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V8h-2zm-2.5-.5c.3 0 .5.2.5.5h-1c0-.3.2-.5.5-.5z' fill='%23FFD700' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.drortho__service-card:hover::before {
    height: 100%;
}

/* Service Icon */
.drortho__service-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.drortho__service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Custom backgrounds for each icon */
.breast-cancer-icon {
    background: linear-gradient(135deg, #FF69B4, #C71585);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.2);
}

.gi-icon {
    background: linear-gradient(135deg, #FF7F50, #8B4513);
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.2);
}

.gynae-icon {
    background: linear-gradient(135deg, #DA70D6, #8B008B);
    box-shadow: 0 10px 20px rgba(218, 112, 214, 0.2);
}

.head-neck-icon {
    background: linear-gradient(135deg, #4682B4, #191970);
    box-shadow: 0 10px 20px rgba(70, 130, 180, 0.2);
}

.musculoskeletal-icon {
    background: linear-gradient(135deg, #708090, #2F4F4F);
    box-shadow: 0 10px 20px rgba(112, 128, 144, 0.2);
}

.neuro-icon {
    background: linear-gradient(135deg, #9370DB, #483D8B);
    box-shadow: 0 10px 20px rgba(147, 112, 219, 0.2);
}

.uro-icon {
    background: linear-gradient(135deg, #20B2AA, #008080);
    box-shadow: 0 10px 20px rgba(32, 178, 170, 0.2);
}

.chemo-icon {
    background: linear-gradient(135deg, #3CB371, #006400);
    box-shadow: 0 10px 20px rgba(60, 179, 113, 0.2);
}

.hormonal-icon {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.drortho__service-icon::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Custom after effects for each icon */
.breast-cancer-icon::after {
    background: linear-gradient(135deg, #FF69B4, #C71585);
}

.gi-icon::after {
    background: linear-gradient(135deg, #FF7F50, #8B4513);
}

.gynae-icon::after {
    background: linear-gradient(135deg, #DA70D6, #8B008B);
}

.head-neck-icon::after {
    background: linear-gradient(135deg, #4682B4, #191970);
}

.musculoskeletal-icon::after {
    background: linear-gradient(135deg, #708090, #2F4F4F);
}

.neuro-icon::after {
    background: linear-gradient(135deg, #9370DB, #483D8B);
}

.uro-icon::after {
    background: linear-gradient(135deg, #20B2AA, #008080);
}

.chemo-icon::after {
    background: linear-gradient(135deg, #3CB371, #006400);
}

.hormonal-icon::after {
    background: linear-gradient(135deg, #FFD700, #B8860B);
}

.drortho__service-card:hover .drortho__service-icon {
    transform: rotateY(180deg);
}

.drortho__service-card:hover .drortho__service-icon::after {
    opacity: 0.2;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
}

/* Service Content */
.drortho__service-content {
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.drortho__service-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

.drortho__service-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
}

.drortho__service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: #c94b4b;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: none;
    border-top: 1px solid rgba(201, 75, 75, 0.2);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.drortho__service-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.drortho__service-btn:hover {
    color: #4b134f;
}

.drortho__service-btn:hover i {
    transform: translateX(5px);
}

/* Custom button hover colors for each service */
.breast-cancer-card .drortho__service-btn {
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    color: #C71585;
}

.breast-cancer-card .drortho__service-btn:hover {
    color: #FF1493;
}

.gi-card .drortho__service-btn {
    border-top: 1px solid rgba(255, 127, 80, 0.2);
    color: #8B4513;
}

.gi-card .drortho__service-btn:hover {
    color: #FF7F50;
}

.gynae-card .drortho__service-btn {
    border-top: 1px solid rgba(218, 112, 214, 0.2);
    color: #8B008B;
}

.gynae-card .drortho__service-btn:hover {
    color: #DA70D6;
}

.head-neck-card .drortho__service-btn {
    border-top: 1px solid rgba(70, 130, 180, 0.2);
    color: #191970;
}

.head-neck-card .drortho__service-btn:hover {
    color: #4682B4;
}

.musculoskeletal-card .drortho__service-btn {
    border-top: 1px solid rgba(112, 128, 144, 0.2);
    color: #2F4F4F;
}

.musculoskeletal-card .drortho__service-btn:hover {
    color: #708090;
}

.neuro-card .drortho__service-btn {
    border-top: 1px solid rgba(147, 112, 219, 0.2);
    color: #483D8B;
}

.neuro-card .drortho__service-btn:hover {
    color: #9370DB;
}

.uro-card .drortho__service-btn {
    border-top: 1px solid rgba(32, 178, 170, 0.2);
    color: #008080;
}

.uro-card .drortho__service-btn:hover {
    color: #20B2AA;
}

.chemo-card .drortho__service-btn {
    border-top: 1px solid rgba(60, 179, 113, 0.2);
    color: #006400;
}

.chemo-card .drortho__service-btn:hover {
    color: #3CB371;
}

.hormonal-card .drortho__service-btn {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #B8860B;
}

.hormonal-card .drortho__service-btn:hover {
    color: #FFD700;
}

/* CTA Section */
.drortho__services-cta {
    background: linear-gradient(135deg, #2c3e50, #4a2c5d);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Custom CTA for oncology */
.oncology-cta {
    background: linear-gradient(135deg, #614385, #516395);
}

/* CTA Background Decoration */
.drortho__services-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 10h10v10H10V10zm0-10h10v10H10V0zM0 10h10v10H0V10z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.drortho__services-cta-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.drortho__services-cta-title {
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
}

.drortho__services-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.drortho__services-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.drortho__services-cta-btn-primary {
    background-color: #c94b4b;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(201, 75, 75, 0.3);
    font-family: 'Poppins', sans-serif;
}

/* Custom CTA button for oncology */
.oncology-cta-btn {
    background-color: #FF69B4;
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.oncology-cta-btn:hover {
    background-color: #C71585 !important;
    box-shadow: 0 15px 25px rgba(255, 105, 180, 0.4) !important;
}

.drortho__services-cta-btn-primary:hover {
    background-color: #b83b3b;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(201, 75, 75, 0.4);
}

.drortho__services-cta-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.drortho__services-cta-btn-secondary i {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drortho__services-cta-btn-secondary:hover {
    color: rgba(255, 255, 255, 0.8);
}

.drortho__services-cta-btn-secondary:hover i {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .drortho__services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .drortho__services-cta {
        padding: 40px;
    }
    
    .drortho__services-cta-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 992px) {
    .drortho__services-section {
        padding: 80px 0;
    }
    
    .drortho__services-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .drortho__services-cta-content {
        max-width: 100%;
    }
    
    .drortho__services-cta-actions {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 768px) {
    .drortho__services-grid {
        grid-template-columns: 1fr;
    }
    
    .drortho__services-title {
        font-size: 32px;
    }
    
    .drortho__services-cta {
        padding: 30px;
    }
}

@media screen and (max-width: 576px) {
    .drortho__services-section {
        padding: 60px 0;
    }
    
    .drortho__services-title {
        font-size: 28px;
    }
    
    .drortho__service-content {
        padding: 0 20px 20px;
    }
    
    .drortho__service-title {
        font-size: 20px;
    }
    
    .drortho__services-cta-title {
        font-size: 22px;
    }
    
    .drortho__services-cta-text {
        font-size: 15px;
    }
}

/* Animation for Spinning Icon */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spin 8s linear infinite;
}































































































/* Publications Section Styles */
.oncology__publications-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

/* Container with consistent width */
.oncology__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* Section Header */
.oncology__publications-header {
    text-align: center;
    margin-bottom: 40px;
}

.oncology__subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.oncology__title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.oncology__divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

.oncology__intro {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Publications Grid */
.oncology__publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin-bottom: 30px;
}

/* Publication Item */
.oncology__publication-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oncology__publication-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Publication Content */
.oncology__publication-content {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.oncology__publication-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
}

.oncology__meta {
    display: flex;
    justify-content: center;
    color: #666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.oncology__year i {
    color: #c94b4b;
    margin-right: 5px;
}

/* 3D Book Styles */
.book {
    position: relative;
    width: 160px; 
    height: 220px;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* HARDCOVER FRONT */
.hardcover_front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: rotateY(-34deg) translateZ(8px);
    -moz-transform: rotateY(-34deg) translateZ(8px);
    transform: rotateY(-34deg) translateZ(8px);
    z-index: 100;
    -webkit-transition: all 0.8s ease, z-index 0.6s;
    -moz-transition: all 0.8s ease, z-index 0.6s;
    transition: all 0.8s ease, z-index 0.6s;
}

.hardcover_front li:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-color: #eee;
    -webkit-transform: translateZ(2px);
    -moz-transform: translateZ(2px);
    transform: translateZ(2px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.hardcover_front li:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background: #fffbec;
    -webkit-transform: rotateY(180deg) translateZ(2px);
    -moz-transform: rotateY(180deg) translateZ(2px);
    transform: rotateY(180deg) translateZ(2px);
}

/* HARDCOVER BACK */
.hardcover_back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 100%;
    -moz-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transform: rotateY(-15deg) translateZ(-8px);
    -moz-transform: rotateY(-15deg) translateZ(-8px);
    transform: rotateY(-15deg) translateZ(-8px);
}

.hardcover_back li:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background: #fffbec;
    -webkit-transform: translateZ(2px);
    -moz-transform: translateZ(2px);
    transform: translateZ(2px);
}

.hardcover_back li:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background: #fffbec;
    -webkit-transform: translateZ(-2px);
    -moz-transform: translateZ(-2px);
    transform: translateZ(-2px);
}

/* BOOK SPINE */
.book_spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(60deg) translateX(-5px) translateZ(-12px);
    -moz-transform: rotateY(60deg) translateX(-5px) translateZ(-12px);
    transform: rotateY(60deg) translateX(-5px) translateZ(-12px);
    width: 16px;
    z-index: 0;
}

.book_spine li:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background: #eee;
    -webkit-transform: translateZ(2px);
    -moz-transform: translateZ(2px);
    transform: translateZ(2px);
}

.book_spine li:last-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background: #333;
    -webkit-transform: translateZ(-2px);
    -moz-transform: translateZ(-2px);
    transform: translateZ(-2px);
}

/* PAGES */
.page {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 100%;
    height: 98%;
    top: 1%;
    left: 3%;
    z-index: 10;
}

.page > li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    transition-timing-function: ease;
    background: -webkit-linear-gradient(left, #e1ddd8 0%, #fffbf6 100%);
    background: -moz-linear-gradient(left, #e1ddd8 0%, #fffbf6 100%);
    background: -ms-linear-gradient(left, #e1ddd8 0%, #fffbf6 100%);
    background: linear-gradient(left, #e1ddd8 0%, #fffbf6 100%);
    box-shadow: inset 0px -1px 2px rgba(50, 50, 50, 0.1), inset -1px 0px 1px rgba(150, 150, 150, 0.2);
    border-radius: 0px 5px 5px 0px;
}

.page > li:nth-child(1) {
    -webkit-transform: rotateY(-28deg);
    -moz-transform: rotateY(-28deg);
    transform: rotateY(-28deg);
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.page > li:nth-child(2) {
    -webkit-transform: rotateY(-30deg);
    -moz-transform: rotateY(-30deg);
    transform: rotateY(-30deg);
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.page > li:nth-child(3) {
    -webkit-transform: rotateY(-32deg);
    -moz-transform: rotateY(-32deg);
    transform: rotateY(-32deg);
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.page > li:nth-child(4) {
    -webkit-transform: rotateY(-34deg);
    -moz-transform: rotateY(-34deg);
    transform: rotateY(-34deg);
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.page > li:nth-child(5) {
    -webkit-transform: rotateY(-36deg);
    -moz-transform: rotateY(-36deg);
    transform: rotateY(-36deg);
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

/* HOVER EFFECTS */
.book:hover > .hardcover_front {
    -webkit-transform: rotateY(-145deg) translateZ(0);
    -moz-transform: rotateY(-145deg) translateZ(0);
    transform: rotateY(-145deg) translateZ(0);
    z-index: 0;
}

.book:hover > .page li:nth-child(1) {
    -webkit-transform: rotateY(-30deg);
    -moz-transform: rotateY(-30deg);
    transform: rotateY(-30deg);
    -webkit-transition-duration: 1.5s;
    -moz-transition-duration: 1.5s;
    transition-duration: 1.5s;
}

.book:hover > .page li:nth-child(2) {
    -webkit-transform: rotateY(-35deg);
    -moz-transform: rotateY(-35deg);
    transform: rotateY(-35deg);
    -webkit-transition-duration: 1.8s;
    -moz-transition-duration: 1.8s;
    transition-duration: 1.8s;
}

.book:hover > .page li:nth-child(3) {
    -webkit-transform: rotateY(-118deg);
    -moz-transform: rotateY(-118deg);
    transform: rotateY(-118deg);
    -webkit-transition-duration: 1.6s;
    -moz-transition-duration: 1.6s;
    transition-duration: 1.6s;
}

.book:hover > .page li:nth-child(4) {
    -webkit-transform: rotateY(-130deg);
    -moz-transform: rotateY(-130deg);
    transform: rotateY(-130deg);
    -webkit-transition-duration: 1.4s;
    -moz-transition-duration: 1.4s;
    transition-duration: 1.4s;
}

.book:hover > .page li:nth-child(5) {
    -webkit-transform: rotateY(-140deg);
    -moz-transform: rotateY(-140deg);
    transform: rotateY(-140deg);
    -webkit-transition-duration: 1.2s;
    -moz-transition-duration: 1.2s;
    transition-duration: 1.2s;
}

/* COVER DESIGN */
.coverDesign {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.coverDesign::after {
    background-image: -webkit-linear-gradient(-135deg, rgba(255, 255, 255, 0.45) 0%, transparent 100%);
    background-image: -moz-linear-gradient(-135deg, rgba(255, 255, 255, 0.45) 0%, transparent 100%);
    background-image: linear-gradient(-135deg, rgba(255, 255, 255, 0.45) 0%, transparent 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
}

.coverDesign h1 {
    color: #fff;
    font-size: 1.8em;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 54% 0 0 0;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.1);
}

.coverDesign p {
    color: #f8f8f8;
    font-size: 0.9em;
    text-align: center;
    text-shadow: -1px -1px 0 rgba(0,0,0,0.1);
}

/* Book Cover Color Variations */
.pink {
    background-color: #FF69B4;
    background-image: -webkit-linear-gradient(top, #FF69B4 58%, #C71585 0%);
    background-image: -moz-linear-gradient(top, #FF69B4 58%, #C71585 0%);
    background-image: linear-gradient(top, #FF69B4 58%, #C71585 0%);
}

.purple {
    background-color: #9370DB;
    background-image: -webkit-linear-gradient(top, #9370DB 58%, #483D8B 0%);
    background-image: -moz-linear-gradient(top, #9370DB 58%, #483D8B 0%);
    background-image: linear-gradient(top, #9370DB 58%, #483D8B 0%);
}

.orange {
    background-color: #FF7F50;
    background-image: -webkit-linear-gradient(top, #FF7F50 58%, #8B4513 0%);
    background-image: -moz-linear-gradient(top, #FF7F50 58%, #8B4513 0%);
    background-image: linear-gradient(top, #FF7F50 58%, #8B4513 0%);
}

.blue {
    background-color: #3498db;
    background-image: -webkit-linear-gradient(top, #3498db 58%, #2a90d4 0%);
    background-image: -moz-linear-gradient(top, #3498db 58%, #2a90d4 0%);
    background-image: linear-gradient(top, #3498db 58%, #2a90d4 0%);
}

.green {
    background-color: #20B2AA;
    background-image: -webkit-linear-gradient(top, #20B2AA 58%, #008080 0%);
    background-image: -moz-linear-gradient(top, #20B2AA 58%, #008080 0%);
    background-image: linear-gradient(top, #20B2AA 58%, #008080 0%);
}

.grey {
    background-color: #708090;
    background-image: -webkit-linear-gradient(top, #708090 58%, #2F4F4F 0%);
    background-image: -moz-linear-gradient(top, #708090 58%, #2F4F4F 0%);
    background-image: linear-gradient(top, #708090 58%, #2F4F4F 0%);
}

.cyan {
    background-color: #3CB371;
    background-image: -webkit-linear-gradient(top, #3CB371 58%, #006400 0%);
    background-image: -moz-linear-gradient(top, #3CB371 58%, #006400 0%);
    background-image: linear-gradient(top, #3CB371 58%, #006400 0%);
}

.magenta {
    background-color: #DA70D6;
    background-image: -webkit-linear-gradient(top, #DA70D6 58%, #8B008B 0%);
    background-image: -moz-linear-gradient(top, #DA70D6 58%, #8B008B 0%);
    background-image: linear-gradient(top, #DA70D6 58%, #8B008B 0%);
}

/* Download Button */
.btn {
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid #2c3e50;
    margin-top: 100px; 
    font-size: 0.7em;
    font-weight: 700;
    padding: 0.1em 0.4em;
    text-align: center;
    color: #2c3e50;
    text-decoration: none;
    -webkit-transition: color 0.3s, border-color 0.3s;
    -moz-transition: color 0.3s, border-color 0.3s;
    transition: color 0.3s, border-color 0.3s;
}

.btn:hover {
    border-color: #c94b4b;
    color: #c94b4b;
}

/* Thickness of book covers */
.hardcover_front li:first-child:after,
.hardcover_front li:first-child:before,
.hardcover_front li:last-child:after,
.hardcover_front li:last-child:before,
.hardcover_back li:first-child:after,
.hardcover_back li:first-child:before,
.hardcover_back li:last-child:after,
.hardcover_back li:last-child:before,
.book_spine li:first-child:after,
.book_spine li:first-child:before,
.book_spine li:last-child:after,
.book_spine li:last-child:before {
    background: #999;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

/* HARDCOVER front */
.hardcover_front li:first-child:after,
.hardcover_front li:first-child:before {
    width: 4px;
    height: 100%;
}

.hardcover_front li:first-child:after {
    -webkit-transform: rotateY(90deg) translateZ(-2px) translateX(2px);
    -moz-transform: rotateY(90deg) translateZ(-2px) translateX(2px);
    transform: rotateY(90deg) translateZ(-2px) translateX(2px);
}

.hardcover_front li:first-child:before {
    -webkit-transform: rotateY(90deg) translateZ(158px) translateX(2px);
    -moz-transform: rotateY(90deg) translateZ(158px) translateX(2px);
    transform: rotateY(90deg) translateZ(158px) translateX(2px);
}

.hardcover_front li:last-child:after,
.hardcover_front li:last-child:before {
    width: 4px;
    height: 160px;
}

.hardcover_front li:last-child:after {
    -webkit-transform: rotateX(90deg) rotateZ(90deg) translateZ(80px) translateX(-2px) translateY(-78px);
    -moz-transform: rotateX(90deg) rotateZ(90deg) translateZ(80px) translateX(-2px) translateY(-78px);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(80px) translateX(-2px) translateY(-78px);
}

.hardcover_front li:last-child:before {
    box-shadow: 0px 0px 30px 5px #333;
    -webkit-transform: rotateX(90deg) rotateZ(90deg) translateZ(-140px) translateX(-2px) translateY(-78px);
    -moz-transform: rotateX(90deg) rotateZ(90deg) translateZ(-140px) translateX(-2px) translateY(-78px);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(-140px) translateX(-2px) translateY(-78px);
}

/* HARDCOVER back */
.hardcover_back li:first-child:after,
.hardcover_back li:first-child:before {
    width: 4px;
    height: 100%;
}

.hardcover_back li:first-child:after {
    -webkit-transform: rotateY(90deg) translateZ(-2px) translateX(2px);
    -moz-transform: rotateY(90deg) translateZ(-2px) translateX(2px);
    transform: rotateY(90deg) translateZ(-2px) translateX(2px);
}

.hardcover_back li:first-child:before {
    -webkit-transform: rotateY(90deg) translateZ(158px) translateX(2px);
    -moz-transform: rotateY(90deg) translateZ(158px) translateX(2px);
    transform: rotateY(90deg) translateZ(158px) translateX(2px);
}

.hardcover_back li:last-child:after,
.hardcover_back li:last-child:before {
    width: 4px;
    height: 160px;
}

.hardcover_back li:last-child:after {
    -webkit-transform: rotateX(90deg) rotateZ(90deg) translateZ(80px) translateX(2px) translateY(-78px);
    -moz-transform: rotateX(90deg) rotateZ(90deg) translateZ(80px) translateX(2px) translateY(-78px);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(80px) translateX(2px) translateY(-78px);
}

.hardcover_back li:last-child:before {
    box-shadow: 10px -1px 80px 20px #666;
    -webkit-transform: rotateX(90deg) rotateZ(90deg) translateZ(-140px) translateX(2px) translateY(-78px);
    -moz-transform: rotateX(90deg) rotateZ(90deg) translateZ(-140px) translateX(2px) translateY(-78px);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(-140px) translateX(2px) translateY(-78px);
}

/* BOOK SPINE */
.book_spine li:first-child:after,
.book_spine li:first-child:before {
    width: 4px;
    height: 100%;
}

.book_spine li:first-child:after {
    -webkit-transform: rotateY(90deg) translateZ(-2px) translateX(2px);
    -moz-transform: rotateY(90deg) translateZ(-2px) translateX(2px);
    transform: rotateY(90deg) translateZ(-2px) translateX(2px);
}

.book_spine li:first-child:before {
    -webkit-transform: rotateY(-90deg) translateZ(-12px);
    -moz-transform: rotateY(-90deg) translateZ(-12px);
    transform: rotateY(-90deg) translateZ(-12px);
}

.book_spine li:last-child:after,
.book_spine li:last-child:before {
    width: 4px;
    height: 16px;
}

.book_spine li:last-child:after {
    -webkit-transform: rotateX(90deg) rotateZ(90deg) translateZ(8px) translateX(2px) translateY(-6px);
    -moz-transform: rotateX(90deg) rotateZ(90deg) translateZ(8px) translateX(2px) translateY(-6px);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(8px) translateX(2px) translateY(-6px);
}

.book_spine li:last-child:before {
    box-shadow: 5px -1px 100px 40px rgba(0, 0, 0, 0.2);
    -webkit-transform: rotateX(90deg) rotateZ(90deg) translateZ(-210px) translateX(2px) translateY(-6px);
    -moz-transform: rotateX(90deg) rotateZ(90deg) translateZ(-210px) translateX(2px) translateY(-6px);
    transform: rotateX(90deg) rotateZ(90deg) translateZ(-210px) translateX(2px) translateY(-6px);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .oncology__publications-grid {
        grid-gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .oncology__publications-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
    
    .oncology__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .oncology__publications-section {
        padding: 60px 0;
    }
    
    .oncology__publications-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    
    .book {
        width: 140px;
        height: 200px;
    }
    
    .oncology__publication-title {
        font-size: 14px;
    }
    
    .coverDesign h1 {
        font-size: 1.6em;
    }
    
    .coverDesign p {
        font-size: 0.8em;
    }
}

@media screen and (max-width: 576px) {
    .oncology__publications-section {
        padding: 50px 0;
    }
    
    .oncology__publications-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    
    .oncology__title {
        font-size: 28px;
    }
    
    .oncology__subtitle {
        font-size: 16px;
    }
    
    .book {
        width: 160px;
        height: 220px;
    }
}





























/* Academic Contributions Section Styles */
.oncology__academic-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.oncology__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* Section Header */
.oncology__section-header {
    text-align: center;
    margin-bottom: 40px;
}

.oncology__subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.oncology__title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.oncology__divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tabs Navigation */
.oncology__tabs {
    margin-top: 40px;
}

.oncology__tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.oncology__tab-btn {
    padding: 12px 20px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-family: 'Poppins', sans-serif;
}

.oncology__tab-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.oncology__tab-btn.active {
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: #fff;
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.2);
}

/* Tab Content */
.oncology__tab-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.oncology__tab-pane {
    display: none;
}

.oncology__tab-pane.active {
    display: block;
}

/* Papers List */
.oncology__paper-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.oncology__paper-item {
    display: flex;
    gap: 15px;
    border-left: 3px solid #c94b4b;
    padding-left: 15px;
}

.oncology__paper-year {
    font-size: 18px;
    font-weight: 700;
    color: #c94b4b;
    flex-shrink: 0;
    padding-top: 3px;
}

.oncology__paper-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
}

.oncology__paper-details p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* Membership List */
.oncology__membership-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.oncology__membership-list li {
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    border-left: 3px solid #c94b4b;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.oncology__membership-list li:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* Conference List */
.oncology__conference-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oncology__conference-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.oncology__conference-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.oncology__conference-year {
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: white;
    padding: 10px;
    border-radius: 5px;
    min-width: 60px;
    text-align: center;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    align-self: flex-start;
}

.oncology__conference-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 5px 0;
    font-family: 'Raleway', sans-serif;
}

.oncology__conference-details p {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Position List */
.oncology__position-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.oncology__position-list li {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.oncology__position-list li:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.oncology__position-list h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c94b4b;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.oncology__position-list p {
    font-size: 14px;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Achievement List */
.oncology__achievement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oncology__achievement-list li {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #c94b4b;
    transition: all 0.3s ease;
}

.oncology__achievement-list li:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.oncology__achievement-list h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.oncology__achievement-list p {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .oncology__paper-list,
    .oncology__membership-list,
    .oncology__position-list {
        grid-template-columns: 1fr;
    }
    
    .oncology__tab-buttons {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .oncology__tab-btn {
        flex-shrink: 0;
        padding: 10px 15px;
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .oncology__tab-content {
        padding: 20px;
    }
    
    .oncology__conference-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .oncology__conference-year {
        align-self: flex-start;
    }
    
    .oncology__membership-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .oncology__academic-section {
        padding: 50px 0;
    }
    
    .oncology__title {
        font-size: 28px;
    }
    
    .oncology__subtitle {
        font-size: 16px;
    }
    
    .oncology__membership-list {
        grid-template-columns: 1fr;
    }
    
    .oncology__tab-buttons {
        gap: 5px;
    }
    
    .oncology__tab-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}



















/* Blog Section Styles */
.csmadhu__blog-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden; /* Hide both x and y overflow */
}

.csmadhu__container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Background decoration elements */
.csmadhu__blog-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 75, 75, 0.05) 0%, rgba(201, 75, 75, 0) 70%);
    z-index: 0;
}

.csmadhu__blog-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 19, 79, 0.05) 0%, rgba(75, 19, 79, 0) 70%);
    z-index: 0;
}

/* Section Header */
.csmadhu__blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.csmadhu__blog-subtitle {
    color: #c94b4b;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__blog-title {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__blog-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #c94b4b, #4b134f);
    margin: 0 auto;
    border-radius: 2px;
}

.csmadhu__blog-intro {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* No filter styles needed */

/* Blog Grid */
.csmadhu__blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Item */
.csmadhu__blog-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.csmadhu__blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Image */
.csmadhu__blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 60%; /* 16:9 aspect ratio */
}

.csmadhu__blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.csmadhu__blog-item:hover .csmadhu__blog-image {
    transform: scale(1.1);
}

.csmadhu__blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(201, 75, 75, 0.2);
    font-family: 'Poppins', sans-serif;
}

/* Blog Content */
.csmadhu__blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.csmadhu__blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__blog-date, 
.csmadhu__blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.csmadhu__blog-date i, 
.csmadhu__blog-author i {
    color: #c94b4b;
    font-size: 14px;
}

.csmadhu__blog-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 15px 0;
    line-height: 1.4;
    font-family: 'Raleway', sans-serif;
    transition: color 0.3s ease;
}

.csmadhu__blog-item:hover .csmadhu__blog-item-title {
    color: #c94b4b;
}

.csmadhu__blog-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c94b4b;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
}

.csmadhu__blog-read-more i {
    transition: transform 0.3s ease;
}

.csmadhu__blog-read-more:hover {
    color: #4b134f;
}

.csmadhu__blog-read-more:hover i {
    transform: translateX(5px);
}

/* Load More Button */
.csmadhu__blog-load-more {
    text-align: center;
    margin-bottom: 60px;
}

.csmadhu__load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(201, 75, 75, 0.2);
    font-family: 'Poppins', sans-serif;
}

.csmadhu__load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201, 75, 75, 0.3);
}

.csmadhu__load-more-btn i {
    font-size: 14px;
}

/* Newsletter Section */
.csmadhu__blog-newsletter {
    background: linear-gradient(135deg, #2c3e50, #4a2c5d);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Newsletter Background Pattern */
.csmadhu__blog-newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 10h10v10H10V10zm0-10h10v10H10V0zM0 10h10v10H0V10z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.csmadhu__newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.csmadhu__newsletter-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.csmadhu__newsletter-text {
    color: #fff;
}

.csmadhu__newsletter-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    font-family: 'Raleway', sans-serif;
}

.csmadhu__newsletter-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__newsletter-form {
    position: relative;
    z-index: 2;
    flex: 1;
}

.csmadhu__form-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.csmadhu__newsletter-input {
    flex: 1;
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding-right: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.csmadhu__newsletter-input:focus {
    outline: none;
}

.csmadhu__newsletter-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    padding: 0 25px;
    background: linear-gradient(135deg, #c94b4b, #4b134f);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.csmadhu__newsletter-submit:hover {
    background: linear-gradient(135deg, #b83b3b, #3b0f3f);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .csmadhu__blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    .csmadhu__blog-section {
        padding: 80px 0;
    }
    
    .csmadhu__blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .csmadhu__blog-newsletter {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .csmadhu__newsletter-content {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .csmadhu__form-group {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .csmadhu__blog-section {
        padding: 60px 0;
    }
    
    .csmadhu__blog-title {
        font-size: 30px;
    }
    
    .csmadhu__blog-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .csmadhu__blog-filter {
        flex-shrink: 0;
    }
    
    .csmadhu__blog-item-title {
        font-size: 17px;
    }
    
    .csmadhu__blog-content {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .csmadhu__blog-section {
        padding: 50px 0;
    }
    
    .csmadhu__blog-grid {
        grid-template-columns: 1fr;
    }
    
    .csmadhu__blog-title {
        font-size: 26px;
    }
    
    .csmadhu__blog-subtitle {
        font-size: 16px;
    }
    
    .csmadhu__newsletter-input {
        padding-right: 15px;
        height: 45px;
    }
    
    .csmadhu__newsletter-submit {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 10px;
        width: 100%;
    }
    
    .csmadhu__form-group {
        flex-direction: column;
    }
}