

/* ======================================================
   INDEX HERO BANNER START
====================================================== */

.index-hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url("../imagess/e.webp")
        center / cover no-repeat;
    overflow: hidden;
}

.index-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.2)
    );
    z-index: 1;
}

.index-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #fff;
}

/* TAGLINE */
.index-hero-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff3d6b;
    margin-bottom: 12px;
}

/* TITLE */
.index-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 15px;
}

.index-hero-title span {
    color: #ff3d6b;
}

/* TEXT */
.index-hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
}

/* BUTTONS */
.index-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.index-btn-primary {
    background: linear-gradient(135deg, #ff3d6b, #ff004c);
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 107, 0.4);
}

.index-btn-outline {
    border: 1px solid #ff3d6b;
    color: #ff3d6b;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.index-btn-outline:hover {
    background: #ff3d6b;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .index-hero-title {
        font-size: 38px;
    }

    .index-hero-text {
        font-size: 15px;
    }
}

/* ======================================================
   INDEX HERO BANNER END
====================================================== */


/* ======================================================
   BLOG PAGE CONTENT START
====================================================== */

.blog-wrap{
    background:#050b1a;
    color:#ddd;
}

/* INTRO */
.blog-intro{
    padding:80px 15px;
    border-bottom:2px solid #e91e63;
}

.blog-main-title{
    font-size:42px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:20px;
}

/* SECTION TITLE */
.blog-section-title{
    font-size:32px;
    font-weight:800;
    color:#ff3d6b;
    margin-bottom:30px;
}

/* FEATURED */
.blog-featured{
    padding:70px 15px;
}

.blog-featured-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.blog-featured-card{
    background:#111;
    border:2px solid #e91e63;
    border-radius:18px;
    padding:28px;
}

.blog-read-more{
    color:#ffd166;
    font-weight:700;
    text-decoration:none;
}

/* CONTENT */
.blog-content{
    padding:70px 15px;
}

/* BENEFITS */
.blog-benefits{
    padding:70px 15px;
    background:#0b0f1a;
}

.blog-benefits-list{
    list-style:none;
    padding:0;
}

.blog-benefits-list li{
    padding:10px 0;
    border-bottom:1px dashed rgba(255,255,255,0.2);
}

/* FAQ */
.blog-faq{
    padding:70px 15px;
}

.blog-faq-item{
    margin-bottom:25px;
}

/* CTA */
.blog-cta{
    padding:80px 15px;
    background:linear-gradient(135deg,#981e55,#701135);
    text-align:center;
}

.blog-cta-btn{
    display:inline-block;
    margin-top:20px;
    background:#ffd166;
    color:#000;
    padding:14px 34px;
    border-radius:30px;
    font-weight:800;
    text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){
    .blog-featured-grid{
        grid-template-columns:1fr;
    }

    .blog-main-title{
        font-size:30px;
    }

    .blog-section-title{
        font-size:24px;
    }
}

/* ======================================================
   BLOG PAGE CONTENT END
====================================================== */
