/* ACCELERATE CTA SECTION -- CENTER ONE */
.accelerate-section {
    background-color: #020617; /* Slate 950 - Almost Black Blue */
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
}

.accelerate-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.3;
}

.text-white { color: white; }
/* Reuse the orange class for the blue text */
.text-orange { color: var(--color-primary); }

@media (max-width: 768px) {
    .accelerate-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .accelerate-heading {
        font-size: 1.8rem;
    }
}
/* ACCELERATE CTA SECTION -- CENTER ONE */

/*PAGE HERO SECTION*/
/* --- TECH SOLUTIONS SECTION --- */
.solutions-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 80vh; /* Gives it that spacious look from the screenshot */
}

/* Breadcrumb & Subheading Typography */
.solutions-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Main Heading Typography */
.solutions-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem; /* Large impact text */
    color: var(--color-dark);
    line-height: 1.1;
}

.solutions-paragraph {
    padding: 1rem 0px;
    font-size: 1.2rem;
    font-weight: 500;
}

.text-orange {
    color: var(--color-primary);
}

/* --- THE B-SHAPE IMAGE MASK --- */
.logo-shape-img-wrapper {
    width: 100%;
    max-width: 600px;
    height: 500px; /* Fixed height to maintain shape ratio */
    margin-left: auto;
    position: relative;
    overflow: hidden;

    /* This creates the abstract "B" / Double Leaf shape */
    /* It uses 4 border-radius values: Top-Left, Top-Right, Bottom-Right, Bottom-Left */
    /* We make the right side rounded (leaves) and left side sharp/inward */
    border-radius: 30% 70% 70% 30% / 30% 50% 50% 30%;

    /* Using clip-path for a sharper "Logo" cut if border-radius isn't aggressive enough */
    /* This polygon mimics two overlapping circles/leaves */
    clip-path: path("M0,100 C0,0 200,0 350,100 C500,200 500,300 350,400 C200,500 0,500 0,400 C50,300 50,200 0,100 Z");
    /* Fallback for basic shape if path isn't supported in older browsers: */
    /* clip-path: polygon(0% 20%, 30% 0%, 100% 20%, 100% 80%, 30% 100%, 0% 80%, 20% 50%); */

    /* Since path() can be tricky with responsive widths, let's use a robust Border-Radius trick
       that matches the visual "B" flow nicely without SVG complexity: */
    clip-path: none; /* Resetting to use the border-radius method below which is more fluid */
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 20%;
    border-bottom-left-radius: 20%;

    /* Transform to angle it slightly like the logo mark */
    transform: perspective(1000px) rotateY(-10deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
}

/* Note: To get the EXACT "B" logo cutout requires an SVG Mask.
   The CSS below approximates it using a "Double Circle" layout logic */
.logo-shape-img-wrapper {
    /* Resetting specifically for the exact look */
    border-radius: 0;
    transform: none;
    box-shadow: none;

    /* This polygon creates the "B" indent on the left */
    clip-path: polygon(
        20% 0%, 100% 0%, 100% 100%, 20% 100%,
        0% 80%, 15% 50%, 0% 20%
    );

    /* Combined with border-radius on the right to make it round */
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}

.logo-shape-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .solutions-heading {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    .logo-shape-img-wrapper {
        height: 300px;
        /* Simplify shape on mobile */
        clip-path: none;
        border-radius: 20px;
    }
}
/*PAGE HERO SECTION*/

/* --- ACCELERATE CTA SECTION -- LEFT ONE --- */
.accelerate-cta-section {
    background-color: #000000; /* Pure Black */
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.accelerate-title {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 3rem; /* Large sizing */
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Reusing the orange variable, but ensuring it applies here */
.accelerate-title .text-orange {
    color: var(--color-primary); /* #F06436 */
}

/* The Specific Green Button */
.btn-green-cta {
    background-color: #009870; /* Deep Emerald Green from image */
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-green-cta:hover {
    background-color: #007f5f;
    color: white;
}

/* Map Image Handling */
.map-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    justify-content: flex-end;
}

.map-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Invert/Filter to make a standard map look more 'tech' if using a placeholder */
    /* You can remove this filter if you upload your own dotted map PNG */
    opacity: 0.8;
}

/* Gradient Overlay to blend image edges into black background */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 50%, #000000 100%);
    pointer-events: none;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .accelerate-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .accelerate-cta-section .col-lg-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .map-img-wrapper {
        justify-content: center;
        margin-top: 2rem;
    }
}
/* --- END ACCELERATE CTA SECTION -- LEFT ONE --- */

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--bd-gray-bg);
    padding-bottom: 5rem;
    padding-top: 5rem;
    overflow: hidden;
}

.people-img {
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
}

.testi-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    line-height: 1.2;
}

.testi-sub {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.5;
}

.testimonial-scroll-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -180px;
}

.testimonial-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px 5px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonial-container::-webkit-scrollbar {
    display: none;
}

.testi-card {
    background: white;
    border-radius: 8px;
    padding: 2.2rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    flex: 0 0 300px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.testi-quote {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #475569;
    font-weight: 400;
}

.btn-scroll {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    color: #64748b;
    background: white;
}
.btn-scroll:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

@media (max-width: 991px) {
    .people-img {
        height: 300px;
        margin-bottom: 2rem;
    }
    .testimonial-scroll-wrapper {
        margin-top: 0;
    }
    .testi-card {
        flex: 0 0 280px;
    }
}
/*END OF TESTOMINAL SECTION*/


/* --- QA CARD SECTIONS --- */
.qa-section {
    background-color: #f8f9fa; /* Light gray background */
    padding-top: 5rem;
    padding-bottom: 6rem;
}

/* Header Styling */
.qa-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #000;
}

.text-yellow-icon {
    color: #ffc107; /* Bootstrap warning yellow color */
}

/* Card Styling */
.qa-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    /* Optional: Subtle shadow by default */
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.qa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Card Title with Thick Underline */
.qa-card-link {
    text-decoration: none;
}

.qa-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Extra bold */
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 1.5rem;

    /* Creating the thick underline */
    text-decoration: underline;
    text-decoration-color: #343a40; /* Dark gray underline */
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.qa-card-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .qa-heading {
        font-size: 2rem;
    }
}
/* --- QA CARD SECTIONS --- */

/* TECH STACK MARQUEE SECTION */
.tech-stack-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: #fff;
    overflow: hidden;
}

.tech-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.tech-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.5;
}

.tech-marquee-container {
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.tech-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #cbd5e1; /* Lighter gray */
    margin: 0 1.5rem;
    transition: color 0.3s ease;
    cursor: default;
}

.tech-name:hover {
    cursor: pointer;
    color: var(--color-primary); /* Lights up Blue */
}

.scroll-left .marquee-content {
    animation-name: slideLeft;
}

@keyframes slideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.scroll-right .marquee-content {
    animation-name: slideRight;
    transform: translateX(-50%);
}

@keyframes slideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .tech-name {
        font-size: 1.8rem;
        margin: 0 1rem;
    }
    .tech-title {
        font-size: 2rem;
    }
    .marquee-content {
        animation-duration: 20s;
    }
}
/* END OF TECH STACK MARQUEE SECTION */

/* --- DISCOVERY CALL SECTION --- */
.discovery-section {
    background-color: #fff; /* Default right-side background for Desktop */
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

/* The Black Background Shape (Desktop Only) */
.discovery-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60%;
    background-color: #111; /* Deep Black */
    z-index: 0;

    /* The Stepped Edge for Desktop */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 20%,
        92% 20%,
        92% 100%,
        0 100%
    );
}

/* Typography */
.discovery-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.2;
}

/* Colors */
.text-white { color: white; }
.text-orange { color: var(--color-primary); }

/* The Green Button */
.btn-discovery {
    background-color: #00c08b;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-discovery:hover {
    background-color: #00a878;
    color: white;
}

/* Image Styling */
.discovery-img-container {
    position: relative;
    padding: 10px;
}

.discovery-img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 100%;
    height: auto;
    transform: rotate(2deg);
    border: 4px solid white;
}

/* --- MOBILE FIX (The Important Part) --- */
@media (max-width: 991px) {
    /* 1. HIDE the complex desktop shape */
    .discovery-bg-shape {
        display: none;
    }

    /* 2. Make the SECTION background BLACK so white text is visible */
    .discovery-section {
        background-color: #111 !important;
        padding-top: 0;
        padding-bottom: 0;
    }

    /* 3. Text Container Padding */
    .discovery-content-wrapper {
        padding: 4rem 1.5rem 3rem 1.5rem;
        text-align: center;
    }

    /* 4. Make the Image Area White */
    /* We target the second column (the image column) to have a white bg */
    .discovery-section .row > div:last-child {
        background-color: #fff;
        padding: 3rem 1.5rem;
    }

    /* Reset Image Styles for Mobile */
    .discovery-img {
        transform: rotate(0deg);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .discovery-heading {
        font-size: 1.8rem;
    }
}
/* --- DISCOVERY CALL SECTION END --- */

/* --- FAQ SECTION --- */
.faq-section {
    background-color: #fff;
    padding-bottom: 5rem;
}

.faq-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-dark); /* #0f172a */
    margin-bottom: 1rem;
}

/* Custom Accordion Styling */
.custom-faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0; /* Light gray line */
    background: transparent;
    border-radius: 0;
}

/* Remove default Bootstrap focus shadows */
.custom-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0);
}

.custom-faq-accordion .accordion-button {
    background-color: transparent;
    padding: 1.5rem 0; /* Vertical spacing */
    color: var(--color-dark);
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide default Bootstrap arrow */
.custom-faq-accordion .accordion-button::after {
    display: none;
}

/* Typography for the Question */
.faq-question {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.25rem;
    font-weight: 500;
    margin-right: 15px;
    flex: 1;
}

/* The Body Text */
.custom-faq-accordion .accordion-body {
    padding: 0 0 1.5rem 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.6;
    color: #475569; /* Slate Gray */
    max-width: 90%;
}

/* --- THE ORANGE ICON --- */
.faq-icon-wrapper {
    width: 14px;
    height: 24px;
    min-width: 24px; /* Prevent shrinking */
    background-color: var(--color-primary); /* #F06436 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Icon Rotation Logic */
/* When the button is NOT collapsed (i.e., it is Open), the icon should point UP (default icon is up) */
/* When the button IS collapsed (Closed), rotate 180deg to point DOWN */

.accordion-button.collapsed .faq-icon-wrapper {
    transform: rotate(180deg);
}

/* Optional: Change color on collapse if desired (Image shows orange always) */
/* .accordion-button.collapsed .faq-icon-wrapper { background-color: #cbd5e1; } */

@media (max-width: 768px) {
    .faq-heading {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 1.1rem;
    }
}
/* --- END FAQ SECTION --- */

/* --- TECH HERO SECTION --- */
.tech-hero-section {
    background-color: #f8fafc; /* Very light gray/blue tint (almost white) */
    padding-top: 3rem;
    padding-bottom: 5rem;
}

/* 1. Custom Breadcrumb */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.custom-breadcrumb .breadcrumb-item {
    font-family: var(--font-secondary); /* Lato */
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1;
}

/* The Home Icon Link */
.custom-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-dark);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--color-dark);
    font-weight: 700;
}

/* Separator Icon (>) Alignment */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.65rem;
    color: #cbd5e1;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    height: 100%;
    transform: translateY(1px);
}

/* Fix specific home icon alignment */
.custom-breadcrumb .breadcrumb-item:first-child i {
    font-size: 1rem;
    transform: translateY(-1px);
}

/* 2. Typography */
.tech-hero-label {
    font-family: var(--font-primary); /* Outfit */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}

.tech-hero-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

/* Usually "PHP experts" isn't colored in this specific image,
   but if you want emphasis, use this class. Otherwise, it inherits black. */
.tech-hero-title .text-highlight {
    color: inherit; /* Or var(--color-dark) */
}

.tech-hero-desc {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 2.5rem;
}

/* 3. Badges Wrapper */
.tech-badges-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Clutch Badge Logic */
.clutch-badge-box {
    display: flex;
    flex-direction: column;
}

.clutch-brand {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.4rem;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}
/* Small red dot on Clutch logo */
.clutch-brand::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #dc2626;
    border-radius: 50%;
    margin-left: 2px;
    vertical-align: top;
    margin-top: 2px;
}

.clutch-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.rating-num {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
}

.stars {
    color: #f97316; /* Orange stars */
    font-size: 0.9rem;
}

.clutch-reviews {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
}

/* Vertical Separator Line */
.badge-separator {
    width: 1px;
    height: 50px;
    background-color: #cbd5e1;
    margin: 0 10px;
}

/* PHP Logo */
.tech-logo-img {
    height: 50px;
    width: auto;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tech-hero-title {
        font-size: 2.5rem;
    }
    .tech-hero-desc {
        font-size: 1.1rem;
    }
    .tech-badges-wrapper {
        flex-wrap: wrap;
    }
    .badge-separator {
        display: none;
    }
}
/* --- END TECH HERO SECTION --- */

/* --- TECH SERVICES SECTION --- */
.tech-services-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.service-label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}

.service-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.service-desc {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
}

.service-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #e2e8f0;
    transition: background-color 0.3s ease;
}

.service-item-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: #1e293b;
    margin: 0;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.service-item:hover .service-item-title {
    color: var(--color-primary);
}

/* SMOOTH TRANSITION FIX: CSS GRID METHOD */
.service-item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.service-item-body > div {
    overflow: hidden;
    min-height: 0;
}

/* Inner content styling */
.service-item-body p {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 5px;
    margin-bottom: 15px;
}

.service-item.active::before {
    background-color: #10b981;
}

.service-item.active .service-item-title {
    color: #0f172a;
    font-weight: 700;
}

.service-item.active .service-item-body {
    grid-template-rows: 1fr;
    opacity: 1;
}
/* --- END TECH SERVICES SECTION --- */
/* --- CLIENT TESTIMONIAL SECTION --- */
.client-testimonial-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Quote Layout */
.quote-wrapper {
    position: relative;
    padding-left: 3.5rem; /* Space for the big quote icon */
}

/* The Orange Opening Quote Icon */
.quote-icon-start {
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 3rem; /* Adjusted to match image scale */
    color: var(--color-primary); /* #F06436 */
}

.testimonial-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 2.5rem; /* Bold and large */
    color: #1e293b; /* Dark Navy */
    line-height: 1.2;
}

/* Client Card */
.client-card-container {
    padding-left: 1rem;
}

.client-profile-card {
    background-color: #f8fafc; /* Very light gray/white mix */
    border-radius: 12px;
    overflow: hidden; /* Ensures image respects rounded corners */
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    min-height: 180px; /* Ensure sufficient height */
}

.client-name {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.client-role {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.client-company-logo {
    height: 20px;
    width: auto;
    display: block;
}

/* Separator & Bottom Text */
.testimonial-separator {
    border-top: 1px solid #e2e8f0;
    opacity: 1;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.testimonial-bottom-text {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    max-width: 950px;
    margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .quote-wrapper {
        padding-left: 0;
        text-align: center;
    }
    .quote-icon-start {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        margin: 0 auto 1rem auto;
    }
    .testimonial-heading {
        font-size: 1.8rem;
    }
    .client-card-container {
        padding-left: 0;
        margin-top: 2rem;
    }
    .client-profile-card .row {
        min-height: auto;
    }
    .client-photo-flush {
        position: relative;
        height: 250px;
    }
}
/* --- END CLIENT TESTIMONIAL SECTION --- */
/* --- PHP TEAM SECTION --- */
.php-team-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.team-label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
    align-items: center;
}
.stack-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -12px;
}
.stack-img:first-child { margin-left: 0; }

.backed-text {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #0f172a;
    line-height: 1.2;
}
.backed-text strong { font-weight: 800; }

/* Left Column Text */
.team-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.team-desc {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-green-cta {
    background-color: #10b981;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.btn-green-cta:hover {
    background-color: #059669;
    color: white;
}

/* --- RIGHT COLUMN TABS (Styled as Cards) --- */
.feature-tab-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Reset Button defaults */
    appearance: none;
    text-align: left;
    outline: none;
}

.feature-tab-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

/* Tab Icon */
.tab-icon {
    position: relative;
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.tab-icon .fa-certificate {
    font-size: 1.8rem;
}

.tab-icon .check-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: white;
}

.tab-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.4;
}

/* BOOTSTRAP ACTIVE STATE OVERRIDE */
/* Bootstrap adds .active class automatically when clicked */
.feature-tab-card.active {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(240, 100, 54, 0.1);
    background-color: #fff;
    color: inherit; /* Prevent bootstrap blue text */
}

.feature-tab-card.active .tab-icon {
    color: var(--color-primary);
}

/* Content Box Below */
.feature-content-box {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 15px;
    min-height: 120px;
}

.feature-content-box p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .team-heading { font-size: 2rem; }
    .feature-content-box { padding: 1.5rem; }
}
/* --- END PHP TEAM SECTION --- */
/* --- PHP NEEDS FORM BANNER SECTION --- */
.php-needs-banner-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #fff;
}

/* Typography */
.banner-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 2.5rem; /* More space between text and form */
    line-height: 1.3;
}

/* Form Wrapper */
.banner-form-wrapper {
    max-width: 1000px; /* Wide enough for single line */
    margin: 0 auto;
}

/* Custom Input Fields */
.custom-input {
    border: 1px solid gray;
    border-radius: 2px;
    padding: 12px 16px;
    height: 50px; /* Fixed height to match button */
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-dark);
    background-color: #fff;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--color-primary); /* Focus color matches brand */
    box-shadow: none;
    outline: none;
}

.custom-input::placeholder {
    color: #94a3b8;
}

textarea.custom-input {
    height: auto;
    padding-top: 15px;
}


/* Green Submit Button (Matching 'Speak With Our Team') */
.btn-green-form {
    background-color: #10b981; /* Green */
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 0 28px;
    height: 50px; /* Fixed height to match inputs */
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-green-form:hover {
    background-color: #059669; /* Darker Green */
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .banner-heading {
        font-size: 1.5rem;
    }
    /* On mobile, inputs will stack automatically due to col-md-4 */
}
/* --- END PHP NEEDS FORM BANNER SECTION --- */
/* --- TECH ECO-SYSTEM SECTION --- */
.tech-ecosystem-section {
    background-color: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow-x: hidden; /* Prevent horizontal scroll from absolute elements */
}

/* Typography */
.ecosystem-label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}
.ecosystem-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ecosystem-desc {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    max-width: 800px;
    margin-bottom: 3rem;
}

/* --- LIST ITEMS --- */
.ecosystem-list-wrapper {
    position: relative;
    max-width: 100%;
}

.eco-item {
    position: relative; /* Allows content pane to position relative to THIS item */
    margin-bottom: 12px;
}

/* The Trigger Button */
.eco-trigger {
    background-color: #fff;
    color: #475569;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    /* Width of the left column */
    width: 40%;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.eco-trigger:hover {
    background-color: #f8fafc;
    color: var(--color-dark);
}

.tech-tab-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--color-primary);
    vertical-align: middle;
}

/* --- THE CONTENT PANE (Right Side) --- */
.eco-content-pane {
    display: none; /* Hidden by default */
    position: absolute;
    /* Position exactly at the right edge of the trigger */
    left: 40%;
    top: 0;
    /* The gap where the line goes */
    margin-left: 50px;
    /* The width of the content box */
    width: 55%;
    z-index: 10;
}

.ecosystem-card {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- ACTIVE STATE --- */
.eco-item.active .eco-trigger {
    background-color: #fff;
    color: #0f172a;
    font-weight: 700;
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 12px rgba(240, 100, 54, 0.1);
}

/* Show Content */
.eco-item.active .eco-content-pane {
    display: block;
    animation: fadeInRight 0.3s ease forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- THE CONNECTOR LINE --- */
/* This draws the orange line in the gap */
@media (min-width: 992px) {
    .eco-item.active .eco-trigger::after {
        content: '';
        position: absolute;
        /* Start at right edge of button */
        right: -50px;
        top: 50%;
        /* Width matches the margin-left gap */
        width: 50px;
        height: 1px;
        background-color: var(--color-primary);
        z-index: 1;
    }
}

/* Content Typography */
.card-desc {
    font-family: var(--font-secondary);
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.badges-container { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-badge {
    background-color: #e2e8f0;
    color: #1e293b;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .eco-trigger {
        width: 100%;
        min-width: auto;
    }

    .eco-content-pane {
        position: static; /* Stack vertically */
        left: auto;
        top: auto;
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    /* Hide connector line on mobile */
    .eco-item.active .eco-trigger::after {
        display: none;
    }
}
/* --- END TECH ECO-SYSTEM SECTION --- */
/* --- KICK OFF SECTION --- */
.kickoff-section {
    background-color: #f9fafb;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.kickoff-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

/* Left Column Styling */
.kickoff-avatars {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #f9fafb; /* Matches section bg */
    object-fit: cover;
    margin-left: -15px;
}

.avatar-circle:first-child {
    margin-left: 0;
    z-index: 3;
}
.avatar-circle:nth-child(2) { z-index: 2; }
.avatar-circle:nth-child(3) { z-index: 1; }

.reps-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.reps-desc {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Timeline Styling */
.timeline-wrapper {
    position: relative;
    padding-left: 10px;
}

.timeline-step {
    display: flex;
    position: relative;
    padding-bottom: 3rem;
}

/* Dashed Line Logic */
.timeline-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -10px;
    width: 2px;
    border-left: 2px dashed #cbd5e1;
    z-index: 0;
}

/* Remove line for last item */
.timeline-step:last-of-type::before {
    display: none;
}

.step-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.step-content {
    padding-top: 10px;
}

.step-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.step-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

/* Orange Button */
.step-cta-wrapper {
    padding-left: calc(50px + 1.5rem); /* Align with text */
    margin-top: 1rem;
}

.btn-orange-cta {
    background-color: var(--color-primary);
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-orange-cta:hover {
    background-color: #d9532a;
    color: white;
}

/* Mobile */
@media (max-width: 991px) {
    .kickoff-heading { font-size: 2rem; }
    .timeline-step::before { left: 24px; }
}
/* --- END KICK OFF SECTION --- */
/* --- TECH FAQ SECTION --- */
.tech-faq-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.faq-label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}

.faq-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 800px;
}

/* --- CUSTOM ACCORDION STYLING --- */
.custom-faq-accordion {
    max-width: 900px; /* Keep it neat */
}

/* Remove default Bootstrap accordion styling */
.custom-accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0; /* Only bottom border like image */
    background-color: transparent;
}

.custom-accordion-item:first-of-type {
    border-top: 1px solid #e2e8f0; /* Add top border to first item */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* The clickable Header Button */
.custom-accordion-button {
    background-color: transparent;
    color: #0f172a;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1.5rem 0; /* Vertical padding, no horizontal */
    box-shadow: none !important; /* Remove blue focus glow */
    display: flex;
    justify-content: space-between; /* Push icon to right */
    align-items: center;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 0 !important;
}

.custom-accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--color-primary); /* Highlight text on open */
    box-shadow: none;
}

/* HIDE Default Bootstrap Icon */
.custom-accordion-button::after {
    display: none;
}

/* CUSTOM ICON STYLING (Orange Circle) */
.custom-accordion-icon {
    width: 22px;
    height: 22px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent squishing */
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.custom-accordion-icon i {
    color: white;
    font-size: 0.8rem;
}

/* Rotate Icon when Active (not collapsed) */
.custom-accordion-button:not(.collapsed) .custom-accordion-icon {
    transform: rotate(180deg);
    background-color: var(--color-dark); /* Optional: change icon bg on active */
}

/* Accordion Body Style */
.custom-accordion-body {
    padding: 0 0 1.5rem 0; /* Padding bottom only */
    font-family: var(--font-secondary);
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 1.8rem;
    }
    .custom-accordion-button {
        font-size: 1rem;
        padding: 1rem 0;
    }
}
/* --- END TECH FAQ SECTION --- */
/* --- TECH FINAL CTA SECTION --- */
.tech-final-cta-section {
    background: linear-gradient(90deg, #111827 0%, #374151 100%); /* Dark Gradient */
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: white;
}

.cta-content-wrapper {
    max-width: 1200px;
    margin: 0 auto; /* Center content if container is wider */
}

.cta-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 800px; /* Limit width for readability */
}

/* Green Button with Arrow */
.btn-green-arrow {
    background-color: #10b981; /* Brand Green */
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-green-arrow:hover {
    background-color: #059669; /* Darker Green on Hover */
    color: white;
}

.btn-green-arrow i {
    font-size: 0.9rem; /* Slightly smaller arrow */
    margin-top: 2px; /* Visual alignment */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cta-heading {
        font-size: 1.8rem;
    }
    .tech-final-cta-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}
/* --- END TECH FINAL CTA SECTION --- */

/* --- SERVICES HERO SECTION --- */
.services-hero-section {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 5rem;
}

/* Breadcrumbs */
.services-breadcrumb {
    display: flex;
    align-items: center;
    font-family: var(--font-secondary); /* Lato/Secondary font */
    font-size: 0.9rem;
    color: #64748b;
}

.services-breadcrumb .home-icon {
    color: #64748b;
    font-size: 1rem;
    transition: color 0.2s;
}

.services-breadcrumb .separator {
    margin: 0 12px;
    font-size: 0.7rem;
    color: #cbd5e1;
}

.services-breadcrumb .breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.services-breadcrumb .breadcrumb-link:hover,
.services-breadcrumb .home-icon:hover {
    color: var(--color-primary); /* Hover color */
}

.services-breadcrumb .current-page {
    font-weight: 700;
    color: #0f172a; /* Darker for current page */
}

/* Label */
.services-label {
    font-family: var(--font-primary); /* Outfit/Primary font */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8; /* Light gray text */
    margin-bottom: 1rem;
}

/* Main Heading */
.services-hero-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.5rem; /* Large impact heading */
    color: var(--color-dark); /* #1e293b */
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Description */
.services-hero-desc {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* Orange Button */
.services-btn-orange {
    background-color: var(--color-primary); /* Your brand orange (#F06436) */
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.services-btn-orange:hover {
    background-color: #d9532a; /* Slightly darker orange */
    color: white;
    transform: translateY(-2px);
}

/* Image Wrapper */
.services-hero-img-wrapper {
    border-radius: 24px; /* Distinct rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Soft shadow */
    height: 100%;
    min-height: 400px;
}

.services-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills box nicely */
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .services-hero-heading {
        font-size: 2.5rem;
    }
    .services-hero-img-wrapper {
        margin-top: 3rem;
        min-height: 300px;
    }
}
/* --- END SERVICES HERO SECTION --- */

/* --- SERVICES LIST SECTION --- */
.services-list-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fff;
}

.services-list-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 4rem;
}

/* Grid Item Container */
.service-grid-item {
    padding: 2.5rem;
    background-color: #fff;
    transition: all 0.3s ease;
    /* Height 100% is handled by utility class in HTML,
       but we ensure box-sizing includes padding */
}

/* --- GRID BORDER LOGIC --- */
/* This creates the dividing lines between the items */

/* Desktop: Add border to the Left items (Right Border) */
@media (min-width: 992px) {
    .item-top-left,
    .item-bottom-left {
        border-right: 1px solid #e2e8f0;
    }

    /* Add border to the Top items (Bottom Border) */
    .item-top-left,
    .item-top-right {
        border-bottom: 1px solid #e2e8f0;
    }
}

/* Mobile: Just stack them with bottom borders */
@media (max-width: 991px) {
    .service-grid-item {
        border-bottom: 1px solid #e2e8f0;
        padding: 2rem 0; /* Less padding on mobile */
    }
    .item-bottom-right {
        border-bottom: none; /* Last item needs no border */
    }
}

/* Icon & Typography */
.service-icon {
    font-size: 1.4rem;
    color: var(--color-primary); /* Orange Icon */
    margin-top: 3px; /* Align with top of text */
    flex-shrink: 0;
}

.service-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-desc {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}
/* --- END SERVICES LIST SECTION --- */

/*---- KEY THINGS SECTION ----*/
.backend-details-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Section Title */
.backend-main-title {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

/* --- NAVIGATION STYLES --- */
.backend-nav-menu {
    /* Bootstrap default override for buttons */
    width: 100%;
}

.backend-nav-link {
    background: none;
    border: none;
    text-align: right; /* Keeps text aligned right on desktop */
    width: 100%;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-dark);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    line-height: 1.4;
    position: relative;
    display: flex; /* Flex to align text and arrow */
    align-items: center;
    justify-content: flex-end; /* Push content to right */
}

/* Arrow Handling */
.arrow-icon {
    font-size: 1rem;
    color: var(--color-primary);
    opacity: 0; /* Hidden by default */
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

/* Hover State */
.backend-nav-link:hover {
    color: var(--color-primary);
}

/* Active State Styles (Applied by Bootstrap automatically) */
.backend-nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom-color: transparent;
}

/* Show arrow when active */
.backend-nav-link.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* --- CONTENT AREA STYLES --- */
.backend-description {
    padding-top: 1.5rem;
}

.backend-description p {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* --- TECH LIST STYLES (TAB 3) --- */
.tech-list-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-list {
    list-style: none;
    padding-left: 0;
}

.tech-list li {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #64748b;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 15px;
}

/* Add a small colored square bullet */
.tech-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .backend-main-title { font-size: 2.5rem; }

    .backend-nav-link {
        text-align: left;
        justify-content: flex-start; /* Align left on mobile */
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .backend-description {
        padding-top: 0;
        margin-top: 2rem;
    }
}
/*---- KEY THINGS SECTION ----*/

/* =========================================
   START: BEST PRACTICES SECTION
   ========================================= */

.best-practices-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Main Heading */
.bp-main-title {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

/* --- ACCORDION CUSTOMIZATION --- */

.custom-bp-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0; /* Light gray border */
    background-color: transparent;
}

.custom-bp-accordion .accordion-item:last-child {
    border-bottom: none;
}

/* Header Button Base Styles */
.custom-bp-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none; /* Remove blue glow */
    padding: 1.5rem 0;
    font-family: var(--font-primary); /* Outfit */
    font-size: 1.1rem; /* Larger text */
    font-weight: 500;
    color: #475569; /* Slate default color */
    transition: color 0.3s ease;
}

/* Remove default Bootstrap Chevron */
.custom-bp-accordion .accordion-button::after {
    display: none;
}

/* Create Custom Plus/Minus Icon */
.custom-bp-accordion .accordion-button::before {
    content: '+';
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 2rem;
    color: var(--color-primary);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-55%); /* Fine tune vertical center */
    line-height: 1;
    transition: transform 0.3s ease;
}

/* --- ACTIVE STATE (When Open) --- */

/* Change Header Text Color to Orange */
.custom-bp-accordion .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background-color: transparent;
}

/* Change Icon to Minus */
.custom-bp-accordion .accordion-button:not(.collapsed)::before {
    content: '−'; /* Using proper minus symbol or hyphen */
    color: var(--color-primary);
    transform: translateY(-55%);
}

/* --- BODY CONTENT --- */

.custom-bp-accordion .accordion-body {
    padding: 0 0 2rem 0; /* Remove side padding, keep bottom spacing */
}

.bp-text {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1.05rem;
    color: #334155; /* Dark Slate for readability */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .bp-main-title {
        font-size: 2.2rem;
    }
    .custom-bp-accordion .accordion-button {
        font-size: 1.25rem;
        padding-right: 30px; /* Ensure text doesn't hit the icon */
    }
}

/* =========================================
   END: BEST PRACTICES SECTION
   ========================================= */

/* =========================================
   START: WHY CHOOSE US SECTION
   ========================================= */

.why-choose-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Section Heading */
.why-main-title {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

/* Image Wrapper */
.why-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Soft shadow */
}

.why-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- LIST ITEMS --- */

.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.why-item:last-child {
    margin-bottom: 0;
}

/* Icon Styles */
.why-icon {
    flex-shrink: 0;
    width: 40px;
    margin-right: 1.5rem;
    font-size: 1.4rem;
    color: var(--color-primary);

    /* 2. ALIGNMENT FIX: */
    /* Make the icon box height match the Title's font-size * line-height */
    /* 1.25rem (font size) * 1.5 (line height) = ~1.875rem */
    height: 1.875rem;

    /* 3. Center the icon explicitly inside this box */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Remove the old padding hack */
    padding-top: 0;
}

/* Content Text */
.why-item-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 0.8rem;
    /* 1. Define an explicit line-height */
    line-height: 1.5;
}

.why-item-desc {
    font-family: var(--font-secondary); /* Lato */
    font-size: 1rem;
    color: #64748b; /* Slate Gray */
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .why-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .why-item {
        margin-bottom: 2rem;
    }

    .why-image-wrapper {
        margin-bottom: 2rem;
    }
}
/* =========================================
   END: WHY CHOOSE US SECTION
   ========================================= */

   /* =========================================
   START: CTA BANNER SECTION STYLES
   ========================================= */

.service-cta-banner-section {
    /* Using a very dark background matching the reference image */
    background-color: #111827;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

/* Typography */
.service-cta-heading {
    font-family: var(--font-primary); /* Outfit */
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.2;
}

/* The text-orange class is already defined in your existing CSS */

/* Green Button */
.btn-green-cta {
    background-color: var(--bd-green); /* Using existing emerald variable */
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    border-radius: 8px; /* Rounded corners */
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-green-cta:hover {
    background-color: #059669; /* A slightly darker emerald on hover */
    color: white;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.5); /* Green shadow */
}

/* Image Styling */
.service-cta-img-wrapper {
    display: flex;
    justify-content: flex-end;
}

.service-cta-shaped-img {
    max-width: 100%;
    height: auto;
    /* This clip-path shapes a rectangular image into an abstract hourglass/X shape.
       For pixel-perfect results matching the design, use a pre-masked PNG image instead.
    */
    clip-path: polygon(0 0, 100% 0, 75% 50%, 100% 100%, 0 100%, 25% 50%);
    object-fit: cover;
}

/* Desktop specific adjustments for compact height */
@media (min-width: 992px) {
    .service-cta-banner-section {
        /* Tighter padding on desktop to achieve a more compact, banner-like height (~20vh visual feel) */
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .service-cta-heading {
         font-size: 2.8rem;
    }

    /* Constraint image height to keep section compact */
    .service-cta-shaped-img {
        height: 300px;
        width: auto;
    }
}
/* =========================================
END: CTA BANNER SECTION STYLES
========================================= */

/* =========================================
ABOUT HERO STYLES
========================================= */
.about-hero-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.about-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-desc {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Image Frame with Offset Border */
.about-img-frame {
    position: relative;
    border-radius: 20px;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 2px solid var(--color-primary); /* The orange accent line */
    border-radius: 20px;
    z-index: 0;
}

.about-hero-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .about-img-frame::before {
        right: -10px; bottom: -10px; left: 10px;
    }
}
/* =========================================
ABOUT HERO STYLES
========================================= */

/* =========================================
MISSION & VISION STYLES
========================================= */
.mission-section {
    background-color: var(--bd-gray-bg); /* #f8fafc */
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mv-card {
    background-color: #fff;
    padding: 3.5rem 3rem;
    border-radius: 16px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.mv-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(240, 100, 54, 0.1); /* Light Orange */
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mv-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.mv-text {
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}
/* =========================================
MISSION & VISION STYLES
========================================= */

/* =========================================
STATS SECTION STYLES
========================================= */
.stats-section {
    background-color: var(--color-dark); /* Dark Navy */
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: white;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3.5rem;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: -webkit-linear-gradient(45deg, #fff, #cbd5e1);
    -webkit-background-clip: text;
    /* Optional: To make number orange, use color: var(--color-primary) instead */
}

/* Let's make the number slightly orange on hover/active for effect */
.stat-item:hover .stat-number {
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: #94a3b8; /* Slate 400 */
    font-weight: 600;
}
/* =========================================
STATS SECTION STYLES
========================================= */

/* =========================================
TEAM SECTION STYLES
========================================= */
.team-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.team-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.2rem;
}

.team-role {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.team-social {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.team-social:hover {
    color: #0077b5; /* LinkedIn Blue */
}
/* =========================================
TEAM SECTION STYLES
========================================= */

/* =========================================
OUR STORY / TIMELINE STYLES
========================================= */
.story-section {
    background-color: #fff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.story-eyebrow {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.story-heading {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
}

/* --- TIMELINE STRUCTURE --- */
.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* The Vertical Center Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e2e8f0; /* Light gray line */
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%; /* Each item takes half width */
    padding: 0 40px;
    margin-bottom: 4rem;
}

/* Left items align to the right of their box (towards center) */
.timeline-item.left {
    left: 0;
    text-align: right;
}

/* Right items align to the left of their box (towards center) */
.timeline-item.right {
    left: 50%;
    text-align: left;
}

/* The Dot on the line */
.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
}

/* Position dot for Left items */
.timeline-item.left .timeline-dot {
    right: -10px; /* Half of width (20px) to center on line */
}

/* Position dot for Right items */
.timeline-item.right .timeline-dot {
    left: -10px;
}

/* Typography */
.timeline-year {
    display: block;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.timeline-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Move line to the left */
    .timeline-line {
        left: 20px;
    }

    /* Make all items full width and align left */
    .timeline-item {
        width: 100%;
        left: 0 !important; /* Force left alignment */
        padding-left: 60px; /* Space for line */
        padding-right: 0;
        text-align: left !important;
    }

    /* Fix dot position for all items */
    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 10px; /* Align with new line position */
        right: auto;
    }
}
/* =========================================
OUR STORY / TIMELINE STYLES
========================================= */

/* KEY WORK -- Card Container Styling */
.brand-card {
    background-color: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.brand-logo {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s;
}

.brand-card:hover .brand-logo {
    opacity: 1;
}

.case-link {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.case-link:hover {
    color: #0d6efd;
}

.brand-desc {
    margin-top: 2rem;
    text-align: left;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.card-full-height {
    height: 100%;
    justify-content: flex-start;
    padding-top: 4rem;
}
/* KEY WORK -- Card Container Styling */

/* --- Hero Section Styling --- */
.case-study-hero {
    position: relative;
    width: 100%;
    min-height: 600px; /* Adjust based on preference */
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); /* Office background placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Darkens the image */
    z-index: 1;
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding: 40px 0;
}

/* --- Breadcrumbs --- */
.hero-breadcrumbs {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 60px; /* Space between top and content */
}

.hero-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.hero-breadcrumbs .separator {
    margin: 0 12px;
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.crumb-current {
    font-weight: 700; /* Bold for current page 'Abra' */
    color: #fff;
}

/* --- Main Content Grid --- */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Column */
.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    color: #fff;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hero-heading {
    font-size: 3.5rem; /* Large font size */
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

/* Right Column: Floating Card */
.hero-card-wrapper {
    flex: 0 0 auto;
}

.lead-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-title {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.card-form {
    display: flex;
    gap: 10px;
}

.card-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.card-input:focus {
    border-color: #F06436;
}

.card-btn {
    background-color: #F06436; /* Orange color from image */
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.card-btn:hover {
    background-color: #d65226;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-card {
        width: 100%;
        max-width: 400px;
    }
}

/* SINGLE CASE STUDY CSS  */
/* --- Hero Section Styling --- */
.case-study-hero {
    position: relative;
    width: 100%;
    min-height: 600px; /* Adjust based on preference */
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80'); /* Office background placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Darkens the image */
    z-index: 1;
}

/* Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding: 40px 0;
}

/* --- Breadcrumbs --- */
.hero-breadcrumbs {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 60px; /* Space between top and content */
}

.hero-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.hero-breadcrumbs .separator {
    margin: 0 12px;
    font-size: 1.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.6);
}

.crumb-current {
    font-weight: 700; /* Bold for current page 'Abra' */
    color: #fff;
}

/* --- Main Content Grid --- */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Column */
.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    color: #fff;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.hero-heading {
    font-size: 3.5rem; /* Large font size */
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

/* Right Column: Floating Card */
.hero-card-wrapper {
    flex: 0 0 auto;
}

.lead-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    width: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-title {
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.card-form {
    display: flex;
    gap: 10px;
}

.card-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.card-input:focus {
    border-color: #F06436;
}

.card-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.card-btn:hover {
    background-color: #d65226;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .lead-card {
        width: 100%;
        max-width: 400px;
    }
}


/* Section Layout */
.summary-section {
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    box-sizing: border-box;
}

.summary-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Column: Text */
.summary-text-col {
    flex: 1;
    max-width: 500px;
}

.summary-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748; /* Dark grey/blue */
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.summary-heading .dot {
    color: #ff5722; /* Orange accent dot */
}

.summary-description {
    font-size: 1.25rem; /* ~20px */
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Right Column: Card */
.summary-card-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo-card {
    width: 100%;
    max-width: 450px;
    height: 300px; /* Fixed height for the rectangular shape */
    background-color: #fff;
    border: 1px solid #e2e8f0; /* Light grey border */
    border-radius: 20px;
    display: flex;
    align-items: center; /* Centers image vertically */
    justify-content: center; /* Centers image horizontally */
}

.client-logo {
    display: block;
    max-width: 50%; /* Ensures logo doesn't touch edges */
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
    .summary-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .summary-text-col,
    .summary-card-col {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .logo-card {
        height: 250px;
    }

    .summary-heading {
        font-size: 2.25rem;
    }
}

/*SUMMARY SECTION*/
/* Section Layout */
.summary-section {
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    box-sizing: border-box;
}

.summary-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Column: Text */
.summary-text-col {
    flex: 1;
    max-width: 500px;
}

.summary-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748; /* Dark grey/blue */
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.summary-heading .dot {
    color: var(--color-primary);
}

.summary-description {
    font-size: 1.25rem; /* ~20px */
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Right Column: Card */
.summary-card-col {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.logo-card {
    width: 100%;
    max-width: 450px;
    height: 300px; /* Fixed height for the rectangular shape */
    background-color: #fff;
    border: 1px solid #e2e8f0; /* Light grey border */
    border-radius: 20px;
    display: flex;
    align-items: center; /* Centers image vertically */
    justify-content: center; /* Centers image horizontally */
}

.client-logo {
    display: block;
    max-width: 50%; /* Ensures logo doesn't touch edges */
    height: auto;
    object-fit: contain;
}

/* Container for the stats row */
.stats-container {
    max-width: 1100px;
    margin: 80px auto 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

/* The Double Ring Circle */
.stat-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    /* Outer dashed ring */
    border: 1px dashed #cbd5e1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* Inner dashed ring created with pseudo-element */
.stat-circle::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px dashed #cbd5e1;
    border-radius: 50%;
    pointer-events: none;
}

/* Typography inside the circle */
.stat-content {
    text-align: center;
    z-index: 1; /* Ensures text sits above borders */
}

.stat-number {
    display: block;
    font-size: 3.5rem; /* Large size for the number */
    font-weight: 800;
    color: var(--color-primary); /* The orange accent color */
    line-height: 1;
    margin-bottom: 5px;
}

.stat-unit {
    display: block;
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 400;
}

/* Label below the circle */
.stat-label {
    margin-top: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #334155; /* Dark slate blue */
    text-align: center;
}

/* The Gray Bar Container */
.details-bar {
    max-width: 1100px;
    margin: 60px auto 0; /* Spacing below the stats circle */
    background-color: #d8dbdf; /* Very light grey background */
    border-radius: 24px; /* Soft rounded corners */
    padding: 35px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes the two groups apart */
    box-sizing: border-box;
}

/* Individual Groups (Label + Tags) */
.details-group {
    display: flex;
    align-items: center;
    gap: 24px; /* Space between label and the tags */
}

/* The Label Text (e.g., "Main technologies used") */
.details-label {
    color: #64748b; /* Muted slate grey */
    font-size: 1.1rem;
    font-weight: 400;
}

/* Wrapper for multiple tags next to each other */
.tags-wrapper {
    display: flex;
    gap: 12px;
}

/* The White Pills/Tags */
.tech-tag {
    background-color: #ffffff;
    color: #0f172a; /* Dark text */
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .summary-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .summary-text-col,
    .summary-card-col {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .logo-card {
        height: 250px;
    }

    .summary-heading {
        font-size: 2.25rem;
    }

    .stats-container {
        justify-content: center;
    }

    .details-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 30px;
    }

    .details-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }

    .tags-wrapper {
        flex-wrap: wrap;
    }
}
/*SUMMARY SECTION*/

/*COMPANY STATEMENT*/
/* Full Width Section Strip */
.testimonial-strip {
    width: 100%;
    background-color: #dce2e6; /* The specific light gray/blue background */
    padding: 40px 0; /* Controls the height of the strip */
    display: flex;
    justify-content: center;
}

/* Inner Container */
.testimonial-content {
    max-width: 1100px; /* Matches your other containers */
    width: 90%;
    display: flex;
    align-items: center;
    gap: 40px; /* Space between image and text */
}

/* Left Image Area */
.testimonial-visual {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
}

.quote-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the shape/logo fits nicely */
    /* If you don't have the shaped image yet, this radius makes it look neat */
    border-radius: 8px;
}

/* Text Area */
.testimonial-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #334155; /* Dark slate text */
    margin: 0 0 10px 0;
    padding: 0;
    border: none;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 1rem;
    color: #64748b; /* Lighter grey for role */
    font-weight: 500;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-visual {
        width: 100px;
        height: 100px;
    }
}
/*COMPANY STATEMENT*/

/*ABOUT COMPANY*/
/* Section Background */
.about-section {
    width: 100%;
    background-color: #f8fafc;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* White Card Container */
.about-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 1100px; /* Matches your layout width */
    border-radius: 24px; /* Soft rounded corners */
    padding: 60px 80px; /* Generous internal padding */
    display: flex;
    align-items: center;
    gap: 60px; /* Space between title and text */
    /* Optional: very subtle shadow to lift it off the background */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Left Heading */
.about-title {
    flex: 0 0 auto; /* Prevents shrinking */
    width: 280px; /* Fixed width to align nicely */
    font-size: 2rem; /* ~32px */
    font-weight: 700;
    color: #1e293b; /* Dark slate text */
    margin: 0;
    line-height: 1.2;
}

/* Right Description */
.about-description {
    flex: 1; /* Takes up remaining space */
    font-size: 1.125rem; /* ~18px */
    line-height: 1.6;
    color: #475569; /* Slightly lighter slate grey */
    margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-card {
        flex-direction: column;
        padding: 40px;
        gap: 24px;
    }

    .about-title {
        width: 100%;
        font-size: 1.75rem;
    }
}
/*ABOUT COMPANY*/

/*MAIN OPERATION*/
/* Custom List Styling for "The Outcome" */
/* Custom Orange Color */
.text-orange {
    color: var(--color-primary);
}

/* Outcome List Styling */
.custom-outcome-list {
    max-width: 500px; /* Limits width on mobile so it doesn't stretch too wide while centered */
}

.custom-outcome-list li {
    position: relative;
    padding-left: 2rem; /* Space for bullet */
    font-size: 1rem; /* Matches fs-5 */
    color: #6c757d; /* Bootstrap secondary color */
    line-height: 1.6;
}

.custom-outcome-list li::before {
    content: '•';
    color: #F06436;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: -5px;
}

/*MAIN OPERATION*/
/*CTA SECTION*/
/* Section Styles */
.bg-black {
    background-color: #000000 !important;
}

/* Reusing the Orange Color */
/* Custom Green Button */
.btn-custom-green {
    background-color: #009B60; /* Matches the emerald green in the image */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-custom-green:hover {
    background-color: #008250; /* Slightly darker on hover */
    color: #ffffff;
}

/* Image Handling */
.cta-image-wrapper {
    /* Ensures the image doesn't get too huge on big screens */
    max-width: 100%;
    display: inline-block;
}

.cta-img {
    max-height: 400px; /* Adjust based on your actual image aspect ratio */
    width: auto;
    object-fit: contain;
}

/* Responsive spacing tweaks */
@media (max-width: 991px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1.5rem;
    }
}
/*CTA SECTION*/

/* SINGLE CASE STUDY CSS  */

/*BLOG PAGES*/
/* Custom Styles for Blog Section */
.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.blog-headline {
    /* Assumes you have a serif font loaded, otherwise falls back */
    font-family: "Merriweather", "Georgia", serif;
    font-weight: 800;
    color: #212529;
    line-height: 1.2;
}

.blog-headline:hover {
    text-decoration: underline;
    cursor: pointer;
}

.sidebar-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6c757d;
}

.sidebar-link {
    text-decoration: none;
    color: #212529;
    transition: color 0.2s ease;
}

.sidebar-link:hover {
    color: #0d6efd; /* Bootstrap primary blue */
    text-decoration: underline;
    cursor: pointer;
}

/* Fixes the sidebar images so they don't squash */
.sidebar-thumb {
    width: 100px;
    height: 65px;
    object-fit: cover; /* Ensures image covers the box without distortion */
    border-radius: 6px;
    flex-shrink: 0; /* Prevents image from shrinking if text is long */
}

.sidebar-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Section Header Styles */
.section-label {
    font-size: 0.75rem; /* Small uppercase text */
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #212529;
    margin: 0;
}

.view-all-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
    border-bottom: 2px solid #212529; /* The thick underline */
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.view-all-link:hover {
    opacity: 0.7;
    color: #212529;
}

/* Card Styles */
.article-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensures all cards in a row are same height */
    background: #fff;
    overflow: hidden; /* Keeps image corners rounded */
}

.article-card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

.article-thumb {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Author Section */
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.read-time {
    font-size: 0.85rem;
    color: #888;
}

/*BLOG PAGES*/