/* Sectors Header - Main Container */
.sectors-header {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.custom-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Breadcrumb Styling */
.custom-header ol.breadcrumb, .custom-header li.current, .custom-header .breadcrumb > li + li:not(.paged):before, .custom-header ol.breadcrumb a {
    color: #000022;
    margin-top: -1rem !important;
    margin-bottom: 1rem;
}
.sectors-header .custom-header ol.breadcrumb, .sectors-header .custom-header li.current, .sectors-header .custom-header .breadcrumb > li + li:not(.paged):before, .sectors-header .custom-header ol.breadcrumb a  {
    margin-top: 0;
    font-size: 13px;
}

/* Header Component - Two Column Layout */
.header-component {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Left Column - Content */
.header-component .header_title {
    font-size: 56px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #0a0a0a;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}
.header-component h1{
    font-size: 28px !important;
    color: #FF551A;
    font-weight: 500;
    padding-top: 0px;
}
.header-component p {
    line-height: 1.4;
    font-size: 16px;
    text-align: left;
    letter-spacing: 0px;
    color: #000022;
    opacity: 1;
}

.header-component p:last-of-type {
    margin-bottom: 32px;
}

/* Button Container */
.link-container {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
    padding-top: 0;
}

/* Button Base Styles */
.button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

/* Blue Button (Filled) */
.button.blue-button {
    background: #3051E6;
    color: #ffffff;
    border-color: #3051E6;
    border-radius: 3px;
    opacity: 1;
}

/* White Button (Outlined) */
.button.white-button {
    border: 2px solid #3051E6;
    border-radius: 3px;
    opacity: 1;
    color: #3051E6 !important;
    margin-top: 20px;
}

.button.white-button:hover {
    background: #0E0D6A;
    border-color: #0E0D6A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 81, 230, 0.3);
    color: #ffffff !important;
}
.button.blue-button:hover {
    background: #0E0D6A;
    border-color: #0E0D6A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 81, 230, 0.3);
}

/* ========================================
   IMAGE WRAPPER WITH SHAPES
   ======================================== */

.header-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Shapes Overlay */
.shapes-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -0.35rem;
    left: -2.5rem;
    object-fit: contain;
    mix-blend-mode: multiply;
    z-index: 2;
    pointer-events: none;
}

/* Main Circular Image (User Uploaded) */
.header-img-circle {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.header-img-circle.mobile {
    display: none;
}

/* Content Alignment Options */
.custom-header.left .header-component {
    grid-template-columns: 1fr 1fr;
}

.custom-header.center .header-component {
    text-align: center;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.custom-header.center .header-component h1,
.custom-header.center .header-component > p {
    margin-left: auto;
    margin-right: auto;
}

.custom-header.center .link-container {
    justify-content: center;
}

.custom-header.right .header-component {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.custom-header.right .header-component > * {
    direction: ltr;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .sectors-header {
        padding: 40px 0 0;
    }
    
    .custom-header {
        padding: 0 20px;
        display: block;
    }
    
    .header-component {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 20px;
    }
    
    .header-component .header_title {
        font-size: 31px !important;
        text-align: center;
    }
    .header-component h1{
        font-size: 18px !important;
        text-align: center;
    }
    .header-component p{
        text-align: center;
    }

    /* Mobile Image Adjustments */
    .header-image-wrapper {
        margin: 0 auto;
        width: 100%;
        height: auto;
        object-fit: cover;
        position: relative;
        z-index: 2;
    }
    
    .header-img-circle {
        width: 280px;
        height: 280px;
    }
    
    .header-img-circle.desktop {
        display: none;
    }
    
    .header-img-circle.mobile {
        display: block;
    }
    
    .link-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0px;
    }
    
    .button {
        text-align: center;
    }
}

/* @media screen and (max-width: 480px) {
    .header-image-wrapper {
        max-width: 300px;
        height: 260px;
    }
    
    .header-img-circle {
        width: 240px;
        height: 240px;
    }
} */
