/* Service Page Specific Styles */
.service-hero-section {
    padding: 100px 0;
    background: #fdfdfd;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Service Tag (The small pill) */
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 30px;
    background: #fff;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-body {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Button - Matching Agile style */
.btn-main-cta {
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px; /* Slightly squarer like the reference */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.btn-main-cta:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* The Image Styling from image_c4ba9d.png */
.hero-image-wrapper {
    position: relative;
}

.hero-rounded-img {
    width: 100%;
    height: auto;
    border-radius: 40px; /* High curvature as per design */
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-tag { justify-content: center; }
    
    .hero-image-wrapper {
        order: -1; /* Image on top for mobile */
        margin-bottom: 40px;
    }
    
    h1 { font-size: 2.5rem; }
}
/* --- Overview Section --- */
.overview-section {
    padding: 80px 0 120px;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* The Black Illustration Card (Matching image_c4ca3a.png) */
.illustration-card {
    background: #000; /* Solid black background */
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vector-art {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Forces a white line-art look if using a black vector */
}

/* Content Styling */
.chip-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 25px;
}

.overview-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-body p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .overview-visual {
        order: 2; /* Content moves above image on mobile for better flow */
    }
    
    .overview-text {
        text-align: left;
    }

    .illustration-card {
        padding: 40px;
    }
}
/* --- Services Accordion Styles --- */
.services-accordion-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.section-header {
    max-width: 800px;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin: 20px 0;
    font-weight: 700;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Individual Accordion Items */
.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-item.active {
    border-color: var(--accent-purple);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.accordion-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    font-size: 1.5rem;
    color: #333;
}

.accordion-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
}

.arrow-icon {
    font-size: 1.1rem;
    transition: 0.4s;
    color: #999;
}

.accordion-item.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--accent-purple);
}

/* Content Area */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
    padding: 0 40px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.text-side p {
    font-size: 1.05rem;
    color: #fffafa;
    line-height: 1.7;
    margin-bottom: 30px;
}

.list-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #cd6dc6;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Circle-Line Bullet Style from image_b5295a.png */
.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #c0baba;
    line-height: 1.5;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: #ddd;
}

.feature-list li::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
}

.image-side img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .content-inner {
        grid-template-columns: 1fr;
    }
    .image-side { order: -1; }
    .image-side img { height: 250px; }
    .accordion-header { padding: 20px; }
    .content-inner { padding: 0 20px 30px; }
}
/* --- CTA Banner Section --- */
.cta-banner-section {
    padding: 80px 0 120px;
    background: #fff;
}

.cta-card {
    background: #000;
    border-radius: 40px; /* Matching the hero and overview radius */
    padding: 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    position: relative;
    overflow: hidden; /* Clips the circle frame */
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Schedule Call Button */
.btn-schedule {
    background: #fff;
    color: #000;
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
}

.btn-schedule:hover {
    background: var(--accent-purple);
    color: #fff;
    transform: scale(1.05);
}

/* The Circular Image Frame (image_c53b32.png Style) */
.cta-image-frame {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
}

.circle-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 30px solid rgba(255, 255, 255, 0.05); /* The dark inner ring effect */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Banner */
@media (max-width: 1024px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        text-align: center;
    }
    
    .cta-image-frame {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 300px;
        height: 300px;
        margin: 40px auto 0;
    }
    
    .btn-schedule {
        width: 100%;
        justify-content: center;
    }
}
.workflow-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.centered {
    text-align: center;
    margin: 0 auto 80px;
}

.workflow-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    height: 750px; /* Vertical height for the roadmap */
}

.roadmap-svg-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

/* Step Card Styles */
.step-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 100px; /* Pill shape from reference */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 2;
    width: fit-content;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.step-left { left: 0; flex-direction: row; }
.step-right { right: 0; flex-direction: row-reverse; text-align: right; }

.step-icon {
    width: 50px; height: 50px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.2rem;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.step-info h3 {
    font-size: 1.1rem; /* "Normal size" as requested */
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* SVG Animation for "Moving" lines */
#roadmap-path {
    stroke-dashoffset: 1000;
    stroke-dasharray: 8;
    animation: dash 60s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: 0; }
}

/* Mobile: Stack them vertically and remove complex SVG */
@media (max-width: 768px) {
    .workflow-container { height: auto; display: flex; flex-direction: column; gap: 30px; }
    .roadmap-svg-wrapper { display: none; }
    .step-card { position: relative; top: 0 !important; left: 0 !important; width: 100%; flex-direction: row; text-align: left; }
}
.tools-section { padding: 80px 0; background: #fdfdfd; }

.tools-tab-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Tab Navigation Styling (image_c5b718.png style) */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 100px;
    background: #fff;
    margin-bottom: 50px;
    overflow-x: auto; /* For mobile scroll */
    white-space: nowrap;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #666;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

/* Tools Grid */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.5s ease; }

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.tool-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.tool-item:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.tool-item span {
    font-weight: 600;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tabs-nav { justify-content: flex-start; padding: 5px; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .tool-item { padding: 15px; min-height: 60px; }
}
.clientele-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden; /* Important for marquee */
}

/* Container for the logo rows */
.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Edge Fading Effect */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Marquee Row Flexbox */
.marquee-row {
    display: flex;
    user-select: none;
    overflow: hidden;
    gap: 30px;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    min-width: 100%;
}

/* Logo Box Styling (Matching image_c61092.png) */
.logo-box {
    width: 200px;
    height: 100px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s;
}

.logo-box img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%); /* Pro look: grayscale by default */
    opacity: 0.6;
    transition: 0.3s;
}

.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animations */
.marquee-ltr .marquee-group {
    animation: scroll-ltr 30s linear infinite;
}

.marquee-rtl .marquee-group {
    animation: scroll-rtl 30s linear infinite;
}

@keyframes scroll-ltr {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes scroll-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Pause on Hover */
.marquee-row:hover .marquee-group {
    animation-play-state: paused;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .logo-box { width: 150px; height: 80px; }
    .marquee-container::before, .marquee-container::after { width: 50px; }
}
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.faq-info h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    font-weight: 700;
}

.faq-body {
    color: #666;
    margin-bottom: 40px;
}

/* Contact Box Sidebar */
.faq-contact-box {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #eee;
}

.faq-contact-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.btn-contact {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact:hover {
    background: var(--accent-purple);
    transform: scale(1.02);
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    color: #999;
}

/* Open State */
.faq-item.active {
    border-color: #000;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* Plus becomes an X */
    color: #000;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer {
    padding: 0 35px 30px;
    border-top: 1px solid #f9f9f9;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mobile Fix */
@media (max-width: 992px) {
    .faq-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-info h2 { font-size: 2rem; }
}