/* Blog Page CSS Start */

.blog-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.blog-section .card {
    display: flex;
    justify-content: space-between;
    border: none;
    border-radius: 0px;
    margin-bottom: 30px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
}

.blog-section .card .image-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.blog-section .card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section .card .card-content {
    padding: 20px 20px;
    min-height: 315px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-section .card .card-content .card-title {
    font-size: 1.3rem;
    line-height: 32px;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Extrabold, sans-serif";
}

.blog-section .card .card-content .card-text {
    font-family: "Area-Normal-Regular, sans-serif";
    margin-bottom: 20px;
    font-size: 14px;
    color: #4b4b4b;
}

.blog-section .card .card-content .read-more {
    font-size: 15px;
    margin-bottom: 15px;
    color: #000;
    font-family: "Area-Normal-Bold, sans-serif";
    text-decoration: none;
    cursor: pointer!important;
    transition: color 0.3s ease;
}

.blog-section .card .card-content .read-more i {
    transition: transform 0.3s ease;
}

.blog-section .card .card-content .read-more:hover {
    color: #007BFF;
}

.blog-section .card .card-content .read-more:hover i {
    transform: translateX(5px);
}

@media (min-width: 768px) and (max-width: 1024px) {
    .blog-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .blog-section .card .card-content .card-title {
        font-size: 1.1rem;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .blog-section .card .card-content {
        min-height: auto;
    }

    .blog-section .card .card-content .card-title {
        font-size: 1.1rem;
        line-height: 26px;
    }
}

/* Join US Section Start */

.join-us-section .section-heading {
    font-size: 4rem;
    line-height: 80px;
}

.join-us-section .description {
    font-family: "Area-Normal-Semibold, sans-serif";
    font-size: 20px;
    color: #000;
}

.join-us-section .image-container {
    width: 100%;
    max-width: 100%;
    background-color: #aad04e;
    overflow: hidden;
}

.join-us-section .image-container img {
    width: 100%;
}

.join-us-section .join-us-in-change {
    height: 100%;
    width: 100%;
    padding: 40px;
    background-color: #aad04e;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.join-us-section .read-more {
    font-size: 16px;
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    background-color: #fff;
    border: none;
    outline: none;
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 20px;
    width: 40%;
}

.join-us-section .join-us-in-change .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.join-us-section .join-us-in-change .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
}

.join-us-section .join-us-in-change .contact-info .contact-item .contact-icon {
    width: 20px;
    height: 20px;
}

.join-us-section .join-us-in-change .contact-info .contact-item .links {
    font-family: "Area-Normal-Semibold, sans-serif";
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

.join-us-section .join-us-in-change .contact-info .contact-item a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .join-us-section .section-heading {
        font-size: 1.9rem;
        line-height: 40px;
    } 

    .join-us-section .read-more {
        width: 30%;
        font-size: 18px;
    }

    .desktop-break {
        display: none;
    }
}


@media (max-width: 767px) {       
    .join-us-section .section-heading {
        font-size: 1.5rem;
        line-height: 36px;
    } 

    .join-us-section .description {
        font-size: 15px;
    }

    .join-us-section .read-more {
        padding: 10px 20px;
        font-size: 15px;
        width: 50%;
    }

    .join-us-section .join-us-in-change {
        gap: 0px;
    }

    .desktop-break {
        display: none;
    }
}

/* Join US Section End */

/* Blog Page CSS End */

/* Blog Inner Page CSS Start */

.blog-inner-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.blog-inner-section .blog-post-content .image-container {
    width: 100%;
    height: 100%;
    max-width: 600px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-inner-section .blog-post-content .image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-inner-section .blog-post-content p {
    font-family: "Area-Normal-Regular, sans-serif";
    font-size: 15px;
    color: #4b4b4b;
    text-align: justify;
}

.blog-inner-section .blog-post-content p span {
    font-family: "Area-Normal-Regular, sans-serif";
    font-size: 15px;
    color: #4b4b4b;
    text-align: justify;
}

.blog-inner-section .blog-post-content li {
    font-family: "Area-Normal-Regular, sans-serif";
    font-size: 15px;
    color: #4b4b4b;
    text-align: justify;
}

.blog-inner-section .blog-post-content h2 {
    font-family: "Area-Normal-Semibold, sans-serif"!important;
}

.blog-inner-section .sidebar {
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.blog-inner-section .sidebar .heading {
    font-size: 1.5rem;
    color: #000;
    padding-bottom: 0.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #aad04e;
    font-family: "Area-Normal-Semibold, sans-serif";
}

.blog-inner-section .sidebar .related-post {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-inner-section .sidebar .related-post:last-child {
    margin-bottom: 0px;
}

.blog-inner-section .sidebar .related-post .image-container {
    width: 30%;
}

.blog-inner-section .sidebar .related-post img {
    height: auto;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-inner-section .sidebar .related-post .post-content {
    width: 70%;
}
.blog-inner-section .sidebar .related-post:hover img {
    transform: scale(1.05);
}


.blog-inner-section .sidebar .related-post .post-title {
    font-size: 0.9rem;
    color: #000;
    text-decoration: none;
    font-family: "Area-Normal-Semibold, sans-serif";
}

.blog-inner-section .sidebar .related-post .description {
    margin-bottom: 0px;
} 

@media (max-width: 767px) {
    .blog-inner-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .blog-inner-section .sidebar .related-post .post-title {
        font-size: 0.8rem;
    }
}

  
/* Blog Inner Page CSS End */