/* Blog page - smooth scroll; right sidebar sticky until pagination then scrolls with page */
html:has(body.new-blog-page) {
    scroll-behavior: smooth;
}

/* Blog page - banner starts below fixed header */
.new-blog-page .blog-banner-section {
    position: relative;
    width: 100%;
    min-height: 59vh;
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 73px; /* clear fixed header */
}
@media (max-width: 993px) {
    .new-blog-page .blog-banner-section {
        margin-top: 53px;
    }
}

.new-blog-page .blog-banner-section .blog-banner-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.new-blog-page .blog-banner-section .blog-banner-image-mobile {
    display: none;
}
@media (max-width: 768px) {
    .new-blog-page
        .blog-banner-section
        .blog-banner-image:not(.blog-banner-image-mobile) {
        display: none;
    }
    .new-blog-page .blog-banner-section .blog-banner-image-mobile {
        display: block;
    }
}

.new-blog-page .blog-banner-section .blog-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.new-blog-page .blog-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
}

.new-blog-page .blog-breadcrumb-link {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #ffffffcc;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.new-blog-page .blog-breadcrumb-link:hover {
    opacity: 1;
    color: rgb(255, 255, 255);
}

.new-blog-page .blog-breadcrumb-arrow {
    width: 14px;
    height: 13px;
    display: block;
    flex-shrink: 0;
}

.new-blog-page .blog-breadcrumb-current {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
}

.new-blog-page .blog-banner-section .blog-banner-title {
    position: relative;
    z-index: 2;
    font-family: "Lato", sans-serif;
    font-weight: 700; /* Bold */
    font-style: normal; /* Bold ke liye font-style nahi hota */
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
}
@media (max-width: 769px) {
    .new-blog-page .blog-banner-section .blog-banner-title {
        font-size: 24px;
    }
    .new-blog-page .blog-banner-breadcrumb {
        font-size: 14px;
    }
    .new-blog-page .blog-breadcrumb-link {
        font-size: 14px;
    }
    .new-blog-page .blog-breadcrumb-current {
        font-size: 14px;
    }
}

/* ========== Blog listing layout (align with header: 1500px + 50px) ========== */
.new-blog-page .blog-main {
    padding: 56px 0 40px;
    background: #f8f8f8;
    font-family: Inter, sans-serif;
    overflow: visible;
}

.new-blog-page .blog-layout {
    position: relative;
    overflow: visible;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 66px;
    align-items: start;
}

/* Blog grid - main content */
.new-blog-page .blog-content {
    min-width: 0;
}

.new-blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.new-blog-page .blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

/* .new-blog-page .blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
} */

.new-blog-page .blog-card-image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.new-blog-page .blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-blog-page .blog-card-body {
    padding: 1.25rem 1.25rem 20px;
}

.new-blog-page .blog-card-date {
    display: block;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 29px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #00000066;
    margin-bottom: 0.5rem;
}

.new-blog-page .blog-card-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0;
    /* text-transform: capitalize; */
    color: #111;
    margin: 0 0 0.6rem;
}

.new-blog-page .blog-card-excerpt {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    /* text-transform: capitalize; */
    color: #515151;
    margin: 0 0 1rem;
}

.new-blog-page .blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #f6883e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.new-blog-page .blog-card-readmore:hover {
    color: #e5792d;
}

.new-blog-page .blog-readmore-arrow {
    width: 27px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 518px) {
    .new-blog-page .blog-readmore-arrow {
        width: 22px;
        height: 15px;
    }
    .new-blog-page .blog-pagination {
        margin-top: 20px;
    }
}

/* Pagination */
.new-blog-page .blog-pagination {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    font-family: Inter, sans-serif;
}

.new-blog-page .blog-pagination-prev,
.new-blog-page .blog-pagination-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    cursor: default;
    line-height: 0;
}

.new-blog-page .blog-pagination-prev img,
.new-blog-page .blog-pagination-next img {
    width: 8px;
    height: 13px;
    display: block;
}

.new-blog-page .blog-pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.5rem;
    font-size: 14px;
    font-weight: 400;
    color: #515151;
    background: #fff;
    cursor: default;
    border: 1px solid #dddddd;
    border-radius: 4px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.new-blog-page .blog-pagination-num.is-active {
    color: #f7853a;
    font-weight: 600;
    font-size: 15px;
    background: #fff;
    border-color: #f7853a;
    cursor: default;
}

.new-blog-page .blog-pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 0.15rem;
    font-size: 14px;
    font-weight: 400;
    color: #515151;
    line-height: 1;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 4px;
}

/* Sidebar - scroll par sticky (Chrome fallback: .is-stuck from JS) */
.new-blog-page .blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    align-self: start;
    z-index: 5;
}

.new-blog-page .blog-sidebar.is-stuck {
    position: relative;
    top: auto;
    box-sizing: border-box;
    /* left & width set by JS for correct position */
}

.new-blog-page .blog-sidebar-widget {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); */
}

.new-blog-page .blog-sidebar-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    text-transform: capitalize;
}

.new-blog-page .blog-widget-recent-posts .blog-sidebar-heading {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #111111;
}

.new-blog-page .blog-widget-recent-posts .blog-sidebar-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 20px;
}

.new-blog-page .blog-widget-recent-comments .blog-sidebar-heading {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #111111;
}

.new-blog-page .blog-widget-recent-comments .blog-sidebar-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 1rem;
}

/* Search */
.new-blog-page .blog-search-form {
    position: relative;
    display: block;
}

/* Search input – two-page par #fafafa (body.new-blog-page, one-page par override in new_blogonepage.css) */
.new-blog-page .blog-search-input {
    width: 100%;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: Inter, sans-serif;
    border-radius: 30px;
    outline: none;
    transition: border-color 0.2s ease;
    text-decoration: none;
    border: none;
}

.new-blog-two-page .blog-search-input {
    background: #fafafa;
}

.new-blog-page .blog-search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #666;
    cursor: pointer;
    padding: 0;
}

.new-blog-page .blog-search-btn:hover {
    color: #f6883e;
}

/* Recent posts list */
.new-blog-page .blog-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-blog-page .blog-recent-item {
    display: flex;
    gap: 0.75rem;
    padding: 15px 0;
    /* border-bottom: 1px solid #eee; */
}

.new-blog-page .blog-recent-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.new-blog-page .blog-recent-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.new-blog-page .blog-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-blog-page .blog-recent-info {
    min-width: 0;
}

.new-blog-page .blog-recent-title {
    display: block;
    font-family: "Inter", sans-serif;
    font-weight: 400; /* Regular */
    font-style: normal; /* Regular ke liye font-style nahi hota */
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0;
    color: #515151;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.new-blog-page .blog-recent-date {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 29px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #00000066;
}

/* Recent comments */
.new-blog-page .blog-comments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.new-blog-page .blog-comment-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 2px solid #d5d5d5;
    align-items: center;
}

.new-blog-page .blog-comment-item:last-child {
    border-bottom: none;
}

.new-blog-page .blog-comment-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-blog-page .blog-comment-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.new-blog-page .blog-comment-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0;
    color: #515151;
    margin: 0;
}

/* Latest Property - customerrelationship.jpg */
.new-blog-page .blog-widget-latest-property {
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.new-blog-page .blog-widget-latest-property {
    border-radius: 0;
}

.new-blog-page .blog-widget-latest-property .blog-sidebar-heading {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: #111;
    padding: 20px 20px 0;
}

.new-blog-page .blog-widget-latest-property .blog-sidebar-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 1rem;
}

.new-blog-page .blog-latest-property-wrap {
    padding: 0 1.5rem 1.5rem;
}

.new-blog-page .blog-latest-property-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.new-blog-page .blog-latest-property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.new-blog-page .blog-widget-latest-property .blog-latest-property-link {
    border-radius: 0;
}

.new-blog-page .blog-latest-property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 8px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #f7f3ff;
    background: #f61b13;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

/* Responsive */
/* Sirf 993px–1300px (1130px type) screen par: gap aur sidebar width kam */
@media (min-width: 993px) and (max-width: 1300px) {
    .new-blog-page .blog-layout {
        gap: 48px;
        grid-template-columns: 1fr 320px;
    }
}

@media (max-width: 992px) {
    .new-blog-page .blog-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 769px) {
    .new-blog-page .blog-grid {
        grid-template-columns: 1fr;
    }
    .new-blog-page .blog-main {
        padding: 50px 0;
    }
    .new-blog-page .blog-layout {
        padding-left: 30px;
        padding-right: 30px;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }
    .new-blog-page .blog-latest-property-wrap {
        padding: 0;
    }
    .new-blog-page .blog-sidebar {
        display: contents;
    }
    .new-blog-page .blog-widget-search {
        width: -webkit-fill-available;
        order: 1;
    }
    .new-blog-page .blog-content {
        order: 2;
    }
    .new-blog-page .blog-widget-recent-posts {
        width: -webkit-fill-available;
        order: 3;
    }
    .new-blog-page .blog-widget-recent-comments {
        width: -webkit-fill-available;
        order: 4;
    }
    .new-blog-page .blog-widget-latest-property {
        order: 5;
    }
    .new-blog-page .blog-banner-section .blog-banner-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .faqs-section {
        max-width: none;
        padding-left: 30px;
        padding-right: 30px;
    }
    .faqs-content {
        padding-left: 0;
        padding-right: 0;
    }
    .new-blog-page .blog-card-title {
        font-size: 24px;
        line-height: normal;
    }
    .new-blog-page .blog-widget-recent-comments .blog-sidebar-heading {
        font-size: 14px;
    }
}

/* ========== FAQs Section (below blog) ========== */
.faqs-section {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    overflow: visible;
    padding-bottom: 2rem;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    box-sizing: border-box;
}

.faqs-bg {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #262f53;
}

.faqs-girl-wrap {
    position: absolute;
    bottom: -59px;
    left: 98px;
    width: 50%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    pointer-events: none;
}

.faqs-girl {
    max-width: 60%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

.faqs-content {
    position: relative;
    z-index: 2;
    grid-column: 2;
    justify-self: end;
    padding: 60px 0px 3rem 2rem;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
}

.faqs-title {
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 1.5rem;
    vertical-align: middle;
}

.faqs-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faqs-accordion-item {
    border: 1px solid #ffffff1a;
    /* padding: 0 1rem; */
    overflow: hidden;
}

.faqs-accordion-item:last-child {
    margin-bottom: 0;
}

.faqs-accordion-head {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
}

.faqs-accordion-num {
    flex-shrink: 0;
    width: 2rem;
}

.faqs-accordion-q {
    flex: 1;
}

.faqs-accordion-icon {
    flex-shrink: 0;
    font-size: 20px;
    color: #fff;
    line-height: 1;
}

.faqs-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 4rem; /* align with question text: left padding (1.25rem) + number (2rem) + gap (0.75rem) */
}
.faqs-accordion-item.is-open .faqs-accordion-body {
    padding-bottom: 1rem;
}

.faqs-accordion-answer {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    opacity: 0.6;
    margin: 0;
    padding-right: 2rem;
}

/* 1150px se kaam: girl image hatao, accordion header ke according width */
@media (max-width: 1150px) {
    .faqs-girl-wrap {
        display: none;
    }
    .faqs-section {
        grid-template-columns: 1fr;
        min-height: auto;
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 50px;
        padding-right: 50px;
        box-sizing: border-box;
    }
    .faqs-content {
        grid-column: 1;
        justify-self: stretch;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 2rem 0 2rem;
    }
}

@media (max-width: 992px) {
    .faqs-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .faqs-girl-wrap {
        min-height: 200px;
        justify-content: center;
        padding: 1rem;
    }
    .faqs-girl {
        max-width: 280px;
    }
    .faqs-content {
        max-width: none;
        padding: 2rem 1.5rem;
    }
}

/* ========== Get To Know Banner (same as home) ========== */
.get-to-know-banner-wrap {
    width: 100%;
    max-width: 1500px;
    padding: 70px 50px;
    box-sizing: border-box;
    margin: 0 auto;
}

.get-to-know-banner {
    position: relative;
    width: 100%;
    min-height: 330px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 70px 24px;
}

.get-to-know-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.get-to-know-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.get-to-know-banner-title {
    font-family: Lato, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
}

.get-to-know-banner-inner .btn1212 {
    color: white;
}

.get-to-know-banner-inner .btn1212 .btn1212-text {
    position: relative;
    z-index: 1;
    color: white;
}

.get-to-know-banner-inner .btn1212:hover,
.get-to-know-banner-inner .btn1212:hover .btn1212-text {
    color: white;
}

/* btn1212 - Contact Us button */
.btn1212 {
    height: 40px;
    width: 160px;
    background: #22356c;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family:
        Open Sans,
        sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
}

.btn1212::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #f6883e;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn1212:hover::before {
    left: 0;
}

.btn1212:hover {
    background: #f6883e;
    animation: backgroundPulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

@keyframes backgroundPulse {
    0% {
        background-color: #22356c;
    }
    50% {
        background-color: #f6883e;
        box-shadow: 0 6px 25px rgba(246, 136, 62, 0.5);
    }
    100% {
        background-color: #f6883e;
        box-shadow: 0 4px 15px rgba(246, 136, 62, 0.3);
    }
}

.btn1212 p {
    margin: 0;
    padding: 0;
    font-family:
        Open Sans,
        sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 100%;
}

.btn1212 div {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn1212 div::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    background: white;
    border-radius: 50%;
    transition: transform 0.5s;
    transform: scale(1);
    z-index: 0;
}

.btn1212 div img {
    width: 14px;
    height: 20px;
    transform: translate(-100%, 100%);
    transition: transform 0.5s;
    z-index: 1;
    position: relative;
    display: block;
}

.btn1212:hover div::before {
    transform: scale(3);
}

.btn1212:hover div img {
    transform: translate(0%, 0%);
}

/* 768px: accordion header ke according (30px = header padding) */
@media (max-width: 768px) {
    .faqs-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    .faqs-content {
        padding-left: 0;
        padding-right: 0;
    }
    .get-to-know-banner-wrap {
        padding: 50px 30px;
    }
}

@media (max-width: 769px) {
    .get-to-know-banner-title {
        font-size: 24px;
    }
    .get-to-know-banner {
        min-height: 0;
    }
}

/* 518px se kaam: 30px 10px, header alignment */
@media (max-width: 518px) {
    .new-blog-page .blog-main {
        padding: 30px 0;
    }
    .new-blog-page .blog-layout {
        padding-left: 10px;
        padding-right: 10px;
    }
    .new-blog-page .blog-banner-section .blog-banner-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .faqs-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .faqs-content {
        padding-left: 0;
        padding-right: 0;
    }
    .get-to-know-banner-wrap {
        padding: 30px 10px;
    }
    .get-to-know-banner {
        padding: 30px 16px;
    }
}
