/* ==========================================
   CORE BANNER — CLEAN FINAL VERSION
========================================== */

.core-hero {
    background-image: url("https://vgitechnology.com/wp-content/uploads/coreimage2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    height: 300px;

    /* Break out of Astra container */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay for readability */
.core-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Inner text wrapper */
.core-hero-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* FORCE WHITE CORE TITLE */
.core-hero-inner h1,
.core-hero h1,
.core-hero .core-hero-inner h1 {
    color: #ffffff !important;
    font-size: 56px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    margin: 0 !important;
    text-transform: uppercase;
}

/* Subtitle */
.core-hero-inner p,
.core-hero p {
    color: #ffffff !important;
    font-size: 18px !important;
    letter-spacing: 1.2px !important;
    margin-top: 8px !important;
    opacity: 0.9;
}

/* Remove Astra top padding */
.ast-container {
    padding-top: 0 !important;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .core-hero {
        height: 220px;
    }

    .core-hero-inner h1 {
        font-size: 34px !important;
    }

    .core-hero-inner p {
        font-size: 14px !important;
    }
	/* ===== FULL WIDTH SECTION BELOW BANNER ===== */

.core-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 40px 0; /* optional vertical spacing */
    box-sizing: border-box;
}

}

    .core-fullwidth {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 40px 0;
        box-sizing: border-box;
    }
}

/* Temporary cursor test */
html,
body,
body *,
body *::before,
body *::after {
    cursor: default !important;
}

a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
label[for] {
    cursor: pointer !important;
}

input,
textarea {
    cursor: text !important;
}

/* ==========================================
   GLOBAL CURSOR FIX
========================================== */

html,
body,
body * {
    cursor: default !important;
}

a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
label[for],
summary {
    cursor: pointer !important;
}

input,
textarea,
[contenteditable="true"] {
    cursor: text !important;
}

/* Service Request form layout fix */
#freshwidget-embedded-form {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 800px !important;
    margin: 24px auto 0 !important;
    background: #ffffff !important;
    border: 0 !important;
}

.fl-module-html:has(#freshwidget-embedded-form),
.fl-module-html:has(#freshwidget-embedded-form) .fl-module-content,
.fl-module-html:has(#freshwidget-embedded-form) .fl-html {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
}