/* --- Unique Slim Hero Section --- */

.ag-hero-wrapper {
    position: relative;
    background: #000;
    overflow: hidden;
    /* This ensures the section doesn't feel like a giant empty box */
    min-height: 430px; 
    display: flex;
    align-items: center;
}

.ag-hero-bg-container {
    width: 100%;
    background-size: cover;
    background-position: center right;
    position: relative;
    /* REDUCED PADDING: Controls the top/bottom thickness */
    padding-top: 70px !important; 
    padding-bottom: 50px !important;
}

/* Dark Overlay for text contrast */
.ag-hero-bg-container::before {
    content: '';
    position: absolute;
    inset: 0;
/*     background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%); */
    z-index: 1;
}

.ag-hero-bg-container .container-fluid {
    position: relative;
    z-index: 2;
}

/* Big Bold Title (Right Side) */
.ag-hero-main-title {
    font-size: 76px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important; /* Tighter line height to look compact */
    color: #ffffff !important;
    letter-spacing: -2px !important;
    margin: 0 !important;
}

/* Subtitle/Eyebrow */
.ag-hero-eyebrow {
    color: #31bad8 !important; 
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important; /* Reduced from 25px */
    text-transform: uppercase;
}

/* Description Text */
.ag-hero-lead-text {
    font-size: 15px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 440px;
    margin-bottom: 20px !important; /* Reduced from 35px */
}

/* Decorative Line */
.ag-hero-divider-line {
    width: 250px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive: Fixes for Mobile */
@media (max-width: 991px) {
    .ag-hero-bg-container {
        padding-top: 100px !important; /* Extra room for mobile header */
        padding-bottom: 40px !important;
        text-align: center;
    }
    
    .ag-hero-main-title {
        margin-bottom: 30px !important;
    }

    .ag-hero-content-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ag-hero-divider-line {
        margin: 0 auto;
    }
}