/* =============================== */
/* HERO SECTION LAYOUT             */
/* =============================== */
.hero-content .heading-section{font-size:16px;
letter-spacing:3px;margin-bottom:20px;}
.comparison-content .heading-section{font-size:20px;
letter-spacing:3px;margin-bottom:20px;}
.comparison-content .heading-section-two{font-size:16px;
letter-spacing:0px;margin-bottom:20px; font-weight:400;}
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    box-sizing: border-box;
}

/* =============================== */
/* BACKGROUND LAYERS               */
/* =============================== */

.hero-video-bg,
.hero-fallback-bg,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video-bg {
    object-fit: cover;
    z-index: 1;
}

.hero-fallback-bg {
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

/* =============================== */
/* HERO CONTENT                    */
/* =============================== */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: #38BDF8;
}

.hero-content p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 10px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

/* =============================== */
/* CTA BUTTONS                     */
/* =============================== */

.button-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.45);
}

/* =============================== */
/* RESPONSIVE - TABLET             */
/* =============================== */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

/* =============================== */
/* RESPONSIVE - MOBILE             */
/* =============================== */

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .button-section {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* =============================== */
/* RESPONSIVE - SMALL MOBILE       */
/* =============================== */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }
}

/* ========================== */
        /* SECTION 16: BLOG POSTS     */
        /* ========================== */
.section-header .heading-section{font-size:16px;
letter-spacing:3px;margin-bottom:5px;}
        .blog-section {
            padding: 100px 0;
            background: #F8FAFC;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .blog-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .blog-card-image {
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.08);
        }

        .blog-card-body {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .blog-category {
            background: rgba(56, 189, 248, 0.1);
            color: #38BDF8;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .blog-date {
            font-size: 13px;
            color: #999;
        }

        .blog-card-body h3 {
            font-size: 20px;
            color: #000;
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.4;
        }

        .blog-card-body h3 a:hover {
            color: #38BDF8;
        }

        .blog-card-body .blog-excerpt {
            font-size: 14px;
            color: #777;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .blog-read-more {
            color: #38BDF8;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .blog-read-more:hover {
            color: #0EA5E9;
            gap: 10px;
        }

        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
			.blog-section{
				padding:40px 0px;
			}
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

/* =============================== */
/* SECTION: BUY & SELL INFO CARDS  */
/* =============================== */
.buysell-section {
    padding: 100px 0;
    background: white;
}

/* =============================== */
/* GRID                            */
/* =============================== */
/* =============================== */
/* GRID                            */
/* =============================== */
.buysell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center; /* stretch ki jagah center */
}
/* Right card inner content center */
.buysell-card:last-child .buysell-card-inner {
    justify-content: center;
}
/* =============================== */
/* CARD OUTER                      */
/* =============================== */
.buysell-card {
    background: #F8FAFC;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.buysell-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* =============================== */
/* CARD INNER                      */
/* =============================== */
.buysell-card-inner {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 22px;
}

/* =============================== */
/* HEADING                         */
/* =============================== */
.buysell-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.25;
 
}

.buysell-heading h2 span {
    color: #38BDF8;
}

.buysell-line {
    width: 50px;
    height: 4px;
    background: #38BDF8;
    border-radius: 2px;
}

/* =============================== */
/* PARAGRAPH                       */
/* =============================== */
.buysell-para {
    font-size: 14.5px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* =============================== */
/* MIDDLE ROW - LIST + IMAGE       */
/* =============================== */
.buysell-middle {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* List */
.buysell-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Single Item */
.buysell-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.25s ease;
    cursor: default;
}

.buysell-list-item:hover {
    background: #EFF8FF;
    transform: translateX(4px);
}

/* Icon */
.bli-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(56, 189, 248, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38BDF8;
    font-size: 15px;
    transition: all 0.25s ease;
}

.buysell-list-item:hover .bli-icon {
    background: #38BDF8;
    color: #fff;
}

.buysell-list-item span {
    font-size: 13.5px;
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

/* Image Side */
.buysell-image {
    width: 200px;
    min-width: 200px;
    height: 100%;
    min-height: 220px;
}

.buysell-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* =============================== */
/* BOTTOM 2 IMAGES - LEFT CARD     */
/* =============================== */
.buysell-bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: auto;
}

.bbi-img {
    border-radius: 14px;
    overflow: hidden;
    height: 160px;
}

.bbi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bbi-img:hover img {
    transform: scale(1.06);
}

/* =============================== */
/* QUOTE BOX - RIGHT CARD          */
/* =============================== */
.buysell-quote-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #F0F9FF;
    border-radius: 14px;
    padding: 22px 20px;
    border-left: 4px solid #38BDF8;
    margin-top: auto;
}

.bqb-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #fff;
    border: 2px solid #38BDF8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38BDF8;
    font-size: 20px;
}

.bqb-text p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 8px;
}

.bqb-text p:last-child {
    margin-bottom: 0;
}

.bqb-text a {
    color: #38BDF8;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.bqb-text a:hover {
    border-bottom-color: #38BDF8;
}

/* =============================== */
/* RESPONSIVE - TABLET             */
/* =============================== */
@media (max-width: 1024px) {
    .buysell-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .buysell-card-inner {
        padding: 32px;
    }

    .buysell-heading h2 {
        font-size: 28px;
    }

    .buysell-image {
        width: 180px;
        min-width: 180px;
    }
}

/* =============================== */
/* RESPONSIVE - MOBILE             */
/* =============================== */
@media (max-width: 768px) {
    .buysell-section {
        padding: 50px 0;
    }

    .buysell-card-inner {
        padding: 25px 20px;
        gap: 18px;
    }

    .buysell-middle {
        flex-direction: column;
        gap: 16px;
    }

    .buysell-image {
        width: 100%;
        min-width: 100%;
        min-height: 200px;
    }

    .buysell-image img {
        min-height: 200px;
    }

    .buysell-heading h2 {
        font-size: 24px;
    }

    .buysell-bottom-images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .bbi-img {
        height: 130px;
    }

    .buysell-quote-box {
        flex-direction: column;
        gap: 14px;
    }
}

/* =============================== */
/* RESPONSIVE - SMALL MOBILE       */
/* =============================== */
@media (max-width: 480px) {
    .buysell-card-inner {
        padding: 20px 16px;
    }

    .buysell-heading h2 {
        font-size: 22px;
    }

    .buysell-list-item {
        padding: 10px 12px;
    }

    .buysell-bottom-images {
        grid-template-columns: 1fr;
    }

    .bbi-img {
        height: 180px;
    }
}