/* =============================================
   SERVICE PAGE - Hero Banner
   ============================================= */
.service-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 60, 0.55);
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-content h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-breadcrumb {
    color: #fff;
    font-size: 14px;
    opacity: 0.85;
}

.service-breadcrumb a {
    color: #fff;
}

@media (max-width: 768px) {
    .service-hero-banner {
        min-height: 220px;
        padding-bottom: 30px;
    }
    .service-hero-content h1 {
        font-size: 26px;
    }
}




/* =============================================
   SERVICE PAGE - Intro & Enquiry Form
   ============================================= */
.service-intro-section {
    padding: 70px 0;
    background: #fff;
}

.service-intro-content h2 {
    font-size: 30px;
    font-weight: 400;
    color: #012169;
    margin-bottom: 20px;
}

.service-intro-content p {
    font-size: 16px;
    line-height: 28px;
    color: #444;
    margin-bottom: 20px;
}

.service-intro-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-intro-content ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 15px;
    color: #333;
    line-height: 24px;
}

.service-intro-content ul li::before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cmask id='mask0_2_2027' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='18' height='18'%3E%3Crect width='17.8294' height='17.8294' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_2_2027)'%3E%3Cpath d='M7.87464 12.332L13.112 7.0946L12.072 6.05456L7.87464 10.2519L5.7574 8.13465L4.71735 9.1747L7.87464 12.332ZM8.91469 16.3436C7.88702 16.3436 6.92126 16.1486 6.01741 15.7586C5.11356 15.3685 4.32734 14.8392 3.65873 14.1706C2.99013 13.502 2.46082 12.7158 2.07081 11.812C1.68079 10.9081 1.48578 9.94235 1.48578 8.91469C1.48578 7.88702 1.68079 6.92126 2.07081 6.01741C2.46082 5.11356 2.99013 4.32734 3.65873 3.65873C4.32734 2.99013 5.11356 2.46082 6.01741 2.07081C6.92126 1.68079 7.88702 1.48578 8.91469 1.48578C9.94235 1.48578 10.9081 1.68079 11.812 2.07081C12.7158 2.46082 13.502 2.99013 14.1706 3.65873C14.8392 4.32734 15.3685 5.11356 15.7586 6.01741C16.1486 6.92126 16.3436 7.88702 16.3436 8.91469C16.3436 9.94235 16.1486 10.9081 15.7586 11.812C15.3685 12.7158 14.8392 13.502 14.1706 14.1706C13.502 14.8392 12.7158 15.3685 11.812 15.7586C10.9081 16.1486 9.94235 16.3436 8.91469 16.3436Z' fill='%2300A3E0'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 5px;
    font-family: unset;
    font-weight: unset;
    font-size: unset;
    color: transparent;
}


/* Enquiry Form Box */
.service-enquiry-form-wrap {
    background: #FFFFFF;
    padding: 35px 30px;
    position: sticky;
    top: 100px;
    border-radius: 10px;
    margin-top: -100px;
}

.service-enquiry-form-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 20px;
}



@media (max-width: 768px) {
    .service-intro-section {
        padding: 40px 0;
    }
    .service-enquiry-form-wrap {
        position: static;
        margin-top: 40px;
    }
    .service-intro-content h2 {
        font-size: 24px;
    }
}


.service-enquiry-form-wrap .hs-form input[type="text"],
.service-enquiry-form-wrap .hs-form input[type="email"],
.service-enquiry-form-wrap .hs-form input[type="tel"],
.service-enquiry-form-wrap .hs-form textarea,
.service-enquiry-form-wrap .hs-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: 'Raleway', sans-serif;
    border-radius: 0;
}

.service-enquiry-form-wrap .hs-form input[type="submit"],
.service-enquiry-form-wrap .hs-form .hs-button {
    background: #e87722;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.service-enquiry-form-wrap .hs-form input[type="submit"]:hover,
.service-enquiry-form-wrap .hs-form .hs-button:hover {
    background: #c9621a;
}




/* =============================================
   SERVICE PAGE - What Is It Section
   ============================================= */
.service-what-is-it {
    padding: 70px 0;
    background: #f9f9f9;
}

.service-what-content h2 {
    font-size: 30px;
    font-weight: 400;
    color: #012169;
    margin-bottom: 20px;
}

.service-what-content p {
    font-size: 16px;
    line-height: 28px;
    color: #444;
    margin-bottom: 20px;
}

.service-what-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-what-content ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 15px;
    color: #333;
    line-height: 24px;
}

.service-what-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e87722;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 14px;
}

/* Image Grid */
.service-image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-image-grid-item {
    position: relative;
    width: calc(50% - 5px);
    overflow: hidden;
}

.service-image-grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-image-grid-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 8px 12px;
    text-align: center;
}

@media (max-width: 768px) {
    .service-what-is-it {
        padding: 40px 0;
    }
    .service-what-content {
        margin-bottom: 30px;
    }
    .service-image-grid-item {
        width: calc(50% - 5px);
    }
    .service-image-grid-item img {
        height: 140px;
    }
}




/* =============================================
   SERVICE PAGE - Benefits Section
   ============================================= */


.service-benefits-section {
    padding: 70px 0;
    background: #f9f9f9;
    
}


.service-benefits-heading {
    text-align: center;
    margin-bottom: 40px;
}

.service-benefits-heading h2 {
    font-size: 30px;
    font-weight: 400;
    color: #012169;
    margin-bottom: 15px;
}

.service-benefits-heading p {
    font-size: 16px;
    color: #000000;
    line-height: 28px;
    max-width: 700px;
    margin: 0 auto;
}

.service-benefits-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
   
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.service-benefit-col {
    flex: 1;
    min-width: 160px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-benefit-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 100%;
    flex: 1;

}

.service-benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-benefit-card p {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    margin: 0;
    font-weight: 400;
}




/* =============================================
   SERVICE PAGE - Dual CTA Banner
   ============================================= */
.service-dual-cta {
    padding: 70px 0;
    background: #fff;
}

.service-dual-cta .container-fluid {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    
}

.service-cta-card-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-cta-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 30px;
    z-index: 2;
}



.service-cta-card-content h2,
.service-cta-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.3;
}

.service-cta-card-content p {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.service-cta-card-btn {
    display: inline-block;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: #e87722;
    color: #fff;
    border: 2px solid #e87722;
}

.service-cta-card-btn:hover {
    background: transparent;
    color: #fff;
}

@media (max-width: 768px) {
    .service-dual-cta {
        padding: 40px 0;
    }
    .service-cta-card {
        margin-bottom: 20px;
    }
    
    .service-cta-card-content {
        position: absolute;
        width: 100%;
        padding: 20px;
        bottom: auto;
        left: auto;
    }
    .service-cta-card-content h2,
    .service-cta-card-content h3 {
        color: #1a1a1a;
    }
    .service-cta-card-content p {
        color: #444;
    }
}


/* =============================================
   SERVICE PAGE - Tabbed Section
   ============================================= */
.service-tabbed-section {
    padding: 70px 0;
    background: #fff;
}

.service-tabbed-heading {
    font-size: 30px;
    font-weight: 400;
    color: #012169;
    margin-bottom: 35px;
    text-align: center;
}

/* Tab Nav */
.service-tab-nav {
    list-style: none;
    padding: 8px;
    margin: 0;
    background: #011B3E;
    display: flex;
    border-bottom: none;
    margin-bottom: 15px;
    border-radius: 10px;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.service-tab-nav li {
    flex: 1;
    flex-shrink: 0;
}

.service-tab-nav li a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 0;
    text-align: center;
    white-space: nowrap;

}

.service-tab-nav li a:hover {
    background: #0A4193;
    color: #fff;
    border-radius: 10px;

}

.service-tab-nav li.active a,
.service-tab-nav li.active a:focus {
    background: #0A4193;
    color: #fff;
    border: none;
    border-radius: 10px;
}

/* Tab Content */
.service-tab-content {
    background: #f5f5f5;
    border: none;
    padding: 40px;
    border-radius: 11px;
}

.service-tab-left h2,
.service-tab-left h3 {
    font-size: 25px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 15px;
}

.service-tab-left p {
    font-size: 16px;
    line-height: 25px;
    color: #011B3E;
    margin-bottom: 15px;
}

.service-tab-left ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-tab-left ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 15px;
    color: #333;
    line-height: 24px;
}

.service-tab-left ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e87722;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 14px;
}

.service-tab-btn {
    display: inline-block;
    margin-top: 10px;
}

.service-tab-right img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .service-tabbed-section {
        padding: 40px 0;
    }
    .service-tab-content {
        padding: 25px 20px;
    }
    .service-tab-right {
        margin-top: 30px;
    }
    .service-tabbed-heading {
        font-size: 24px;
    }
    .service-tab-nav li a {
        padding: 10px 15px;
        font-size: 13px;
    }
}

.service-tabbed-intro {
    margin-bottom: 35px;
}

.service-tabbed-intro h2 {
    font-size: 30px;
    font-weight: 400;
    color: #012169;
    margin-bottom: 15px;
    text-align: center;
}

.service-tabbed-intro p {
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-align: center;
    font-weight: 400;

}



/* =============================================
   SERVICE PAGE - CTA Strip
   ============================================= */
.service-cta-strip-wrapper {
    padding: 40px 0;
}

.service-cta-strip {
    background: #1a2332;
    padding: 40px 0;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 11px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




.service-cta-strip-heading {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.service-cta-strip-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    height: 100%;
    padding-right: 30px;

}

.service-cta-strip-btn {
    display: inline-block;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 7px;

}



.service-cta-strip-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 7px;
}

.service-cta-strip-btn--outline:hover {
    background: #fff;
    color: #1a2332;
}

.service-cta-strip-btn--solid {
    background: #e87722;
    color: #fff;
    border: 2px solid #e87722;
}

.service-cta-strip-btn--solid:hover {
    background: transparent;
    color: #e87722;
}

@media (max-width: 768px) {
    .service-cta-strip {
        padding: 40px 0;
        text-align: center;
    }
    .service-cta-strip-heading {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .service-cta-strip-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}



/* =============================================
   SERVICE PAGE - FAQ Accordion
   ============================================= */
.service-faq-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.service-faq-heading {
    font-size: 32px;
    font-weight: 700;
    color: #012169;
    margin-bottom: 45px;
}

.service-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}


.service-faq-question {
    display: flex;
    align-items: center;
    padding: 20px 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}




.service-faq-question:hover {
    color: #e87722;
}

.service-faq-icon {
    font-size: 14px;
    color: #e87722;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 12px;


}

.service-faq-item .collapse.in ~ .service-faq-question .service-faq-icon,
.service-faq-question[aria-expanded="true"] .service-faq-icon {
    transform: rotate(45deg);
}


.service-faq-answer-inner {
    padding: 5px 5px 25px 5px;
}

.service-faq-answer-inner p {
    font-size: 15px;
    line-height: 27px;
    color: #555;
    margin-bottom: 10px;
}

.service-faq-answer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.service-faq-answer-inner ul li {
    padding: 5px 0 5px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 24px;
}

.service-faq-answer-inner ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #e87722;
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .service-faq-section {
        padding: 40px 0;
    }
    .service-faq-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .service-faq-question {
        font-size: 14px;
    }
}



/* =============================================
   SERVICE PAGE - Case Studies Grid
   ============================================= */
.service-case-studies {
    padding: 70px 0;
    background: #fff;
}

.service-case-studies-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 45px;
}

.service-case-study-card {
    margin-bottom: 30px;
    height: 100%;
}

.service-case-study-image {
    overflow: hidden;
}

.service-case-study-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}



.service-case-study-body {
    padding: 25px;
}

.service-case-study-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-case-study-body h4 a {
    color: #1a1a1a;
}

.service-case-study-body h4 a:hover {
    color: #e87722;
}

.service-case-study-body p {
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin-bottom: 15px;
}

.service-case-study-link {
    font-size: 14px;
    font-weight: 600;
    color: #e87722;
}

.service-case-study-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-case-study-link:hover {
    color: #c9621a;
}

.service-case-study-link:hover i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .service-case-studies {
        padding: 40px 0;
    }
    .service-case-studies-heading {
        font-size: 24px;
        margin-bottom: 30px;
    }
}



/* =============================================
   SERVICE PAGE - Testimonial
   ============================================= */
.service-testimonial-section {
    padding: 70px 0;
}

.service-testimonial-inner {
    text-align: left;
}

.service-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-testimonial-avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.service-testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-testimonial-text p {
    font-size: 15px;
    line-height: 27px;
    color: #444;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-testimonial-section {
        padding: 50px 0;
    }
}




/* =============================================
   ELEMENT SETTINGS - Global
   ============================================= */
/* Global layout buttons */
.flex-layout-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.flex-layout-btn {
    display: inline-block;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.flex-layout-btn--solid {
    background: #e87722;
    color: #fff;
    border: 2px solid #e87722;
}

.flex-layout-btn--solid:hover {
    background: transparent;
    color: #e87722;
}

.flex-layout-btn--outline {
    background: transparent;
    color: #e87722;
    border: 2px solid #e87722;
}

.flex-layout-btn--outline:hover {
    background: #e87722;
    color: #fff;
}

.merge-above {
    position: relative;
    background: transparent !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}



/* Dual CTA — top half grey to blend with benefits above */
.service-dual-cta.merge-above {
    position: relative;
    background: transparent !important;
}
.service-dual-cta.merge-above::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #f9f9f9;
    z-index: 0;
}

/* CTA Strip — bottom half grey to blend with FAQ below */
.service-cta-strip-wrapper.merge-above {
    position: relative;
    background: transparent !important;
}
.service-cta-strip-wrapper.merge-above::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #f9f9f9;
    z-index: 0;
}


.merge-above {
    position: relative;
    background: transparent !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}




.merge-above > .container,
.merge-above > .container-fluid,
.merge-above > .service-cta-strip {
    position: relative;
    z-index: 1;
}




