/* ==========================================================
   AAHAN TECHNOLOGIES
   HERO SECTION
   ========================================================== */


/* ==========================================================
   1. HERO WRAPPER
   ========================================================== */

.hero-ai {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 100vh;

    padding: 150px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at top right,
            rgba(124, 58, 237, 0.30),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(37, 99, 235, 0.20),
            transparent 35%
        ),
        #050816;

    color: #ffffff;
}


/* ==========================================================
   2. LEFT COLUMN
   ========================================================== */

.hero-ai .col-lg-6:first-child {
    padding-right: 50px;
}


/* ==========================================================
   3. HERO TITLE
   ========================================================== */

.hero-ai h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Figtree", sans-serif;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;

    letter-spacing: -1.5px;
}

.hero-ai h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #8b5cf6,
        #3b82f6
    );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* ==========================================================
   4. SUBTITLE
   ========================================================== */

.hero-subtitle {
    max-width: 680px;

    margin: 0 0 35px;

    color: #cbd5e1;

    font-family: "Figtree", sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.7;
}


/* ==========================================================
   5. HERO BUTTONS
   ========================================================== */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 42px;
}


/* Primary CTA */

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 15px 30px;

    border: 1px solid transparent;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #2563eb
        );

    color: #ffffff;
    text-decoration: none;

    font-family: "Figtree", sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.btn-primary-custom:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 14px 34px rgba(37, 99, 235, 0.30);
}


/* Secondary CTA */

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 15px 30px;

    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.03);

    color: #ffffff;
    text-decoration: none;

    font-family: "Figtree", sans-serif;
    font-size: 15px;
    font-weight: 700;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.btn-secondary-custom:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.35);

    transform: translateY(-2px);
}


/* ==========================================================
   6. HERO STATS
   ========================================================== */

.hero-stats {
    display: flex;
    align-items: flex-start;

    gap: 60px;
}

.hero-stats > div {
    position: relative;
}

.hero-stats h3 {
    margin: 0;

    color: #8b5cf6;

    font-family: "Figtree", sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-stats p {
    margin: 6px 0 0;

    color: #cbd5e1;

    font-family: "Figtree", sans-serif;
    font-size: 14px;
    font-weight: 500;
}


/* ==========================================================
   7. DASHBOARD IMAGE
   ========================================================== */

.dashboard-image {
    display: block;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 30px 70px rgba(0, 0, 0, 0.35)
        );
}


/* ==========================================================
   8. TABLET
   ========================================================== */

@media (max-width: 991px) {

    .hero-ai {
        min-height: auto;

        padding: 125px 0 70px;

        text-align: center;
    }

    .hero-ai .col-lg-6:first-child {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }

    .hero-ai h1 {
        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        font-size: 52px;
    }

    .hero-subtitle {
        max-width: 680px;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .dashboard-image {
        max-width: 760px;

        margin-top: 48px;
    }

}


/* ==========================================================
   9. MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .hero-ai {
        padding: 110px 0 55px;
    }

    .hero-ai h1 {
        font-size: 40px;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.65;
    }

    .hero-buttons {
        margin-bottom: 34px;
    }

    .hero-stats {
        gap: 35px;
    }

    .hero-stats h3 {
        font-size: 31px;
    }

    .dashboard-image {
        margin-top: 40px;
    }

}


/* ==========================================================
   10. SMALL MOBILE
   ========================================================== */

@media (max-width: 575px) {

    .hero-ai {
        padding: 105px 0 45px;
    }

    .hero-ai .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-ai h1 {
        margin-bottom: 20px;

        font-size: 34px;
        line-height: 1.14;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        margin-bottom: 26px;

        font-size: 15px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;

        gap: 10px;

        margin-bottom: 32px;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;

        min-height: 50px;

        padding: 13px 18px;

        font-size: 15px;
    }

    .hero-stats {
        width: 100%;

        justify-content: space-between;

        gap: 12px;
    }

    .hero-stats > div {
        flex: 1;
    }

    .hero-stats h3 {
        font-size: 27px;
    }

    .hero-stats p {
        font-size: 12px;
    }

    .dashboard-image {
        margin-top: 36px;
    }

}


/* ==========================================================
   11. VERY SMALL MOBILE
   ========================================================== */

@media (max-width: 390px) {

    .hero-ai h1 {
        font-size: 31px;
    }

    .hero-stats h3 {
        font-size: 24px;
    }

}