.elementor-kit-6{--e-global-color-primary:#123332;--e-global-color-secondary:#6EC1E4;--e-global-color-text:#7A7A7A;--e-global-color-accent:#8CC940;--e-global-color-1499026:#8CC940;--e-global-color-d7ee815:#0CC0DF;--e-global-color-e98d9be:#123332;--e-global-color-f67bc73:#FFFFFF;--e-global-color-c72a98e:#A47864;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:300;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:300;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Changed from left: 50% and transform */
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.fixed-button {
    background-color: #123332;
    color: white;  /* Changed from #d5b690 to white */
    padding: 12px 24px;
    border: 2px solid #d5b690;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.fixed-button:hover {
    background-color: #d5b690;
    color: #123332;  /* Keep dark color on hover */
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    margin: 50px auto;
    background: white;
}

.close-modal {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #123332;
    z-index: 1002;
}

.sector-slide {
    position: relative !important;
    overflow: hidden !important;
    min-height: 350px !important;
}

/* Initial title styling (bottom title with up arrow) */
.sector-title {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    background: rgba(0,0,0,0.7) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Content that appears on hover */
.sector-content {
    position: absolute !important;
    bottom: -100% !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.9) !important;
    padding: 30px 20px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.sector-slide:hover .sector-content {
    bottom: 0 !important;
}

/* Read More link styling */
.read-more {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: white !important;
    text-decoration: none !important;
}/* End custom CSS */