/* Service Detail Page - Title Hero Section */
.service-title-hero {
    /* Gradient: Your main blue to black. Adjust blue as needed. */
    /* The blue from your contact button is #1B71FF */
    background: linear-gradient(135deg, #1B71FF 0%, #000000 100%);
    color: #ffffff; /* White text for good contrast on the gradient */
    padding: 100px 0 80px 0; /* Adjust top padding to account for fixed header height */
    text-align: left;
    position: relative; /* For positioning the back arrow if needed more intricately */
    min-height: 40vh; /* Give it some minimum height */
    display: flex;
    align-items: center; /* Vertically center content */
    margin-top: 50px; /* Adjust if your fixed header height is different from 50px */
}

.service-title-hero .container {
    position: relative; /* For z-index stacking if any overlapping elements were planned */
    z-index: 2;
}

.service-title-content {
    max-width: auto /* Control the width of the text content */
}

.service-title-hero .back-to-services {
    display: inline-flex; /* To align icon and text if you add text */
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-title-hero .back-to-services:hover {
    color: #cccccc; /* Lighter shade on hover */
}

.service-title-hero .back-to-services svg {
    margin-right: 8px; /* Space between arrow and potential text */
}

.service-title-hero h1 {
    font-size: 3.5rem; /* Large title */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-title-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive adjustments for the service title hero */
@media (max-width: 992px) {
    .service-title-hero h1 {
        font-size: 3rem;
    }
    .service-title-hero p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .service-title-hero {
        padding: 80px 0 60px 0;
        min-height: 30vh;
        text-align: center; /* Center text on smaller screens */
    }

    .service-title-content {
        margin-left: auto;
        margin-right: auto;
    }

    .service-title-hero .back-to-services {
        /* Position arrow top left or centered as preferred */
        display: block; /* Make it block to center it if text-align is center */
        margin-left: auto;
        margin-right: auto;
        width: fit-content; /* If centered */
    }

    .service-title-hero h1 {
        font-size: 2.5rem;
    }
    .service-title-hero p {
        font-size: 1rem;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background-color: #f8f9fa; /* A light grey background, common for breadcrumbs. Adjust as needed. */
    padding: 0.75rem 0;      /* Vertical padding. Bootstrap default is often 0.75rem 1rem for .breadcrumb if not in a container */
    margin-top: 10px;       /* Height of your fixed header to prevent overlap. Adjust if your header height is different. */
                            /* From your style.css, #logo-img is 50px, navbar-content height is 50px */
}

/* Styling for Bootstrap's breadcrumb component if you want to customize */
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0; /* Remove default bottom margin from Bootstrap's breadcrumb ol */
    display: flex; /* Ensure items are in a row */
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    padding: 0; /* Reset padding if you want to control it via .breadcrumb-nav */
    list-style: none;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #1B71FF; /* Your primary blue color */
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #495057; /* A darker grey for the active item, slightly darker than Bootstrap's default #6c757d */
}

/* Separator between breadcrumb items (Bootstrap 5 uses an embedded SVG by default) */
/* If you want to customize the separator: */
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">"; 
    color: #6c757d; 
    padding-right: .5rem; 
    padding-left: .5rem; 
    /* Bootstrap 5 handles this with an SVG, so direct customization of the character is different than BS4 */
    /* You can override the SVG via CSS if needed, but it's more complex. */
    /* For simplicity, we'll rely on Bootstrap's default SVG separator. */
}

/* Responsive adjustments for breadcrumbs if needed */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0; /* Slightly less padding on smaller screens */
        /* margin-top: is still needed for the fixed header */
    }
    .breadcrumb-nav .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Service Detail Page - Description Section */
.service-description-section {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #ffffff; /* Assuming a white background, change if needed */
    text-align: center; /* Center align the text content */
}

.service-description-section h2 {
    font-size: 2.2rem; /* Adjust size as needed */
    font-weight: 600;
    color: #333333; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-description-section p {
    font-size: 1.1rem; /* Adjust size as needed */
    line-height: 1.7;
    color: #555555; /* Standard paragraph text color */
    max-width: 800px; /* Constrain line length for readability */
    margin-left: auto;
    margin-right: auto; /* Center the paragraph if its max-width is less than its container */
}

/* Responsive adjustments for the service description section */
@media (max-width: 992px) {
    .service-description-section h2 {
        font-size: 2rem;
    }
    .service-description-section p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .service-description-section {
        padding: 40px 0;
    }
    .service-description-section h2 {
        font-size: 1.8rem;
    }
    .service-description-section p {
        font-size: 1rem;
        padding-left: 15px; /* Add some padding on the sides for very small screens */
        padding-right: 15px;
    }
}

/* Service Detail Page - Process Explanation Section */
.process-explanation-section {
    background-color: #1A1A2E; /* Dark background color from image (approximate) */
    color: #E0E0E0; /* Light text color for contrast */
    padding: 80px 0;
    text-align: center;
    
}

.process-explanation-section .section-subtitle {
    color: #1B71FF; /* Red color from image (approximate) */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.process-explanation-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* White for main title */
    margin-bottom: 20px;
}

.process-explanation-section .section-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B0B0C0; /* Lighter grey for intro paragraph */
    max-width: 800px;
    margin: 0 auto 50px auto; /* Center and add bottom margin */
}

.process-steps-row {
    justify-content: center; /* Center cards if they don't fill the row */
    display: flex; /* Use flexbox for equal height cards */
    flex-wrap: wrap; /* Allow wrapping of cards */
    gap: 30px; /* Space between cards */
    margin: 0 auto; /* Center the row */
}

.process-step-card {
    background-color: #24243E; /* Slightly lighter dark shade for cards (approximate) */
    padding: 30px;
    border-radius: 10px;
       padding-left: 30px !important;  /* Restore your desired *internal* card padding */
    padding-right: 30px !important; 
    text-align: left; /* Text inside cards is left-aligned */
    height: 350px;
    width: 400px; /* For equal height cards if using display:flex on .col-md-4 parent */
    max-width: auto; /* Allow cards to shrink on smaller screens */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */  
    display: flex;
    flex-direction: column;
}

.process-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    /* margin-left: auto; /* If card text-align was center */
    /* margin-right: auto; /* If card text-align was center */
}

.process-icon-wrapper img {
    max-width: 100%; /* Adjust icon size within the wrapper */
    max-height: 100%;
}

.process-step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B0B0C0; /* Lighter grey for card paragraph */
   
}

/* Ensure Bootstrap columns in this row also adopt flex properties for equal height cards */



/* Responsive adjustments */
@media (max-width: 992px) {
    .process-explanation-section .section-title {
        font-size: 2.2rem;
    }
    .process-explanation-section .section-intro-text {
        font-size: 1rem;
    }
    .process-step-card h3 {
        font-size: 1.3rem;
    }
    .process-step-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .process-explanation-section {
        padding: 60px 15px; /* Add horizontal padding for text */
    }
    .process-explanation-section .section-title {
        font-size: 2rem;
    }
     .process-explanation-section .section-intro-text {
        margin-bottom: 40px;
    }
    .process-steps-row > .col-md-4 {
         margin-bottom: 20px; /* Add margin if not already handled by card margin */
    }
    
}

/* Service Detail Page - Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background, adjust if needed */
}

.why-choose-us-section .text-content-column h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222222; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-choose-us-section .text-content-column p {
    font-size: 1rem; /* Standard paragraph size */
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.why-choose-us-section .btn-set-meeting {
    background-color: #1B71FF; /* Red color from image (approximate) */
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.why-choose-us-section .btn-set-meeting:hover {
    background-color: #0541a1; /* Darker red on hover */
    color: #ffffff;
    transform: translateY(-2px);
}

.why-choose-us-section .image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: if image has a border or needs rounded corners */
}

/* Responsive adjustments */
@media (max-width: 991px) { /* Medium devices (tablets) */
    .why-choose-us-section .text-content-column h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) { /* Small devices (smartphones) */
    .why-choose-us-section {
        padding: 50px 0;
        text-align: center; /* Center content on smaller screens */
    }
    .why-choose-us-section .text-content-column {
        margin-bottom: 40px; /* Add space between text and image when stacked */
    }
    .why-choose-us-section .text-content-column h2 {
        font-size: 1.8rem;
    }
    .why-choose-us-section .image-column {
        text-align: center; /* Center image if it's smaller than its container */
    }
     .why-choose-us-section .image-column img {
        max-width: 80%; /* Make image a bit smaller than full width if needed */
        margin: 0 auto; /* Center the image */
    }
}

/* Service Detail Page - Sub-Services List Section */
.sub-services-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background, adjust as needed, image seems to be white or very light grey */
}

.sub-services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.sub-services-section .section-header .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; /* Resetting from potential section-intro-text styling */
}

.sub-services-section .section-header .small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 5px; /* Smaller margin for "CAPABILITIES" */
}


.sub-service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); */ /* Optional: subtle shadow for depth */
    border: 1px solid #e9ecef; /* Light border */
    text-align: left; /* Content within card is left-aligned */
    height: 100%; /* For equal height cards (Bootstrap's .row and .gy-4 help with this) */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}



.sub-service-icon-wrapper img {
    max-width: 70%; /* Adjust icon size within the wrapper */
    max-height: 70%;
    /* filter: invert(38%) sepia(88%) saturate(2559%) hue-rotate(205deg) brightness(100%) contrast(103%); */ /* Example: to color a black SVG to your primary blue #1B71FF */
}

.sub-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.sub-service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1; /* Allows paragraph to take available space, useful for equal height cards */
    margin-bottom: 0; /* Remove bottom margin if card has fixed padding */
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices - Bootstrap's 'md' columns will take effect (2 per row) */
    .sub-services-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) { /* Small devices - Bootstrap's 'col-lg-3 col-md-6' will stack to 1 per row */
    .sub-services-section {
        padding: 60px 0;
    }
    .sub-services-section .section-header h2 {
        font-size: 2rem;
    }
    .sub-service-card {
        text-align: center; /* Center card content on small screens if desired */
    }
    .sub-service-icon-wrapper {
        margin-left: auto;
        margin-right: auto; /* Center icon wrapper if card text is centered */
    }
}/* Service Detail Page - Title Hero Section */
.service-title-hero {
    /* Gradient: Your main blue to black. Adjust blue as needed. */
    /* The blue from your contact button is #1B71FF */
    background: linear-gradient(135deg, #1B71FF 0%, #000000 100%);
    color: #ffffff; /* White text for good contrast on the gradient */
    padding: 100px 0 80px 0; /* Adjust top padding to account for fixed header height */
    text-align: left;
    position: relative; /* For positioning the back arrow if needed more intricately */
    min-height: 40vh; /* Give it some minimum height */
    display: flex;
    align-items: center; /* Vertically center content */
    margin-top: 50px; /* Adjust if your fixed header height is different from 50px */
}

.service-title-hero .container {
    position: relative; /* For z-index stacking if any overlapping elements were planned */
    z-index: 2;
}

.service-title-content {
    max-width: auto /* Control the width of the text content */
}

.service-title-hero .back-to-services {
    display: inline-flex; /* To align icon and text if you add text */
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-title-hero .back-to-services:hover {
    color: #cccccc; /* Lighter shade on hover */
}

.service-title-hero .back-to-services svg {
    margin-right: 8px; /* Space between arrow and potential text */
}

.service-title-hero h1 {
    font-size: 3.5rem; /* Large title */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-title-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive adjustments for the service title hero */
@media (max-width: 992px) {
    .service-title-hero h1 {
        font-size: 3rem;
    }
    .service-title-hero p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .service-title-hero {
        padding: 80px 0 60px 0;
        min-height: 30vh;
        text-align: center; /* Center text on smaller screens */
    }

    .service-title-content {
        margin-left: auto;
        margin-right: auto;
    }

    .service-title-hero .back-to-services {
        /* Position arrow top left or centered as preferred */
        display: block; /* Make it block to center it if text-align is center */
        margin-left: auto;
        margin-right: auto;
        width: fit-content; /* If centered */
    }

    .service-title-hero h1 {
        font-size: 2.5rem;
    }
    .service-title-hero p {
        font-size: 1rem;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background-color: #f8f9fa; /* A light grey background, common for breadcrumbs. Adjust as needed. */
    padding: 0.75rem 0;      /* Vertical padding. Bootstrap default is often 0.75rem 1rem for .breadcrumb if not in a container */
    margin-top: 10px;       /* Height of your fixed header to prevent overlap. Adjust if your header height is different. */
                            /* From your style.css, #logo-img is 50px, navbar-content height is 50px */
}

/* Styling for Bootstrap's breadcrumb component if you want to customize */
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0; /* Remove default bottom margin from Bootstrap's breadcrumb ol */
    display: flex; /* Ensure items are in a row */
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    padding: 0; /* Reset padding if you want to control it via .breadcrumb-nav */
    list-style: none;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #1B71FF; /* Your primary blue color */
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #495057; /* A darker grey for the active item, slightly darker than Bootstrap's default #6c757d */
}

/* Separator between breadcrumb items (Bootstrap 5 uses an embedded SVG by default) */
/* If you want to customize the separator: */
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">"; 
    color: #6c757d; 
    padding-right: .5rem; 
    padding-left: .5rem; 
    /* Bootstrap 5 handles this with an SVG, so direct customization of the character is different than BS4 */
    /* You can override the SVG via CSS if needed, but it's more complex. */
    /* For simplicity, we'll rely on Bootstrap's default SVG separator. */
}

/* Responsive adjustments for breadcrumbs if needed */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0; /* Slightly less padding on smaller screens */
        /* margin-top: is still needed for the fixed header */
    }
    .breadcrumb-nav .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Service Detail Page - Description Section */
.service-description-section {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #ffffff; /* Assuming a white background, change if needed */
    text-align: center; /* Center align the text content */
}

.service-description-section h2 {
    font-size: 2.2rem; /* Adjust size as needed */
    font-weight: 600;
    color: #333333; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-description-section p {
    font-size: 1.1rem; /* Adjust size as needed */
    line-height: 1.7;
    color: #555555; /* Standard paragraph text color */
    max-width: 800px; /* Constrain line length for readability */
    margin-left: auto;
    margin-right: auto; /* Center the paragraph if its max-width is less than its container */
}

/* Responsive adjustments for the service description section */
@media (max-width: 992px) {
    .service-description-section h2 {
        font-size: 2rem;
    }
    .service-description-section p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .service-description-section {
        padding: 40px 0;
    }
    .service-description-section h2 {
        font-size: 1.8rem;
    }
    .service-description-section p {
        font-size: 1rem;
        padding-left: 15px; /* Add some padding on the sides for very small screens */
        padding-right: 15px;
    }
}

/* Service Detail Page - Process Explanation Section */
.process-explanation-section {
    background-color: #1A1A2E; /* Dark background color from image (approximate) */
    color: #E0E0E0; /* Light text color for contrast */
    padding: 80px 0;
    text-align: center;
    
}

.process-explanation-section .section-subtitle {
    color: #1B71FF; /* Red color from image (approximate) */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.process-explanation-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* White for main title */
    margin-bottom: 20px;
}

.process-explanation-section .section-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B0B0C0; /* Lighter grey for intro paragraph */
    max-width: 800px;
    margin: 0 auto 50px auto; /* Center and add bottom margin */
}

.process-steps-row {
    justify-content: center; /* Center cards if they don't fill the row */
    display: flex; /* Use flexbox for equal height cards */
    flex-wrap: wrap; /* Allow wrapping of cards */
    gap: 30px; /* Space between cards */
    margin: 0 auto; /* Center the row */
}

.process-step-card {
    background-color: #24243E; /* Slightly lighter dark shade for cards (approximate) */
    padding: 30px;
    border-radius: 10px;
       padding-left: 30px !important;  /* Restore your desired *internal* card padding */
    padding-right: 30px !important; 
    text-align: left; /* Text inside cards is left-aligned */
    height: 350px;
    width: 400px; /* For equal height cards if using display:flex on .col-md-4 parent */
    max-width: auto; /* Allow cards to shrink on smaller screens */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */  
    display: flex;
    flex-direction: column;
}

.process-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    /* margin-left: auto; /* If card text-align was center */
    /* margin-right: auto; /* If card text-align was center */
}

.process-icon-wrapper img {
    max-width: 100%; /* Adjust icon size within the wrapper */
    max-height: 100%;
}

.process-step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B0B0C0; /* Lighter grey for card paragraph */
   
}

/* Ensure Bootstrap columns in this row also adopt flex properties for equal height cards */



/* Responsive adjustments */
@media (max-width: 992px) {
    .process-explanation-section .section-title {
        font-size: 2.2rem;
    }
    .process-explanation-section .section-intro-text {
        font-size: 1rem;
    }
    .process-step-card h3 {
        font-size: 1.3rem;
    }
    .process-step-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .process-explanation-section {
        padding: 60px 15px; /* Add horizontal padding for text */
    }
    .process-explanation-section .section-title {
        font-size: 2rem;
    }
     .process-explanation-section .section-intro-text {
        margin-bottom: 40px;
    }
    .process-steps-row > .col-md-4 {
         margin-bottom: 20px; /* Add margin if not already handled by card margin */
    }
    
}

/* Service Detail Page - Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background, adjust if needed */
}

.why-choose-us-section .text-content-column h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222222; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-choose-us-section .text-content-column p {
    font-size: 1rem; /* Standard paragraph size */
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.why-choose-us-section .btn-set-meeting {
    background-color: #1B71FF; /* Red color from image (approximate) */
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.why-choose-us-section .btn-set-meeting:hover {
    background-color: #0541a1; /* Darker red on hover */
    color: #ffffff;
    transform: translateY(-2px);
}

.why-choose-us-section .image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: if image has a border or needs rounded corners */
}

/* Responsive adjustments */
@media (max-width: 991px) { /* Medium devices (tablets) */
    .why-choose-us-section .text-content-column h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) { /* Small devices (smartphones) */
    .why-choose-us-section {
        padding: 50px 0;
        text-align: center; /* Center content on smaller screens */
    }
    .why-choose-us-section .text-content-column {
        margin-bottom: 40px; /* Add space between text and image when stacked */
    }
    .why-choose-us-section .text-content-column h2 {
        font-size: 1.8rem;
    }
    .why-choose-us-section .image-column {
        text-align: center; /* Center image if it's smaller than its container */
    }
     .why-choose-us-section .image-column img {
        max-width: 80%; /* Make image a bit smaller than full width if needed */
        margin: 0 auto; /* Center the image */
    }
}

/* Service Detail Page - Sub-Services List Section */
.sub-services-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background, adjust as needed, image seems to be white or very light grey */
}

.sub-services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.sub-services-section .section-header .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; /* Resetting from potential section-intro-text styling */
}

.sub-services-section .section-header .small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 5px; /* Smaller margin for "CAPABILITIES" */
}


.sub-service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); */ /* Optional: subtle shadow for depth */
    border: 1px solid #e9ecef; /* Light border */
    text-align: left; /* Content within card is left-aligned */
    height: 100%; /* For equal height cards (Bootstrap's .row and .gy-4 help with this) */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}



.sub-service-icon-wrapper img {
    max-width: 70%; /* Adjust icon size within the wrapper */
    max-height: 70%;
    /* filter: invert(38%) sepia(88%) saturate(2559%) hue-rotate(205deg) brightness(100%) contrast(103%); */ /* Example: to color a black SVG to your primary blue #1B71FF */
}

.sub-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.sub-service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1; /* Allows paragraph to take available space, useful for equal height cards */
    margin-bottom: 0; /* Remove bottom margin if card has fixed padding */
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices - Bootstrap's 'md' columns will take effect (2 per row) */
    .sub-services-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) { /* Small devices - Bootstrap's 'col-lg-3 col-md-6' will stack to 1 per row */
    .sub-services-section {
        padding: 60px 0;
    }
    .sub-services-section .section-header h2 {
        font-size: 2rem;
    }
    .sub-service-card {
        text-align: center; /* Center card content on small screens if desired */
    }
    .sub-service-icon-wrapper {
        margin-left: auto;
        margin-right: auto; /* Center icon wrapper if card text is centered */
    }
}/* Service Detail Page - Title Hero Section */
.service-title-hero {
    /* Gradient: Your main blue to black. Adjust blue as needed. */
    /* The blue from your contact button is #1B71FF */
    background: linear-gradient(135deg, #1B71FF 0%, #000000 100%);
    color: #ffffff; /* White text for good contrast on the gradient */
    padding: 100px 0 80px 0; /* Adjust top padding to account for fixed header height */
    text-align: left;
    position: relative; /* For positioning the back arrow if needed more intricately */
    min-height: 40vh; /* Give it some minimum height */
    display: flex;
    align-items: center; /* Vertically center content */
    margin-top: 50px; /* Adjust if your fixed header height is different from 50px */
}

.service-title-hero .container {
    position: relative; /* For z-index stacking if any overlapping elements were planned */
    z-index: 2;
}

.service-title-content {
    max-width: auto /* Control the width of the text content */
}

.service-title-hero .back-to-services {
    display: inline-flex; /* To align icon and text if you add text */
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-title-hero .back-to-services:hover {
    color: #cccccc; /* Lighter shade on hover */
}

.service-title-hero .back-to-services svg {
    margin-right: 8px; /* Space between arrow and potential text */
}

.service-title-hero h1 {
    font-size: 3.5rem; /* Large title */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-title-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive adjustments for the service title hero */
@media (max-width: 992px) {
    .service-title-hero h1 {
        font-size: 3rem;
    }
    .service-title-hero p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .service-title-hero {
        padding: 80px 0 60px 0;
        min-height: 30vh;
        text-align: center; /* Center text on smaller screens */
    }

    .service-title-content {
        margin-left: auto;
        margin-right: auto;
    }

    .service-title-hero .back-to-services {
        /* Position arrow top left or centered as preferred */
        display: block; /* Make it block to center it if text-align is center */
        margin-left: auto;
        margin-right: auto;
        width: fit-content; /* If centered */
    }

    .service-title-hero h1 {
        font-size: 2.5rem;
    }
    .service-title-hero p {
        font-size: 1rem;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background-color: #f8f9fa; /* A light grey background, common for breadcrumbs. Adjust as needed. */
    padding: 0.75rem 0;      /* Vertical padding. Bootstrap default is often 0.75rem 1rem for .breadcrumb if not in a container */
    margin-top: 10px;       /* Height of your fixed header to prevent overlap. Adjust if your header height is different. */
                            /* From your style.css, #logo-img is 50px, navbar-content height is 50px */
}

/* Styling for Bootstrap's breadcrumb component if you want to customize */
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0; /* Remove default bottom margin from Bootstrap's breadcrumb ol */
    display: flex; /* Ensure items are in a row */
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    padding: 0; /* Reset padding if you want to control it via .breadcrumb-nav */
    list-style: none;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #1B71FF; /* Your primary blue color */
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #495057; /* A darker grey for the active item, slightly darker than Bootstrap's default #6c757d */
}

/* Separator between breadcrumb items (Bootstrap 5 uses an embedded SVG by default) */
/* If you want to customize the separator: */
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">"; 
    color: #6c757d; 
    padding-right: .5rem; 
    padding-left: .5rem; 
    /* Bootstrap 5 handles this with an SVG, so direct customization of the character is different than BS4 */
    /* You can override the SVG via CSS if needed, but it's more complex. */
    /* For simplicity, we'll rely on Bootstrap's default SVG separator. */
}

/* Responsive adjustments for breadcrumbs if needed */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0; /* Slightly less padding on smaller screens */
        /* margin-top: is still needed for the fixed header */
    }
    .breadcrumb-nav .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Service Detail Page - Description Section */
.service-description-section {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #ffffff; /* Assuming a white background, change if needed */
    text-align: center; /* Center align the text content */
}

.service-description-section h2 {
    font-size: 2.2rem; /* Adjust size as needed */
    font-weight: 600;
    color: #333333; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-description-section p {
    font-size: 1.1rem; /* Adjust size as needed */
    line-height: 1.7;
    color: #555555; /* Standard paragraph text color */
    max-width: 800px; /* Constrain line length for readability */
    margin-left: auto;
    margin-right: auto; /* Center the paragraph if its max-width is less than its container */
}

/* Responsive adjustments for the service description section */
@media (max-width: 992px) {
    .service-description-section h2 {
        font-size: 2rem;
    }
    .service-description-section p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .service-description-section {
        padding: 40px 0;
    }
    .service-description-section h2 {
        font-size: 1.8rem;
    }
    .service-description-section p {
        font-size: 1rem;
        padding-left: 15px; /* Add some padding on the sides for very small screens */
        padding-right: 15px;
    }
}

/* Service Detail Page - Process Explanation Section */
.process-explanation-section {
    background-color: #1A1A2E; /* Dark background color from image (approximate) */
    color: #E0E0E0; /* Light text color for contrast */
    padding: 80px 0;
    text-align: center;
    
}

.process-explanation-section .section-subtitle {
    color: #1B71FF; /* Red color from image (approximate) */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.process-explanation-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* White for main title */
    margin-bottom: 20px;
}

.process-explanation-section .section-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B0B0C0; /* Lighter grey for intro paragraph */
    max-width: 800px;
    margin: 0 auto 50px auto; /* Center and add bottom margin */
}

.process-steps-row {
    justify-content: center; /* Center cards if they don't fill the row */
    display: flex; /* Use flexbox for equal height cards */
    flex-wrap: wrap; /* Allow wrapping of cards */
    gap: 30px; /* Space between cards */
    margin: 0 auto; /* Center the row */
}

.process-step-card {
    background-color: #24243E; /* Slightly lighter dark shade for cards (approximate) */
    padding: 30px;
    border-radius: 10px;
       padding-left: 30px !important;  /* Restore your desired *internal* card padding */
    padding-right: 30px !important; 
    text-align: left; /* Text inside cards is left-aligned */
    height: 350px;
    width: 400px; /* For equal height cards if using display:flex on .col-md-4 parent */
    max-width: auto; /* Allow cards to shrink on smaller screens */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */  
    display: flex;
    flex-direction: column;
}

.process-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    /* margin-left: auto; /* If card text-align was center */
    /* margin-right: auto; /* If card text-align was center */
}

.process-icon-wrapper img {
    max-width: 100%; /* Adjust icon size within the wrapper */
    max-height: 100%;
}

.process-step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B0B0C0; /* Lighter grey for card paragraph */
   
}

/* Ensure Bootstrap columns in this row also adopt flex properties for equal height cards */



/* Responsive adjustments */
@media (max-width: 992px) {
    .process-explanation-section .section-title {
        font-size: 2.2rem;
    }
    .process-explanation-section .section-intro-text {
        font-size: 1rem;
    }
    .process-step-card h3 {
        font-size: 1.3rem;
    }
    .process-step-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .process-explanation-section {
        padding: 60px 15px; /* Add horizontal padding for text */
    }
    .process-explanation-section .section-title {
        font-size: 2rem;
    }
     .process-explanation-section .section-intro-text {
        margin-bottom: 40px;
    }
    .process-steps-row > .col-md-4 {
         margin-bottom: 20px; /* Add margin if not already handled by card margin */
    }
    
}

/* Service Detail Page - Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background, adjust if needed */
}

.why-choose-us-section .text-content-column h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222222; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-choose-us-section .text-content-column p {
    font-size: 1rem; /* Standard paragraph size */
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.why-choose-us-section .btn-set-meeting {
    background-color: #1B71FF; /* Red color from image (approximate) */
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.why-choose-us-section .btn-set-meeting:hover {
    background-color: #0541a1; /* Darker red on hover */
    color: #ffffff;
    transform: translateY(-2px);
}

.why-choose-us-section .image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: if image has a border or needs rounded corners */
}

/* Responsive adjustments */
@media (max-width: 991px) { /* Medium devices (tablets) */
    .why-choose-us-section .text-content-column h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) { /* Small devices (smartphones) */
    .why-choose-us-section {
        padding: 50px 0;
        text-align: center; /* Center content on smaller screens */
    }
    .why-choose-us-section .text-content-column {
        margin-bottom: 40px; /* Add space between text and image when stacked */
    }
    .why-choose-us-section .text-content-column h2 {
        font-size: 1.8rem;
    }
    .why-choose-us-section .image-column {
        text-align: center; /* Center image if it's smaller than its container */
    }
     .why-choose-us-section .image-column img {
        max-width: 80%; /* Make image a bit smaller than full width if needed */
        margin: 0 auto; /* Center the image */
    }
}

/* Service Detail Page - Sub-Services List Section */
.sub-services-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background, adjust as needed, image seems to be white or very light grey */
}

.sub-services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.sub-services-section .section-header .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; /* Resetting from potential section-intro-text styling */
}

.sub-services-section .section-header .small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 5px; /* Smaller margin for "CAPABILITIES" */
}


.sub-service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); */ /* Optional: subtle shadow for depth */
    border: 1px solid #e9ecef; /* Light border */
    text-align: left; /* Content within card is left-aligned */
    height: 100%; /* For equal height cards (Bootstrap's .row and .gy-4 help with this) */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}



.sub-service-icon-wrapper img {
    max-width: 70%; /* Adjust icon size within the wrapper */
    max-height: 70%;
    /* filter: invert(38%) sepia(88%) saturate(2559%) hue-rotate(205deg) brightness(100%) contrast(103%); */ /* Example: to color a black SVG to your primary blue #1B71FF */
}

.sub-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.sub-service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1; /* Allows paragraph to take available space, useful for equal height cards */
    margin-bottom: 0; /* Remove bottom margin if card has fixed padding */
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices - Bootstrap's 'md' columns will take effect (2 per row) */
    .sub-services-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) { /* Small devices - Bootstrap's 'col-lg-3 col-md-6' will stack to 1 per row */
    .sub-services-section {
        padding: 60px 0;
    }
    .sub-services-section .section-header h2 {
        font-size: 2rem;
    }
    .sub-service-card {
        text-align: center; /* Center card content on small screens if desired */
    }
    .sub-service-icon-wrapper {
        margin-left: auto;
        margin-right: auto; /* Center icon wrapper if card text is centered */
    }
}/* Service Detail Page - Title Hero Section */
.service-title-hero {
    /* Gradient: Your main blue to black. Adjust blue as needed. */
    /* The blue from your contact button is #1B71FF */
    background: linear-gradient(135deg, #1B71FF 0%, #000000 100%);
    color: #ffffff; /* White text for good contrast on the gradient */
    padding: 100px 0 80px 0; /* Adjust top padding to account for fixed header height */
    text-align: left;
    position: relative; /* For positioning the back arrow if needed more intricately */
    min-height: 40vh; /* Give it some minimum height */
    display: flex;
    align-items: center; /* Vertically center content */
    margin-top: 50px; /* Adjust if your fixed header height is different from 50px */
}

.service-title-hero .container {
    position: relative; /* For z-index stacking if any overlapping elements were planned */
    z-index: 2;
}

.service-title-content {
    max-width: auto /* Control the width of the text content */
}

.service-title-hero .back-to-services {
    display: inline-flex; /* To align icon and text if you add text */
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.service-title-hero .back-to-services:hover {
    color: #cccccc; /* Lighter shade on hover */
}

.service-title-hero .back-to-services svg {
    margin-right: 8px; /* Space between arrow and potential text */
}

.service-title-hero h1 {
    font-size: 3.5rem; /* Large title */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-title-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive adjustments for the service title hero */
@media (max-width: 992px) {
    .service-title-hero h1 {
        font-size: 3rem;
    }
    .service-title-hero p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .service-title-hero {
        padding: 80px 0 60px 0;
        min-height: 30vh;
        text-align: center; /* Center text on smaller screens */
    }

    .service-title-content {
        margin-left: auto;
        margin-right: auto;
    }

    .service-title-hero .back-to-services {
        /* Position arrow top left or centered as preferred */
        display: block; /* Make it block to center it if text-align is center */
        margin-left: auto;
        margin-right: auto;
        width: fit-content; /* If centered */
    }

    .service-title-hero h1 {
        font-size: 2.5rem;
    }
    .service-title-hero p {
        font-size: 1rem;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    background-color: #f8f9fa; /* A light grey background, common for breadcrumbs. Adjust as needed. */
    padding: 0.75rem 0;      /* Vertical padding. Bootstrap default is often 0.75rem 1rem for .breadcrumb if not in a container */
    margin-top: 10px;       /* Height of your fixed header to prevent overlap. Adjust if your header height is different. */
                            /* From your style.css, #logo-img is 50px, navbar-content height is 50px */
}

/* Styling for Bootstrap's breadcrumb component if you want to customize */
.breadcrumb-nav .breadcrumb {
    margin-bottom: 0; /* Remove default bottom margin from Bootstrap's breadcrumb ol */
    display: flex; /* Ensure items are in a row */
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    padding: 0; /* Reset padding if you want to control it via .breadcrumb-nav */
    list-style: none;
}

.breadcrumb-nav .breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: #1B71FF; /* Your primary blue color */
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .breadcrumb-item.active {
    color: #495057; /* A darker grey for the active item, slightly darker than Bootstrap's default #6c757d */
}

/* Separator between breadcrumb items (Bootstrap 5 uses an embedded SVG by default) */
/* If you want to customize the separator: */
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: ">"; 
    color: #6c757d; 
    padding-right: .5rem; 
    padding-left: .5rem; 
    /* Bootstrap 5 handles this with an SVG, so direct customization of the character is different than BS4 */
    /* You can override the SVG via CSS if needed, but it's more complex. */
    /* For simplicity, we'll rely on Bootstrap's default SVG separator. */
}

/* Responsive adjustments for breadcrumbs if needed */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 0.5rem 0; /* Slightly less padding on smaller screens */
        /* margin-top: is still needed for the fixed header */
    }
    .breadcrumb-nav .breadcrumb-item {
        font-size: 0.85rem;
    }
}

/* Service Detail Page - Description Section */
.service-description-section {
    padding: 60px 0; /* Adjust padding as needed */
    background-color: #ffffff; /* Assuming a white background, change if needed */
    text-align: center; /* Center align the text content */
}

.service-description-section h2 {
    font-size: 2.2rem; /* Adjust size as needed */
    font-weight: 600;
    color: #333333; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-description-section p {
    font-size: 1.1rem; /* Adjust size as needed */
    line-height: 1.7;
    color: #555555; /* Standard paragraph text color */
    max-width: 800px; /* Constrain line length for readability */
    margin-left: auto;
    margin-right: auto; /* Center the paragraph if its max-width is less than its container */
}

/* Responsive adjustments for the service description section */
@media (max-width: 992px) {
    .service-description-section h2 {
        font-size: 2rem;
    }
    .service-description-section p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .service-description-section {
        padding: 40px 0;
    }
    .service-description-section h2 {
        font-size: 1.8rem;
    }
    .service-description-section p {
        font-size: 1rem;
        padding-left: 15px; /* Add some padding on the sides for very small screens */
        padding-right: 15px;
    }
}

/* Service Detail Page - Process Explanation Section */
.process-explanation-section {
    background-color: #1A1A2E; /* Dark background color from image (approximate) */
    color: #E0E0E0; /* Light text color for contrast */
    padding: 80px 0;
    text-align: center;
    
}

.process-explanation-section .section-subtitle {
    color: #1B71FF; /* Red color from image (approximate) */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.process-explanation-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff; /* White for main title */
    margin-bottom: 20px;
}

.process-explanation-section .section-intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B0B0C0; /* Lighter grey for intro paragraph */
    max-width: 800px;
    margin: 0 auto 50px auto; /* Center and add bottom margin */
}

.process-steps-row {
    justify-content: center; /* Center cards if they don't fill the row */
    display: flex; /* Use flexbox for equal height cards */
    flex-wrap: wrap; /* Allow wrapping of cards */
    gap: 30px; /* Space between cards */
    margin: 0 auto; /* Center the row */
}

.process-step-card {
    background-color: #24243E; /* Slightly lighter dark shade for cards (approximate) */
    padding: 30px;
    border-radius: 10px;
       padding-left: 30px !important;  /* Restore your desired *internal* card padding */
    padding-right: 30px !important; 
    text-align: left; /* Text inside cards is left-aligned */
    height: 350px;
    width: 400px; /* For equal height cards if using display:flex on .col-md-4 parent */
    max-width: auto; /* Allow cards to shrink on smaller screens */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */  
    display: flex;
    flex-direction: column;
}

.process-icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    /* margin-left: auto; /* If card text-align was center */
    /* margin-right: auto; /* If card text-align was center */
}

.process-icon-wrapper img {
    max-width: 100%; /* Adjust icon size within the wrapper */
    max-height: 100%;
}

.process-step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #B0B0C0; /* Lighter grey for card paragraph */
   
}

/* Ensure Bootstrap columns in this row also adopt flex properties for equal height cards */



/* Responsive adjustments */
@media (max-width: 992px) {
    .process-explanation-section .section-title {
        font-size: 2.2rem;
    }
    .process-explanation-section .section-intro-text {
        font-size: 1rem;
    }
    .process-step-card h3 {
        font-size: 1.3rem;
    }
    .process-step-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .process-explanation-section {
        padding: 60px 15px; /* Add horizontal padding for text */
    }
    .process-explanation-section .section-title {
        font-size: 2rem;
    }
     .process-explanation-section .section-intro-text {
        margin-bottom: 40px;
    }
    .process-steps-row > .col-md-4 {
         margin-bottom: 20px; /* Add margin if not already handled by card margin */
    }
    
}

/* Service Detail Page - Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff; /* White background, adjust if needed */
}

.why-choose-us-section .text-content-column h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222222; /* Dark heading color */
    margin-bottom: 25px;
    line-height: 1.3;
}

.why-choose-us-section .text-content-column p {
    font-size: 1rem; /* Standard paragraph size */
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
}

.why-choose-us-section .btn-set-meeting {
    background-color: #1B71FF; /* Red color from image (approximate) */
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.why-choose-us-section .btn-set-meeting:hover {
    background-color: #0541a1; /* Darker red on hover */
    color: #ffffff;
    transform: translateY(-2px);
}

.why-choose-us-section .image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: if image has a border or needs rounded corners */
}

/* Responsive adjustments */
@media (max-width: 991px) { /* Medium devices (tablets) */
    .why-choose-us-section .text-content-column h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) { /* Small devices (smartphones) */
    .why-choose-us-section {
        padding: 50px 0;
        text-align: center; /* Center content on smaller screens */
    }
    .why-choose-us-section .text-content-column {
        margin-bottom: 40px; /* Add space between text and image when stacked */
    }
    .why-choose-us-section .text-content-column h2 {
        font-size: 1.8rem;
    }
    .why-choose-us-section .image-column {
        text-align: center; /* Center image if it's smaller than its container */
    }
     .why-choose-us-section .image-column img {
        max-width: 80%; /* Make image a bit smaller than full width if needed */
        margin: 0 auto; /* Center the image */
    }
}

/* Service Detail Page - Sub-Services List Section */
.sub-services-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background, adjust as needed, image seems to be white or very light grey */
}

.sub-services-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.sub-services-section .section-header .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0; /* Resetting from potential section-intro-text styling */
}

.sub-services-section .section-header .small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 5px; /* Smaller margin for "CAPABILITIES" */
}


.sub-service-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); */ /* Optional: subtle shadow for depth */
    border: 1px solid #e9ecef; /* Light border */
    text-align: left; /* Content within card is left-aligned */
    height: 100%; /* For equal height cards (Bootstrap's .row and .gy-4 help with this) */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}



.sub-service-icon-wrapper img {
    max-width: 70%; /* Adjust icon size within the wrapper */
    max-height: 70%;
    /* filter: invert(38%) sepia(88%) saturate(2559%) hue-rotate(205deg) brightness(100%) contrast(103%); */ /* Example: to color a black SVG to your primary blue #1B71FF */
}

.sub-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.sub-service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
    flex-grow: 1; /* Allows paragraph to take available space, useful for equal height cards */
    margin-bottom: 0; /* Remove bottom margin if card has fixed padding */
}

/* Responsive Adjustments */
@media (max-width: 991px) { /* Medium devices - Bootstrap's 'md' columns will take effect (2 per row) */
    .sub-services-section .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) { /* Small devices - Bootstrap's 'col-lg-3 col-md-6' will stack to 1 per row */
    .sub-services-section {
        padding: 60px 0;
    }
    .sub-services-section .section-header h2 {
        font-size: 2rem;
    }
    .sub-service-card {
        text-align: center; /* Center card content on small screens if desired */
    }
    .sub-service-icon-wrapper {
        margin-left: auto;
        margin-right: auto; /* Center icon wrapper if card text is centered */
    }
}