.elementor-2679 .elementor-element.elementor-element-bfce818{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-2679:not(.elementor-motion-effects-element-type-background), body.elementor-page-2679 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-b1bb240 *//* --- Global Settings & Variables --- */
:root {
    --brand-green: rgb(65, 216, 126);
    --dark-grey: rgb(63, 70, 73);
    --gold-accent: #D4AF37;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: var(--white);
    color: var(--dark-grey);
    overflow-x: hidden;
}

/* --- Hero Section Styling --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.sky-bg {
    background-image: url('https://images.pexels.com/photos/998641/pexels-photo-998641.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    z-index: 1;
}

.building-bg {
    background-image: url('https://images.pexels.com/photos/1105766/pexels-photo-1105766.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-position: bottom center;
    z-index: 2;
}

.overlay-bg {
    background-color: var(--dark-grey);
    opacity: 0.6;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content h3 {
    font-size: 28px;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.cta-button {
    background-color: var(--brand-green);
    color: var(--white);
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(65, 216, 126, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: rgb(75, 230, 136); /* Slightly lighter green */
    box-shadow: 0 0 25px rgba(65, 216, 126, 0.8);
}/* End custom CSS */