/* Custom Blog & Sidebar Styles */
#blog { padding: 50px 0; }
#blog .row { display: flex; flex-wrap: wrap; }
#blog .col-lg-4 { display: flex; }
.margin-bottom-30 { margin-bottom: 30px; }
.blog-container a { color: #222 !important; }
.blog-head { font-size: 34px; text-align: center; color: #005E8F; }
.blog-pra { color: #005E8F; }
.link-blue { color: #222 !important; display: flex; flex-direction: column; width: 100%; text-decoration: none; }
.blog-card { background: #fff; border-radius: 12px; box-shadow: 0 4px 12px #0000001a; overflow: hidden; transition: transform .3s ease; height: 100%; display: flex; flex-direction: column; width: 100%; }
.blog-card:hover { transform: translateY(-5px); }
.blog-image img { width: 100% !important; height: 200px; object-fit: cover; }
.blog-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-title {
    font-size: clamp(16px, 1.7vw, 20px);
    margin: 0;
    margin-bottom: 10px;
    color: #222;
    padding: 0;
    font-weight: 600;
    line-height: normal;
}
.blog-author { font-size: 14px; color: #777; margin-bottom: 15px; }
.blog-desc {
    font-size: 16px;
    color: #555 !important;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 1199px) and (min-width: 768px) {
    #blog .col-lg-4 { width: 50%; }
}
@media (max-width: 767px) {
    #blog .col-lg-4 { width: 100%; }
    .blog-header h2 { font-size: 28px; }
}

.blog-container1 {
    background-color: #fff;
    box-shadow: none;
    padding: 15px;
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid #ddd;
}

.blog-container1 a {
    font-weight: bold;
}

.note {
    font-size: 30px;
    color: #005E8F;
    font-weight: 700;
    padding: 20px 0 10px;
}

.note-ans {
    font-size: 17px;
    color: #005E8F;
    font-weight: 600;
}

.note-list li {
    background-image: url(../../images/checked.webp);
    background-repeat: no-repeat;
    padding-left: 30px;
    background-position-y: center;
    list-style: none;
}

/* Sidebar Styles */
.sidebar-wrapper {
    margin: 20px 0;
}

.sidebar-widget {
   background-color: #fff;
    box-shadow: none;
    padding: 15px;
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid #ddd;
}

.sidebar-widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #005E8F;
    margin-bottom: 18px;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #00aeef;
}

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

.sidebar-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.sidebar-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list li a {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.sidebar-list li a:hover {
    color: #00aeef;
    padding-left: 5px;
}

.sidebar-contact-card {
    background: linear-gradient(135deg, #005E8F 0%, #00aeef 100%);
    color: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 1px 0 11px grey;
    margin-bottom: 25px;
}

.sidebar-contact-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 12px;
}

.sidebar-contact-card p {
    font-size: 14px;
    color: #e0f2fe;
    margin-bottom: 12px;
    text-align: center !important;
}

.sidebar-contact-card a {
    color: #fff;
}

.sidebar-btn {
    display: inline-block;
    background: #005E8F;   
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 5px;
}

.sidebar-btn:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
}

.sidebar-form .form-group {
    margin: 0 0 12px 0 !important;
}

.sidebar-form .form-control {
    border-left: 4px solid #005E8F;
    border-radius: 4px;
    height: 38px;
    font-size: 14px;
}

.sidebar-form textarea.form-control {
    height: 80px;
}

.sidebar-form .Submit-box {
    width: 100%;
    background-color: #005E8F;
    border: 1px solid #005E8F;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-form .Submit-box:hover {
    background-color: #00aeef;
    border-color: #00aeef;
}

/* Recent Posts with Images */
.sidebar-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.sidebar-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 78px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.sidebar-post-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-post-thumb:hover img {
    transform: scale(1.08);
}

.sidebar-post-info {
    flex-grow: 1;
}

.sidebar-post-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.sidebar-post-title:hover {
    color: #00aeef;
    text-decoration: none;
}

.sidebar-post-date {
    font-size: 12px;
    color: #777;
    margin-top: 4px;
    display: block;
}

.sidebar-post-date img {
    width: 12px;
    height: auto;
    margin-right: 4px;
}

/* FAQ Accordion Styling */
.faq-accordion {
    margin-top: 15px;
    margin-bottom: 25px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background-color: #f8fafc;
    color: #005E8F;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover, .faq-question.active {
    background-color: #005E8F;
    color: #ffffff;
}

.faq-icon {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background-color: #ffffff;
    padding: 0 20px;
}

.faq-answer p {
    margin: 12px 0 !important;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568 !important;
}

.faq-item.active .faq-answer {
    padding: 10px 20px 15px 20px;
}

/* Additional Helper Classes (No Inline CSS) */
.header-top marquee p, 
p.marquee-text {
    margin: 0;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

.header-top .social-media ul li {
    padding-right: 15px;
}

.blog-main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}

.blog-article-title {
    font-size: clamp(18px, 2.2vw, 26px);
    color: #005E8F;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.blog-table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.blog-table thead {
    background-color: #f2f2f2;
}

.blog-table th, 
.blog-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.footer-contact-link {
    color: #fff;
}


