/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f5fb;
    color: #1e1e2f;
}

/* ================= HERO SECTION ================= */

section {
    margin-bottom: 70px;
}
.hero {
    margin-top: 180px;          
     padding: 200px 6% 200px; 
    overflow: visible;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ================= LEFT SIDE ================= */
.hero-left {
    position: relative;
    flex: 1;
    min-width: 0;
    padding-left: 30px;   /* 🔥 add this */
}
/* BLOB IMAGE */
.blob-img {
    width: 100%;
    margin-top: 20px;
    margin-left: 40px;   /* 🔥 add this */
    max-width: 620px;
    height: 420px;
    overflow: hidden;
    border-radius: 58% 42% 63% 37% / 44% 61% 39% 56%;
}

.blob-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SHAPES */
.shape {
    position: absolute;
     z-index: 1;
    background: linear-gradient(
        135deg,
        #96bff0,
        #fac9c9,
        rgba(124, 58, 237, 0.12),
        #bb72e9
    );
    opacity: 0.95;
}
.shape1 {
    width: 65px;
    height: 55px;
    border-radius: 50%;
    top: 50%;
    right: 5px;
}

.shape2 {
    width: 75px;
    height: 55px;
    border-radius: 50%;
    bottom: 40px;
    left: -5px;
}

.shape3 {
    width: 80px;
    height: 55px;
    border-radius: 50px;
    bottom: -10px;
    right: 70px;
}

.shape4 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: 50%;
    left: -10px;
}

/* ================= RIGHT SIDE ================= */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
     text-align: left;
    width: 100%;
    
}

/* MINI TITLE */
.mini-title {
    font-size: 13px;
    font-weight: 600;
    color: #6c4df6;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: left;
}

/* HEADING */
.hero-right h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
}

.hero-right h1 span {
    color: #4a235a;
    text-align: left;
}

/* DESCRIPTION */
.hero-desc {
    font-size: 15px;
    color: #6b6b7a;
    margin-bottom: 30px;
    max-width: 520px;
    text-align: left;
     display: block;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

/* BUTTON */
.btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.primary-btn {
    background: #6c4df6;
    color: #fff;
}

.primary-btn:hover {
    background: #5b3eea;
}

.dark-btn {
    background: #1f2241;
    color: #fff;
}

.dark-btn:hover {
    background: #111328;
}

/* INFO CARD */
.info-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    gap: 20px;
    max-width: 420px;
}

.card-img img {
    width: 100px;
    height: 90px;
    border-radius: 6px;
    object-fit: cover;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.card-content p {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.card-btn {
    font-size: 13px;
    font-weight: 600;
    color: #6c4df6;
    text-decoration: none;
}

.card-btn:hover {
    text-decoration: underline;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
}

.stat-item h2 {
    font-size: 28px;
    font-weight: 700;
    color:  #4a235a;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #6a1b9a;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 992px) {

   

  .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;          /* 🔥 center */
        align-items: center;      /* 🔥 content center */
        text-align: center;       /* 🔥 text center */
    }

    .hero-right {
        order: 1;
    }

    .hero-right h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
        text-align: center;
    }

    /* Blob fix */
    .blob-img {
        max-width: 380px;
        height: 300px;
        margin: 0 auto;
        
        
    }

    /* Buttons stack */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Info card */
    .info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .card-img img {
        width: 100%;
        height: 180px;
    }

    /* Hide shapes */
    .shape {
        display: none;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

    .hero {
         margin-top: 20px;      /* 🔥 reduce top gap */
        padding: 35px 15px; 
    }

    .hero-right h1 {
        font-size: 22px;
    }

    .blob-img {
        height: 240px;
        max-width: 100%;
    }

    .btn {
        max-width: 100%;
    }
}
/* ================= ULTRA WIDE SCREEN FIX (27 inch+) ================= */
@media (min-width: 1600px) {

    .hero-container {
        max-width: 2200px;   /* increased more */
    }

    .hero {
        padding: 220px 8% 220px;  /* little more side breathing */
    }

    .hero-right h1 {
        font-size: 58px;
    }

    .hero-desc {
        font-size: 19px;
        max-width: 750px;
    }

    .mini-title {
        font-size: 17px;
        text-align: left;
    }

    .btn {
        padding: 18px 40px;
        font-size: 16px;
    }

    .blob-img {
        max-width: 850px;
        height: 580px;
    }

    .info-card {
        max-width: 600px;
        padding: 32px;
    }

    .stat-item h2 {
        font-size: 40px;
    }

    .stat-item p {
        font-size: 17px;
    }
}
