/* Custom CSS for Frontend */

.breadcam_bg {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.bradcam_text h3 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}

.doctor_page {
    padding: 100px 0;
}

.contact-section {
    padding: 100px 0;
}

.contact-title {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info__icon {
    font-size: 24px;
    color: #223a66;
    margin-right: 20px;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.blog_area {
    padding: 100px 0;
}

.blog_item {
    margin-bottom: 50px;
}

.blog_item_img {
    position: relative;
    margin-bottom: 30px;
}

.blog_item_date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #223a66;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

.blog_item_date h3 {
    font-size: 24px;
    margin: 0;
}

.blog_item_date p {
    margin: 0;
    font-size: 14px;
}

.blog_details h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-info-link {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.blog-info-link li {
    display: inline-block;
    margin-right: 20px;
}

.blog_right_sidebar .widget_title {
    font-size: 20px;
    margin-bottom: 30px;
}

.single_sidebar_widget {
    margin-bottom: 50px;
}

.cat-list {
    list-style: none;
    padding: 0;
}

.cat-list li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.cat-list li a {
    justify-content: space-between;
}


/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-toggle .current-lang {
    font-size: 14px;
    font-weight: 500;
}

.language-toggle .fa-angle-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .fa-angle-down {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    margin: 0;
    padding: 0;
    border: none;
}

.language-menu li a {
    display: block;
    padding: 12px 24px;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.language-menu li a:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #ffffff 100%);
    color: #1F3BB3;
    padding-left: 28px;
}

.language-menu li.active a {
    background: linear-gradient(135deg, #1F3BB3 0%, #2948b8 100%);
    color: #ffffff;
    font-weight: 600;
}

.language-menu li.active a:hover {
    background: linear-gradient(135deg, #1a2f8f 0%, #1F3BB3 100%);
    padding-left: 24px;
}

/* Checkmark for active language */
.language-menu li.active a::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Arrow for dropdown */
.language-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: -3px -3px 8px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* Smooth hover effect for each item */
.language-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #1F3BB3;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.language-menu li a:hover::before {
    transform: scaleY(1);
}

.language-menu li.active a::before {
    transform: scaleY(1);
    background: #ffffff;
}


/* Articles Area Styles - Ultra Modern & Premium */
.articles_area {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.articles_area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(circle at 30% 20%, rgba(31, 59, 179, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.articles_area .section_title {
    position: relative;
    z-index: 1;
}

.articles_area .section_title h3 {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.articles_area .section_title h3::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(31, 59, 179, 0.1) 0%, rgba(74, 105, 255, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
}

.articles_area .section_title h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #1F3BB3 0%, #4a69ff 100%);
    border-radius: 3px;
}

.articles_area .section_title p {
    font-size: 19px;
    color: #64748b;
    font-weight: 400;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.single_article {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 40px;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.single_article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 59, 179, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: 24px;
}

.single_article:hover::before {
    opacity: 1;
}

.single_article:hover {
    transform: translateY(-16px);
    box-shadow: 0 25px 70px rgba(31, 59, 179, 0.2);
    border-color: rgba(31, 59, 179, 0.2);
}

.article_thumb {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.article_thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.single_article:hover .article_thumb::after {
    opacity: 1;
}

.article_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.single_article:hover .article_thumb img {
    transform: scale(1.12) rotate(1deg);
}

.article_date {
    position: absolute;
    top: 12px;
    right: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    color: #1F3BB3;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.single_article:hover .article_date {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(31, 59, 179, 0.25);
}

.article_date span {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    color: #1F3BB3;
    background: linear-gradient(135deg, #1F3BB3 0%, #4a69ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article_date p {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748b;
}

.article_content {
    padding: 36px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.article_content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.4;
    min-height: 67px;
    letter-spacing: -0.5px;
}

.article_content h3 a {
    color: #0f172a;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single_article:hover .article_content h3 a {
    background: linear-gradient(135deg, #1F3BB3 0%, #4a69ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article_content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    flex: 1;
}

.article_content .read_more {
    color: #1F3BB3;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    align-self: flex-start;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.article_content .read_more::before {
    display: none;
}

.article_content .read_more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1F3BB3 0%, #4a69ff 100%);
    transition: width 0.3s ease;
}

.article_content .read_more:hover::after {
    width: 100%;
}

.article_content .read_more:hover {
    background: transparent;
    color: #2948b8;
    transform: translateX(4px);
    box-shadow: none;
}

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

.article_content .read_more:hover i {
    transform: translateX(4px);
}

/* View All Button - Text Link Style */
.articles_area .boxed-btn3 {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: none;
    color: #1F3BB3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.articles_area .boxed-btn3::before {
    display: none;
}

.articles_area .boxed-btn3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1F3BB3 0%, #4a69ff 100%);
    transition: width 0.3s ease;
}

.articles_area .boxed-btn3:hover::after {
    width: 100%;
}

.articles_area .boxed-btn3:hover {
    transform: translateX(4px);
    box-shadow: none;
    color: #2948b8;
}

.articles_area .boxed-btn3::before {
    content: '\f178';
    font-family: 'themify';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.articles_area .boxed-btn3:hover::before {
    transform: translateX(4px);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .articles_area {
        padding: 80px 0;
    }
    
    .articles_area .section_title h3 {
        font-size: 36px;
    }
    
    .article_thumb {
        height: 240px;
    }
    
    .article_content {
        padding: 28px 24px 24px;
    }
    
    .article_content h3 {
        font-size: 20px;
        min-height: auto;
    }
}


/* Article Detail Page Styles - Premium Design */
.article_detail_area {
    padding: 80px 0;
    background: #f8f9fc;
}

.article_detail_content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.article_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f2f7;
}

.article_meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
    background: #f8f9fc;
    border-radius: 8px;
}

.article_meta i {
    color: #1F3BB3;
    font-size: 18px;
}

.article_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article_tags .tag {
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f4ff 100%);
    color: #1F3BB3;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(31, 59, 179, 0.1);
    transition: all 0.3s ease;
}

.article_tags .tag:hover {
    background: linear-gradient(135deg, #1F3BB3 0%, #2948b8 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.article_featured_image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.article_featured_image img {
    width: 100%;
    height: auto;
    display: block;
}

.article_excerpt {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
    padding: 32px 36px;
    border-left: 5px solid #1F3BB3;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(31, 59, 179, 0.08);
}

.article_excerpt p {
    font-size: 19px;
    line-height: 1.9;
    color: #1a1a2e;
    margin: 0;
    font-weight: 500;
}

.article_body {
    font-size: 17px;
    line-height: 2;
    color: #2d3748;
}

.article_body h2,
.article_body h3,
.article_body h4 {
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
}

.article_body h2 {
    font-size: 32px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f2f7;
}

.article_body h3 {
    font-size: 26px;
}

.article_body h4 {
    font-size: 22px;
}

.article_body p {
    margin-bottom: 24px;
}

.article_body ul,
.article_body ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.article_body li {
    margin-bottom: 12px;
    line-height: 1.9;
}

.article_body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.article_body blockquote {
    background: linear-gradient(135deg, #f8f9fc 0%, #f0f2f7 100%);
    border-left: 5px solid #1F3BB3;
    padding: 28px 32px;
    margin: 32px 0;
    font-style: italic;
    color: #2d3748;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.article_footer {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 2px solid #f0f2f7;
}

.article_share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article_share h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.share_btn {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share_btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.share_btn.facebook {
    background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%);
}

.share_btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}

.share_btn.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.share_btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
}

/* Sidebar Styles - Premium */
.article_sidebar {
    position: sticky;
    top: 100px;
}

.sidebar_widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.widget_title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 3px solid #f0f2f7;
    position: relative;
}

.widget_title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1F3BB3 0%, #4a69ff 100%);
}

.related_article_item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f2f7;
    transition: all 0.3s ease;
}

.related_article_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related_article_item:hover {
    transform: translateX(4px);
}

.related_thumb {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related_article_item:hover .related_thumb img {
    transform: scale(1.15);
}

.related_content {
    flex: 1;
}

.related_content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.related_content h4 a {
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.related_content h4 a:hover {
    color: #1F3BB3;
}

.related_date {
    font-size: 13px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.related_date i {
    font-size: 13px;
    color: #1F3BB3;
}

.sidebar_widget .boxed-btn3 {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    background: linear-gradient(135deg, #1F3BB3 0%, #2948b8 100%);
    box-shadow: 0 6px 20px rgba(31, 59, 179, 0.3);
    transition: all 0.3s ease;
}

.sidebar_widget .boxed-btn3:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(31, 59, 179, 0.4);
}
.header-area .header-top_area .short_contact_list ul li a i.fa-bell{
    color: #ff5e13 !important;
}
/* Responsive */
@media (max-width: 991px) {
    .article_detail_content {
        padding: 35px 25px;
    }
    
    .article_sidebar {
        position: static;
        margin-top: 50px;
    }
    
    .article_body {
        font-size: 16px;
    }
}
