body {
    /*font-family: "Golos Text", sans-serif;*/
    font-family: "Barlow", sans-serif;
}
a {
    color:#ff9933;
    text-decoration:none;
}


.popup-overlay {
    display: none;
    position: fixed;
    /* top: 0; */
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    -webkit-box-shadow: inset 0px 10px 10px -6px rgb(117 117 117);
    -moz-box-shadow: inset 0px 10px 10px -6px rgba(117,117,117,1);
    box-shadow: inset 0px 10px 10px -6px rgb(117 117 117);
    font-weight: bold;
}

.popup {
    display: inline-block;
    width: 100%;
    min-height: 40px;
    background-color: white;
    border-radius: 1px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    bottom: 0;
    position: absolute;
    -webkit-box-shadow: inset 0px 10px 10px -6px rgb(117 117 117);
    -moz-box-shadow: inset 0px 10px 10px -6px rgba(117,117,117,1);
    box-shadow: inset 0px 10px 10px -6px rgb(117 117 117);
    color: #000;
    font-size: 12px;
    font-weight: normal;
}


a.accept, a.submit {
    margin-top: 0;
    margin-left: 20px;
    display: inline-block;
    color: white;
    background-color: #ff9933;
    border-radius: 5px;
    padding: 0px 9px;
    text-decoration: none;
    text-transform: uppercase;
}
/* Icon Block Styling */
.IconBlock {
    text-align: center;
    padding: 20px 15px;
    transition: all 0.3s ease;
}

.IconHeader {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* Circle Icon Container */
.CircleIcon {
    width: 150px;
    height: 150px;
    background-color: #333333;
    border: 10px solid #cccccc;
    border-radius: 50%;
    margin: 0px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    /* Icon inside the circle */
    .CircleIcon i {
        font-size: 55px;
        color: #ffffff; /* White Icon */
        transition: all 0.4s ease;
    }

/* Hover Effect */
.IconBlock:hover .CircleIcon {
    background-color: #ff9933; /* Orange on hover */
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

    .IconBlock:hover .CircleIcon i {
        color: #ffffff; /* Keep icon white */
    }

/* Responsive adjustment */
@media (max-width: 768px) {
    .CircleIcon {
        width: 80px;
        height: 80px;
    }

        .CircleIcon i {
            font-size: 34px;
        }
}
.IconText {
    font-size: 15px;
    display: table;
    max-width: 275px;
    margin: 0 auto;
}
.DarkBlock {
    background: #333;
    padding: 20px 40px;
    color: #fff;
    border-radius: 16px;
    margin: 40px 0 0;
}
.Team {
    margin-bottom: 30px; /* Increased a bit for better spacing */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.TopHalf {
    background: #ff9933;
    padding: 25px 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.BottomHalf {
    padding: 20px 20px;
    background: #333;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    flex-grow: 1; /* Makes all bottom halves equal */
    display: flex;
    align-items: flex-start;
}

.memberName {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.jobTitle {
    color: #fff;
    font-size: 14px;
}

.memberDescription {
    color: #fff;
    font-size: 15px;
}
/* ====================== STICKY PROFESSIONAL NAVBAR - BRAND COLOURS ====================== */

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    transition: all 0.4s ease;
    z-index: 1030;
}

    /* Scrolled State */
    .navbar.scrolled {
        padding: 10px 0;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
    }

/* Brand / Logo */
.navbar-brand {
    font-weight: 700;
    font-size: 1.45rem;
    color: #000000 !important;
    letter-spacing: -0.5px;
}

/* Nav Links */
.nav-link {
    color: #333333 !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        color: #ff9933 !important;
       
    }

    .nav-link.active {
        color: #ff9933 !important;
        font-weight: 600;
     
    }

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 8px;
    background-color: #ffffff;
    min-width: 210px;
}

.dropdown-item {
    padding: 10px 22px;
    color: #333333;
    font-weight: 500;
    transition: all 0.25s ease;
}

    .dropdown-item:hover {
        
        color: #ff9933;
        padding-left: 26px;
    }

/* Hamburger / Toggler */
.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.3);
    }

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 20px 0;
        border-top: 1px solid #eee;
        margin-top: 10px;
    }

    .nav-link {
        padding: 12px 20px !important;
    }
}

.page-banner {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 30px;
    background-position: center !important;
    position:relative;
    color:#fff
}
.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45); /* Adjust darkness here */
    z-index: 1;
}

.breadcrumb-item.active {
    color: #ff9933;
}

.breadcrumb-item a {
    color: #fff;
}
.innerBanner {
    position: relative;
    z-index: 100;
}

.Content {
    padding-bottom: 30px;
    font-size: 14px;
}
footer.footer {
    background: #333;
    padding: 15px 0px;
    color: #fff;
}

.OurServiceSection {
    padding: 0; /* Remove any unwanted padding */
}

    .OurServiceSection .row {
        margin: 0; /* Remove default row margins */
    }

/* Left Side - Background Image */
.serviceLeftBg1,
.serviceLeftBg2,
.serviceLeftBg3 {
    background: url('/images/1920x585.svg') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    padding: 40px 50px;
    position: relative; /* Important for overlay */
}

    /* Transparent Overlay */
    .serviceLeftBg1::before,
    .serviceLeftBg2::before,
    .serviceLeftBg3::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.45); /* Adjust darkness here */
        z-index: 1;
    }

    /* Make sure content stays above the overlay */
    .serviceLeftBg1 > *,
    .serviceLeftBg2 > *,
    .serviceLeftBg3 > * {
        position: relative;
        z-index: 2;
    }

/* Right Side */
.serviceRightBg {
    background: #ff9933;
    min-height: 400px; /* Fallback height */
    padding: 40px 50px;
    color: #fff;
    font-size: 15px;
}

/* Make both sides equal height using flex */
.OurServiceSection .row {
    display: flex;
    flex-wrap: wrap;
}

.OurServiceSection .col-md-4,
.OurServiceSection .col-md-8 {
    display: flex;
}

.serviceLeftBg1,
.ServiceTextRight,
.serviceRightBg {
    flex: 1; /* This forces equal height */
    width: 100%;
}

/* Optional: Better mobile stacking */
@media (max-width: 767.98px) {
    .serviceLeftBg1,
    .serviceRightBg {
        min-height: 320px;
        padding: 30px 25px;
    }
}

/* Chevron Icon on the left */
.SectionHeaderDark::before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #ff9933;
}

.SectionHeaderDark {
    color: #333;
    position: relative;
}
    /* Chevron Icon on the left */
    .SectionHeaderLight::before {
        content: "\f054";
        font-family: "Font Awesome 6 Pro";
        font-weight: 900;
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 25px;
        color: #ff9933;
    }

.SectionHeaderLight {
    color: #fff;
    position: relative;
}

.SectionSubHeaderLight {
    color: #fff;
}

.ServiceText1 {
    color: #fff;
    margin-bottom: 25px;
    margin-top: 25px;
    font-size: 24px;
}
.ServiceText2 {
    color: #fff;
    font-size: 24px;
}
.WhoWeAreSection {
    background: #ebebeb;
    padding: 50px 0;
}

.OurValuesSection {
    padding: 30px 0;
}



.contact-info-section {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

    .contact-item i {
        font-size: 1.8rem;
        color: #ff9933;
        margin-top: 4px;
        flex-shrink: 0;
        width: 35px;
    }

    .contact-item h5 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #000000;
        margin-bottom: 8px;
    }

    .contact-item a {
        color: #333333;
        text-decoration: none;
        font-size: 1.05rem;
    }

        .contact-item a:hover {
            color: #ff9933;
        }

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #333333;
    font-size: 1.05rem;
    line-height: 1.7;
}

    .location-list li {
        position: relative;
        padding-left: 20px;
    }

        .location-list li::before {
            content: "\f111"; /* Small circle */
            font-family: "Font Awesome 6 Pro";
            font-weight: 900; /* Very important for Pro */
            font-style: normal;
            position: absolute;
            left: 0;
            top: 7px;
            font-size: 0.45rem;
            color: #ff9933;
        }
.ButtonStyle {
    background: #333333;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.2);
}

    .ButtonStyle:hover {
        background: #ff9933;
        color: #000000;
        box-shadow: 0 8px 25px rgba(255, 153, 51, 0.35);
    }

    .ButtonStyle:active {
        box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
    }

    /* Optional: Outline / Secondary version */
    .ButtonStyle.outline {
        background: transparent;
        border: 2px solid #333333;
        color: #333333;
    }

        .ButtonStyle.outline:hover {
            background: #333333;
            color: #ffffff;
            border-color: #333333;
        }