::root {
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 0.5rem;
}

:root {
            --primary-color: #D72E3A;
            --primary-hover: #000000;
            --secondary-color: #000000;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #919191;
            --sidebar-bg: #343a40;
            --sidebar-text: #f8f9fa;
            --white: #ffffff;
            --black: #000000;
            --border-radius: 8px;
            --border-radius-sm: 4px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

body {
    font-family: var(--font-primary-normal);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--light-gray);
}

.dha-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.dha-container a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

.dha-container a:hover {
    color: var(--primary-hover);
}

.dha-container h1, 
.dha-container h2,
.dha-container h3,
.dha-container h4,
.dha-container h5,
.dha-container h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dha-container h1 {
    font-size: 2.2rem;
}

.dha-container h2 {
    font-size: 1.8rem;
    /* margin-top: 2rem; */
}

.dha-container h3 {
    font-size: 1.5rem;
    margin-top: 1.8rem;
}

.dha-container h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.dha-container h5 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
}

.dha-container h6 {
    font-size: 1rem;
    margin-top: 1rem;
    color: var(--dark-gray);
}

.dha-container p {
    margin-bottom: 1.2rem;
}

.dha-container ol, 
.dha-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.dha-container li {
    margin-bottom: 0.5rem;
}

/* Layout with unique class names */
.dha-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .dha-container {
        flex-direction: row;
    }
    
    .dha-container h1 {
        font-size: 2.5rem;
    }
}

.dha-main-content {
    flex: 1;
}

.dha-sidebar {
    width: 100%;
}

@media (min-width: 992px) {
    .dha-sidebar {
        width: 360px;
        flex-shrink: 0;
    }
}

/* Blog Post with unique class names */
.dha-blog-article {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.dha-featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .dha-featured-image {
        height: 400px;
    }
}

.dha-blog-wrapper {
    padding: 2rem;
}

.dha-blog-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 1.5rem;
}

.dha-meta-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .dha-meta-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Social Share with unique class names */
.dha-social-share {
    display: flex;
    gap: 0.75rem;
}

.dha-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    color: var(--dark-gray);
    transition: var(--transition);
}

.dha-social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Tags with unique class names */
.dha-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.dha-tag {
    background-color: var(--light-gray);
    color:#d72e3a;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Content Images with unique class names */
.dha-content-image {
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.dha-content-image img {
    width: 100%;
}

.dha-image-caption {
    background-color: var(--light-gray);
    padding: 0.75rem;
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-align: center;
}

/* Sidebar Components with unique class names */
.dha-sidebar-widget {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.dha-info-request {
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
}

.dha-widget-title {
    background-color: var(--primary-color);
    padding: 1.25rem;
    margin: 0;
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

/* Progress Steps with unique class names */
.dha-progress-steps {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0.5rem;
    position: relative;
}

.dha-progress-steps::before {
    content: '';
    position: absolute;
    top: 2.1rem;
    left: 2.5rem;
    right: 2.5rem;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.dha-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.dha-step-indicator {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: var(--transition);
}

.dha-step.active .dha-step-indicator {
    background-color: var(--primary-color);
    border-color: var(--white);
}

.dha-step-number {
    font-weight: 700;
    font-size: 0.9rem;
}

.dha-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Form Styles with unique class names */
.dha-request-form {
    padding: 1.5rem;
}

.dha-form-group {
    margin-bottom: 1.5rem;
}

.dha-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.dha-required {
    color: var(--primary-color);
    margin-left: 2px;
}

.dha-select-wrapper {
    position: relative;
}

.dha-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--dark-gray);
}

.dha-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: var(--white);
    appearance: none;
    transition: var(--transition);
}

.dha-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.3);
}

.dha-select option {
    background-color: var(--sidebar-bg);
    color: var(--white);
}

.dha-form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dha-step-counter {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dha-btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dha-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.dha-btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.dha-btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Popular Posts with unique class names */
.dha-popular-posts {
    background-color: var(--white);
}

.dha-post-list {
    display: flex;
    flex-direction: column;
}

.dha-post-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--black);
    transition: var(--transition);
}

.dha-post-item:last-child {
    border-bottom: none;
}

.dha-post-item:hover, .dha-post-item.active {
    background-color: var(--light-gray);
}

.dha-post-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.dha-post-title {
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA Widget with unique class names */
.dha-cta-widget {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--white);
}

.dha-cta-widget h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.dha-cta-widget p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

/* Article Body with unique class names */
.dha-article-body {
    max-width: 800px;
}

.dha-article-body h2 {
    margin-top: 2rem;
}

.dha-article-body ul {
    margin-left: 1.5rem;
}

.dha-article-body li {
    margin-bottom: 0.75rem;
}

/* Blockquote with unique class names */
.dha-blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    background-color: var(--light-gray);
    font-style: italic;
    position: relative;
}

.dha-blockquote::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: 10px;
    top: -10px;
    color: var(--primary-color);
    opacity: 0.2;
}

.dha-blockquote p {
    margin-bottom: 0;
}

.dha-blockquote-author {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    text-align: right;
    color: var(--dark-gray);
}

/* Table with unique class names */
.dha-table-container {
    margin: 2rem 0;
    overflow-x: auto;
}

.dha-table {
    width: 100%;
    border-collapse: collapse;
}

.dha-table th, .dha-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.dha-table th {
    background-color: var(--light-gray);
    font-weight: 600;
}

.dha-table tr:last-child td {
    border-bottom: none;
}

.dha-table tr:hover td {
    background-color: var(--light-gray);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .dha-blog-wrapper {
        padding: 2.5rem;
    }
    
    .dha-form-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: inherit;
}

.body1 {
    background-color: #111;
    color: white;
    padding: 15px; /* Slightly reduce padding inside cards */
    min-height: 100vh;
}

.container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 10px;
}

/* Filter Section */
.filter1-container1 {
    background-color: #e50914;
    padding: 15px; /* Slightly reduce padding inside cards */
    border-radius: 8px;
    margin-bottom: 30px;
}

.filter1-form1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter1-label1 {
    color: white;
    font-weight: bold;
    margin-right: 10px;
}

.filter1-input1,
.filter1-select1 {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: white;
    color: #333;
    flex: 1;
    min-width: 150px;
}

.filter1-input1::placeholder {
    color: #999;
}

/* Slider Container */
.slider1-container1 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Navigation Arrows */
.slider1-nav1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background:#d72e3a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.3s;
}

.slider1-nav1:hover {
    background:#d72e3a;
}

.slider1-prev1 {
    left: 11px;
    top: 200px;
}

.slider1-next1 {
    right: 9px;
    top: 200px;
}

@media (max-width: 768px) {
    #slider1Next1 {
        z-index: 0;
    }
    .slider1-nav1 {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

.slider1-track1 {
    transform: translateX(-326px);
    display: flex;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    will-change: transform;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider1-track1-item1 {
    flex: 0 0 100%;
    padding: 0 5px;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    display: flex;
}

.slider1-slide1 {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* Blog Card */
.blog1-card1 {
    flex: 1 1 calc(100% - 10px);
    margin: 0 2px;
    padding: 10px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.blog1-card1-inner1 {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-grow: 1;
    border: 1px solid rgb(0, 0, 0);
}

.blog1-card1:hover .blog1-card1-inner1 {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.blog1-image1 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #333;
}

.blog1-content1 {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog1-title1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.blog1-excerpt1 {
    color: #bbb;
    margin-bottom: 15px;
    flex: 1;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 4.5em;
}

.blog1-meta1 {
    margin-top: auto;
    padding-top: 15px;
}

.blog1-date1 {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.blog1-button1 {
    background-color: #e50914;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    font-weight: 500;
}

.blog1-button1:hover {
    background-color: #f40612;
}

/* Slider Controls */
.slider1-controls1 {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

/* No Results Message */
.no1-results1 {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    font-size: 1.2rem;
    width: 100%;
    display: none;
}

/* Responsive Design */
/* Responsive card sizes */
@media (max-width: 599px) {
    .slider1-track1-item1 {
        flex: 0 0 100%; /* 1 post on mobile */
    }
    .blog1-card1 {
        flex: 0 0 calc(100% - 10px);
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .slider1-track1-item1 {
        flex: 0 0 50%; /* 2 posts on tablet */
    }
    .blog1-card1 {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 992px) {
    .slider1-track1-item1 {
        flex: 0 0 33.333%; /* 3 posts on desktop */
    }
    .blog1-card1 {
        flex: 0 0 calc(33.333% - 10px);
    }
}

/* Hide scrollbar but keep functionality */
.slider1-track1::-webkit-scrollbar {
    display: none;
}

.slider1-track1 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}



.source1{
    font-size: 14px;
    font-style: italic;
}

@media screen and (min-width: 500px) and (max-width: 3000px) {
    .container2{
        display: none;
    }
}
#blog-heading1{
    color:#f40612 ;
}

/* news and event new section */
/* 
    News and Events Section specific styling 
*/

.news-events-section1 {
    max-width: 1200px !important;
    padding: 70px 40px;
    background-color: #ffffff;
    /* border-radius: 16px; */
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04); */
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

/* Background decorative element to make it premium */
.news-events-section1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    /* background: radial-gradient(circle, rgba(215, 46, 58, 0.05) 0%, rgba(215, 46, 58, 0) 70%); */
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.news-events-header1 {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 0;
}

.news-events-header1 .section-heading1 {
    color: #d72e3a;
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 1.2;
}

.news-events-header1 .section-subtitle1 {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.events-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 0;
}

.event-card1 {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.event-card1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
    z-index: 0;
}

.event-card1:hover::before {
    width: 5px;
}

.event-card1:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #eaeaea;
}

.event-card-content1 {
    position: relative;
    z-index: 2;
    /* padding-left: 15px; */
    flex-grow: 1;
}

.event-tag1 {
    display: inline-flex;
    align-items: center;
    background-color: rgba(215, 46, 58, 0.08);
    color: var(--primary-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.event-tag1::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-red);
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 46, 58, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(215, 46, 58, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(215, 46, 58, 0);
    }
}

.event-title1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-card1:hover .event-title1 {
    color: var(--primary-red);
}

.event-desc1 {
    font-size: 15.5px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.event-card-action1 {
    position: relative;
    z-index: 2;
    padding-left: 15px;
    margin-top: auto;
}

.btn-event1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: auto;
    background-color: #ffffff;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    box-shadow: none;
    transition: all 0.3s ease;
}

.btn-event1:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

.btn-event1::after {
    content: '→';
    margin-left: 8px;
    font-size: 18px;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.btn-event1:hover::after {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-events-section1 {
        padding: 40px 20px;
        margin: 30px auto;
        /* border-radius: 12px; */
    }

    .news-events-header1 {
        margin-bottom: 30px;
    }

    .news-events-header1 .section-heading1 {
        font-size: 32px;
    }

    .event-card1 {
        padding: 30px 20px;
    }

    .event-title1 {
        font-size: 22px;
    }
}