/* Reset and Base Styles */


/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.logo-text {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.main-nav a i {
    margin-left: 5px;
    font-size: 10px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.donate-btn a {
    background-color: var(--primary-color);
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.donate-btn a:hover {
    background-color: #e6af00;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Blog Navigation */
.blog-navigation {
    background-color: white;
    /* padding: 15px 0; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.9s ease-out;
    margin-top: 6.6rem;

}

.blog-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog {
    display: flex;
    align-items: center;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.back-to-blog i {
    margin-right: 5px;
}

.back-to-blog:hover {
    color: var(--primary-color);
}

.blog-breadcrumbs {
    color: #666;
    font-size: 14px;
}

.blog-breadcrumbs a {
    color: #666;
    transition: color 0.3s;
}

.blog-breadcrumbs a:hover {
    color: var(--primary-color);
}

/* Blog Header */
.blog-header {
    padding: 40px 0 20px;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 5px;
}

/* Featured Image */
.featured-image {
    margin-bottom: 40px;
    animation: fadeIn 1.1s ease-out;
}

.featured-image img {
    width: 100%;
    height: 45%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Content */
.blog-content {
    padding: 0 0 60px;
    animation: fadeIn 1.2s ease-out;
}

.content-wrapper {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 2;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.main-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #333;
}

.main-content p {
    margin-bottom: 20px;
    color: #555;
}

.main-content ul,
.main-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.main-content ul li,
.main-content ol li {
    margin-bottom: 10px;
    color: #555;
}

.main-content ul {
    list-style-type: disc;
}

.main-content ol {
    list-style-type: decimal;
}

.image-gallery {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 250px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.caption {
    font-size: 14px;
    color: #666;
    text-align: center;
}

blockquote {
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-weight: bold;
    color: #333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 30px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.event-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.event-details h3 {
    margin-bottom: 15px;
    color: #333;
}

.event-details p {
    margin-bottom: 10px;
}

.blog-tags {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.blog-tags span {
    font-weight: bold;
    color: #333;
}

.blog-tags a {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    transition: all 0.3s;
}

.blog-tags a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.blog-share {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share span {
    font-weight: bold;
    color: #333;
}

.share-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s;
}

.share-icon:hover {
    transform: translateY(-3px);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.whatsapp {
    background-color: #25d366;
}

.linkedin {
    background-color: #0077b5;
}

.email {
    background-color: #ea4335;
}

/* Sidebar */
.sidebar {
    flex: 1;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: #333;
}

.author-widget {
    text-align: center;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-widget p {
    color: #555;
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.author-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    transition: all 0.3s;
}

.author-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.categories-widget ul li {
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.categories-widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: #555;
    transition: color 0.3s;
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: #333;
    transition: color 0.3s;
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-content .date {
    font-size: 12px;
    color: #666;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud a {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    transition: all 0.3s;
}

.tags-cloud a:hover {
    background-color: var(--primary-color);
    color: #333;
}

/* Related Posts */
.related-posts {
    padding: 60px 0;
    background-color: #f0f0f0;
    animation: fadeIn 1.3s ease-out;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 28px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.related-post {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s forwards;
}

.related-post:nth-child(1) {
    animation-delay: 0.1s;
}

.related-post:nth-child(2) {
    animation-delay: 0.2s;
}

.related-post:nth-child(3) {
    animation-delay: 0.3s;
}

.related-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-post:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #ffff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
}

.related-post-content {
    padding: 20px;
}

.related-post-content h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.related-post-content h3 a {
    color: #333;
    transition: color 0.3s;
}

.related-post-content h3 a:hover {
    color: var(--primary-color);
}

.related-post-content .date {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.related-post-content p {
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Comments Section */
/* --- Enhanced Comment Section Styles --- */

.comments-section {
    background: #f7f8fa;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    /* padding: 60px 0;
    margin-top: 40px; */
}

.comments-list {
    margin-top: 40px;
}

.comment {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 24px 28px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
    position: relative;
}

.comment:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}

.comment.reply {
    margin-left: 60px;
    background: #f3f6fa;
    border-left: 4px solid var(--primary-color);
    box-shadow: none;
    padding: 20px 24px;
}

.comment-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-header h4 {
    color: #222;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.comment-date {
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
}

.comment-content p {
    color: #444;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.comment button,
.reply-btn {
    background: var(--primary-color);
    color: #222;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(255, 224, 102, 0.10);
}

.comment button:hover,
.reply-btn:hover {
    background: var(--primary-color);
    color: #111;
    box-shadow: 0 4px 16px rgba(255, 224, 102, 0.18);
}

.comment-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 36px 32px 28px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.comment-form h3 {
    margin-bottom: 18px;
    color: #222;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#replyingTo {
    background: #fffbe6;
    border-left: 4px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

#replyingTo a {
    color: #e8590c;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.98rem;
}

#replyingTo a:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group-blogdetails {
    flex: 1;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e9ecef;
    border-radius: 7px;
    font-size: 1rem;
    background: #f8fafc;
    margin-bottom: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
    /* box-shadow: 0 0 0 2px #ffe06633; */
    outline: none;
}

.comment-form textarea {
    min-height: 90px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
}

.submit-btn:hover {
    background: linear-gradient(90deg, #2bc0e4 0%, #eaecc6 100%);
    color: #222;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 600px) {

    .comment,
    .comment-form {
        padding: 18px 8px;
    }

    .comment.reply {
        margin-left: 18px;
        padding: 14px 8px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Newsletter Section */
.newsletter {
    background-color: var(--beige-color);
    padding: 67px 0% 0px 6px;
    color: black;
    animation: fadeIn 1.6s ease-out;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.newsletter p {
    margin-bottom: 30px;
    color: #2b2121;
}

.newsletter .form-group-blogdetails {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter button {
    background-color: var(--primary-color);
    color: #ffff;
    border: none;
    padding: 0 25px;
    border-radius: 0 5px 5px 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter button:hover {
    background-color: var(--primary-color);
}

/* Footer Section */
footer {
    background-color: #1a1a2e;
    color: white;
    padding: 60px 5% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 20px;
}

.footer-address p {
    margin-bottom: 10px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #333;
    transform: translateY(-3px);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.quick-links,
.website-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-map {
    flex: 1;
    min-width: 250px;
}

.footer-map-container {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.download-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.download-btn:hover {
    background-color: #e6af00;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 14px;
}

/* Contact Us Fixed Button */
.contact-us-fixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.contact-us-fixed a {
    display: block;
    background-color: var(--primary-color);
    color: #333;
    padding: 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    border-radius: 5px 0 0 5px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-us-fixed a:hover {
    background-color: #e6af00;
    padding-bottom: 25px;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 2000;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul {
    margin-top: 60px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: #333;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 10px;
    }

    .main-nav a {
        font-size: 12px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        order: -1;
    }

    .related-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 3%;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .blog-navigation .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .blog-header {
        padding: 30px 0 15px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .comment.reply {
        margin-left: 30px;
    }

    .newsletter .form-group-blogdetails {
        flex-direction: column;
    }

    .newsletter input {
        /* border-radius: 5px;
        margin-bottom: 10px; */
    }

    .newsletter button {
        border-radius: 5px;
        padding: 15px;
    }

    .contact-us-fixed {
        display: none;
    }
}

@media (max-width: 480px) {


    .donate-btn a {
        padding: 8px 15px;
        font-size: 12px;
    }

    .blog-title {
        font-size: 24px;
    }

    .main-content {
        padding: 20px;
    }

    .main-content h2 {
        font-size: 20px;
    }

    .image-gallery {
        flex-direction: column;
    }

    .comment {
        flex-direction: column;
        gap: 10px;
    }

    .comment-header {
        flex-direction: column;
        gap: 5px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

.form-group-blog {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}