.elementor-20 .elementor-element.elementor-element-1e4a45e{--display:flex;--padding-top:80px;--padding-bottom:30px;--padding-left:0px;--padding-right:0px;}.elementor-20 .elementor-element.elementor-element-1e4a45e:not(.elementor-motion-effects-element-type-background), .elementor-20 .elementor-element.elementor-element-1e4a45e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#120B2D;}.elementor-20 .elementor-element.elementor-element-2c0c6dc2{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-1e4a45e *//* Container scope styling */
.elementor-20 .elementor-element.elementor-element-1e4a45e {
    background-color: #08021F;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* Map area relative positioning */
.su-map-container {
    position: relative;
    min-height: 480px;
    background-image: url('YOUR_MAP_IMAGE_URL_HERE');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/* Markers styling */
.su-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.su-pin {
    width: 24px;
    height: 24px;
    background-color: #FF6500;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 0 15px #FF6500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.su-pin::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.su-ripple {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 101, 0, 0.6);
    border-radius: 50%;
    top: -8px;
    left: -8px;
    animation: su-pulse 2s infinite ease-out;
}

@keyframes su-pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.su-marker-text {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}
.su-marker-text span {
    display: block;
    font-size: 12px;
    color: #C8C4D5;
    font-weight: 400;
}

/* Specific Marker Positioning */
.marker-dhaka { top: 32%; left: 68%; }
.marker-darwin { top: 48%; left: 82%; }
.marker-melbourne { top: 78%; left: 80%; }
.marker-sydney { top: 72%; left: 85%; }

/* Office Cards Styling */
.su-card {
    background: #10072F;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.su-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 101, 0, 0.5);
    box-shadow: 0 10px 25px rgba(255, 101, 0, 0.15);
}
.su-card-icon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.su-icon-bg {
    width: 44px;
    height: 44px;
    background: #FF6500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}
.su-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
}
.su-card-country {
    font-size: 13px;
    color: #FF6500;
    font-weight: 600;
}
.su-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}
.su-card-info {
    font-size: 13px;
    color: #C8C4D5;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.su-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FF6500;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-top: 12px;
    transition: gap 0.2s ease;
}
.su-card:hover .su-card-link {
    gap: 10px;
}

/* Footer Styling */
.su-footer-head {
    font-size: 16px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}
.su-footer-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: #FF6500;
}
.su-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.su-footer-list li {
    margin-bottom: 10px;
}
.su-footer-list a {
    color: #C8C4D5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.su-footer-list a:hover {
    color: #FF6500;
}
.su-btn-consult {
    display: inline-block;
    border: 1px solid #FF6500;
    color: #FF6500;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}
.su-btn-consult:hover {
    background: #FF6500;
    color: #FFF;
}

@media (max-width: 768px) {
    .su-map-container {
        min-height: 320px;
        background-position: center;
    }
    .marker-dhaka { top: 25%; left: 55%; }
    .marker-darwin { top: 45%; left: 75%; }
    .marker-melbourne { top: 75%; left: 70%; }
    .marker-sydney { top: 70%; left: 80%; }
}/* End custom CSS */