.banner_section {
    padding: 100px 0px;
    background-image: url('../images/banner/qnaro_banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}

.banner_section:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #ff9f0366 0%, #f6c66f8f 100%);
}

.banner_section .banner_inner {
    text-align: center;
    color: var(--menu);
    position: relative;
    z-index: 9;
}

.banner_section .banner_inner h1 {
    font-size: 45px;
    font-weight: 700;
    color: var(--text);
    margin: 25px auto;
    line-height: 50px;
}

.banner_section .banner_inner p {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: 30px;
}

.banner_section .banner_inner a {
    margin: 20px auto 0;
}

/* Banner Section End Here */

.brand_list {
    padding: 60px 0px;
    background: #fefefe;
}

.brand_list .overview {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.brand_list .overview p {
    color: #202020;
    font-size: 13px;
}

.brand_list .overview p .separator {
    font-size: 14px;
    line-height: 20px;
    margin-inline: 5px;
    color: #d2d2d2;
}

.brand_list .overview p i {
    color: var(--primary);
    font-style: normal;
    font-weight: 700;
}

.brand_list .overview a {
    color: var(--white);
    background: var(--link);
    padding: 5px 10px;
    font-size: 13px;
}

.brand_list .brand_inner {
    margin-top: 15px;
}

.brand_list .brand_inner .brand_box {
    text-align: center;
    margin: 10px 0px;
}

.brand_list .brand_inner .brand_box img {
    width: 135px;
}

/* Brands List Section End Here */

.about_us_section {
    padding: 60px 0px;
}

.about_us_section .about_info {
    padding-left: 20px;
    text-align: center;
}

.about_us_section .about_info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading);
    padding-bottom: 10px;
    line-height: 40px;
}

.about_us_section .about_info h2 span {
    color: var(--primary);
}

.about_us_section .about_info p {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    line-height: 28px;
    padding-bottom: 10px;
}

.about_us_section .about_img img {
    object-fit: fill;
    display: block;
    margin: 0 auto;
}

/* About Us Section End Here */

.blog_list {
    padding: 40px 0 0px;
}

.blog_list .blog_inner {
    position: relative;
    padding: 0 30px 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    transition: transform 0.5s ease;
}

.blog_list .blog_inner .blog_img {
    position: relative;
    margin-bottom: 0;
}

.blog_list .blog_inner .blog_info {
    position: relative;
}

.faq_section {
    padding: 40px 0px;
}

.faq_section h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary);
    padding-bottom: 10px;
    text-align: center;
}

/* FAQ's Section End Here */

/* CTA Section Redesign */
.cta_section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gcolor1) 0%, var(--gcolor2) 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract background shapes */
.cta_section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta_section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.cta_section .cta_info {
    text-align: left;
    position: relative;
    z-index: 2;
}

.cta_section .cta_info h3 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.cta_section .cta_info h3 span {
    color: #ccff00;
    /* Vibrant accent color */
    display: block;
    font-size: 42px;
    margin-top: 5px;
    -webkit-text-stroke: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta_section .cta_btn {
    float: right;
    position: relative;
    z-index: 2;
}

.white_black_btn {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.white_black_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--white);
    color: #1e5c26;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta_section {
        padding: 60px 0;
        text-align: center;
    }

    .cta_section .cta_info {
        text-align: center;
        margin-bottom: 30px;
    }

    .cta_section .cta_btn {
        float: none;
        display: flex;
        justify-content: center;
    }
}

/* Shree Call to Action Section End Here */

.blog_list .blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog_list .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.blog_list .post-media-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    /* 16:9 Aspect Ratio */
}

.blog_list .post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog_list .blog-card:hover .post-image {
    transform: scale(1.1);
}

.blog_list .post-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--heading);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog_list .post-date-badge i {
    color: var(--primary);
    font-size: 14px;
}

.blog_list .card-body-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog_list .card-body-content .card-title {
    margin-bottom: 12px;
}

.blog_list .card-body-content .card-title a {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--heading);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog_list .card-body-content .card-title a:hover {
    color: var(--primary);
}

.blog_list .card-body-content .card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog_list .post-meta-footer {
    padding-top: 20px;
    margin-top: auto;
    border-top: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog_list .post-meta-footer .post-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog_list .post-meta-footer .post-author .post-author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.blog_list .post-meta-footer .post-author span {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.blog_list .cate_view {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog_list .cate_view a {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.blog_list .cate_view a i {
    color: var(--primary);
}