
        
        /* Blogs Section Container */
        .blogs-section {
            width: 100%;
    max-width: 100%;
    padding: 50px 60px;
    background: white;
    border-radius: 0;
            box-shadow: 0 15px 40px rgba(26, 95, 122, 0.1);
            overflow: hidden;
            padding: 50px 40px;
             --hospital-blue: #1a5f7a;
            --accent-teal: #00b4a0;
            --light-blue: #e3f2fd;
            --warm-yellow: #ffb74d;
            --dark-blue: #0a3d62;
            
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--hospital-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.6;
        }
        
        /* Blogs Grid */
        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .blogs-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Blog Card */
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(26, 95, 122, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .blog-image {
            height: 320px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .blog-image:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }
        
        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-teal);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .blog-date {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--hospital-blue);
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .blog-excerpt {
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .blog-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hospital-blue);
            font-weight: 600;
            margin-right: 10px;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--hospital-blue);
            font-size: 0.95rem;
        }
        
        .read-more {
            color: var(--accent-teal);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            color: var(--hospital-blue);
            transform: translateX(5px);
        }
        
        .read-more i {
            margin-left: 5px;
            font-size: 0.9rem;
        }
        
        /* View All Button Container */
        .view-all-container {
            text-align: center;
            margin-top: 30px;
        }
        
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--hospital-blue) 0%, var(--dark-blue) 100%);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(26, 95, 122, 0.3);
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }
        
        .view-all-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(26, 95, 122, 0.4);
            color: white;
        }
        
        .view-all-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .view-all-btn:hover:before {
            left: 100%;
        }
        
        .view-all-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .view-all-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .blogs-section {
                padding: 30px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .blog-image {
                height: 200px;
            }
            
            .blog-content {
                padding: 20px;
            }
            
            .blog-title {
                font-size: 1.3rem;
            }
        }