﻿

:root {
    --navy: #0a2a4a;
    --blue: #063b67;
    --orange: #e8760a;
    --text: #4b5563;
    --text-light: #6b7280;
    --border: #e0e7ef;
}


/* Hero */
.hero {
    background: var(--navy);
    min-height: 580px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.hero-title {
    font-family: 'Inter',serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

    .hero-title em {
        font-style: italic;
        color: #ffb84d;
    }

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
}

.btn-primary {
    padding: 13px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    background: var(--orange);
    color: #fff;
    transition: 0.25s;
    display: inline-block;
}

    .btn-primary:hover {
        transform: translateY(-2px);
    }

.btn-outline {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 22px 20px;
}

.stat-card-num {
    font-family: 'Inter',serif;
    font-size: 40px;
    font-weight: 900;
    color: #ffb84d;
}

.stat-card-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
/* Sections */
.section {
    padding: 72px 0;
}

.section-title {
    font-family: 'Inter',serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 14px;
}

.section-divider {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg,var(--orange),#ffb84d);
    border-radius: 2px;
    margin-bottom: 24px;
}

.body-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
    text-align: justify;
}
/* GTM Intro */
.gtm-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gtm-chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.gtm-chart {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(6,59,103,0.18);
    border-radius: 16px;
}
/* Process */
.process-section {
    padding: 80px 0;
    background: #063b67;
}

.process-title-wrap {
    text-align: center;
    margin-bottom: 64px;
}

.process-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fbbf24;
    margin-bottom: 12px;
}

.process-main-title {
    font-family: 'Inter',serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.process-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,#e8760a,#fbbf24);
    border-radius: 2px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-circle-wrap {
    position: relative;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg,rgba(232,118,10,0.4),rgba(251,191,36,0.2));
    transform: translateY(-50%);
    z-index: 0;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fbbf24;
    background: rgba(251,191,36,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter',serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
    position: relative;
    z-index: 1;
}

.step-icon-wrap {
    margin-bottom: 20px;
}

.step-icon {
    width: 48px;
    height: 48px;
}

.step-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
/* Tabbed Services */
.tabbed-services {
    background: #f9fafb;
    padding: 72px 0;
}

.tabs-main-title {
    font-family: 'Inter',serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue);
    text-align: center;
    margin-bottom: 42px;
}

.tabs-nav {
    display: flex;
    /*max-width: 1000px;*/
    margin: 0 auto 48px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.tab-btn {
    flex: 1;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    border-right: 1.5px solid #e5e7eb;
    cursor: pointer;
    transition: 0.25s;
}

    .tab-btn:last-child {
        border-right: none;
    }

    .tab-btn.active {
        background: var(--blue);
        color: #fff;
    }

    .tab-btn:hover:not(.active) {
        background: #f3f4f6;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.tab-content-inner {
   /* max-width: 1100px;*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tab-text-col h3 {
    font-family: 'Inter',serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 18px;
}

.tab-text-col p {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: justify;
}

.tab-read-more {
    display: inline-block;
    padding: 11px 28px;
    background: #60a5fa;
    color: #fff;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
}

.tab-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
}
/* Why Choose */
.why-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    transition: 0.25s;
}

    .why-card:hover {
        box-shadow: 0 8px 28px rgba(6,59,103,0.09);
        transform: translateY(-3px);
    }

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-icon-1 {
    background: #dbeafe;
}

.why-icon-2 {
    background: #d1fae5;
}

.why-icon-3 {
    background: #fef3c7;
}

.why-icon-4 {
    background: #e0f2fe;
}

.why-icon-5 {
    background: #fce7f3;
}

.why-icon-6 {
    background: #f3e8ff;
}

.why-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 5px;
}

.why-card-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.65;
}
/* Clients */
.clients-section {
    background: #f4f7fb;
    padding: 60px 0;
}

.clients-title {
    text-align: center;
    font-family: 'Inter',serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 42px;
}

.clients-slider-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 32px;
    animation: slideLogos 13s linear infinite;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo-box {
    flex: 0 0 160px;
    height: 100px;
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .client-logo-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        opacity: 0.8;
    }
/* Testimonials */
.testimonials-updated {
    background: #f9fafb;
    padding: 72px 0;
}

.testi-updated-header {
    text-align: center;
    margin-bottom: 48px;
}

.testi-updated-title {
    font-family: 'Inter',serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.testi-updated-subtitle {
    font-size: 14.5px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.testi-slider-container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-slider-wrap {
    flex: 1;
    overflow: hidden;
}

.testi-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testi-card-new {
    flex: 0 0 calc(33.333% - 16px);
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    padding: 28px 26px 26px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s,transform 0.3s;
}

    .testi-card-new:hover {
        box-shadow: 0 8px 24px rgba(6,59,103,0.12);
        transform: translateY(-4px);
    }

.testi-stars {
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
    text-align: justify;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #e5eaf1;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-info {
    flex: 1;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 3px;
}

.testi-title {
    font-size: 12px;
    color: var(--text-light);
}

.testi-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

    .testi-arrow:hover {
        background: var(--blue);
        color: #fff;
        border-color: var(--blue);
    }

    .testi-arrow.disabled {
        opacity: 0.3;
        pointer-events: none;
    }

    .testi-arrow svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
    }
/* CTA */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-desc {
    font-size: 15px;
    color: var(--text);
    margin: 16px 0 36px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    padding: 8px 12px;
}

.btn-cta-orange {
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    background: var(--orange);
    color: #fff;
}

.btn-cta-dark {
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    background: var(--navy);
    color: #fff;
}
/* FAQ */
.faq-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #e0e7ef;
}

.faq-title-wrap {
    text-align: center;
    margin-bottom: 52px;
}

.faq-main-title {
    font-family: 'Inter',serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 15px;
    color: var(--text-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1.5px solid #e5eaf1;
}

    .faq-item:first-child {
        border-top: 1.5px solid #e5eaf1;
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    text-align: left;
    cursor: pointer;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.85;
    padding: 0 0 22px 0;
    text-align: justify;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s,transform 0.55s;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* Responsive */
@media(max-width:1024px) {
    .steps-container {
        flex-wrap: wrap;
        gap: 48px;
    }

    .process-step {
        flex: 1 1 45%;
        min-width: 250px;
    }

    .step-connector {
        display: none;
    }

    .testi-card-new {
        flex: 0 0 calc(50% - 12px);
    }
}

@media(max-width:768px) {
    .hero-inner, .gtm-intro-grid, .tab-content-inner, .why-section-grid {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        border-right: none;
        border-bottom: 1.5px solid #e5e7eb;
    }

        .tab-btn:last-child {
            border-bottom: none;
        }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testi-card-new {
        flex: 0 0 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
