﻿

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Variables ──────────────────────────────────────── */
:root {
    --navy: #0a2a4a;
    --blue: #063b67;
    --mid-blue: #1a5276;
    --teal: #1a7a8a;
    --orange: #e8760a;
    --green: #2e7d32;
    --light: #f5f7fa;
    --border: #e5e7eb;
    --text: #4b5563;
    --text-light: #6b7280;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg,#061d34 0%,#0a2a4a 40%,#0d3d6b 70%,#0a2a4a 100%);
    position: relative;
    overflow: hidden;
    padding: 56px 0 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%,rgba(26,122,138,0.18) 0%,transparent 50%), radial-gradient(circle at 80% 20%,rgba(6,59,103,0.4) 0%,transparent 50%), url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 52px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Inter',serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
    max-width: 700px;
}

    .hero-title span {
        color: #ffb84d;
    }

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    max-width: 540px;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Stats bar */
.hero-stats-bar {
    position: relative;
    z-index: 2;
    background: #0d2d4e;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0px;
    color: #fff;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

    .stat-badge:last-child {
        border-right: none;
    }

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #e8a020;
    line-height: 1;
    font-family: 'Inter',serif;
}

.stat-text {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,255,255,0.9);
    text-align: left;
    max-width: 140px;
    font-weight: 400;
}

/* ── Sections ────────────────────────────────────────── */
.section {
    padding: 56px 0;
}

.bg-light {
    background: var(--light);
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

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

.center-title {
    text-align: center;
}

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

.center-divider {
    margin-left: auto;
    margin-right: auto;
}

.body-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 14px;
    max-width: 760px;
}

/* ── Who We Are ───────────────────────────────────────── */
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.who-visual {
    background: linear-gradient(135deg,var(--navy) 0%,#0d3d6b 100%);
    border-radius: 12px;
    padding: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .who-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }

.who-visual-content {
    position: relative;
    z-index: 1;
}

.who-visual-title {
    font-family: 'Inter',serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffb84d;
}

.who-visual-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .who-visual-list li:last-child {
        border-bottom: none;
    }

    .who-visual-list li::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ffb84d;
        flex-shrink: 0;
    }

/* ── MVV ─────────────────────────────────────────────── */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 32px;
}

.mvv-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s,box-shadow 0.25s;
}

    .mvv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(6,59,103,0.12);
    }

.mvv-header {
    padding: 14px 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.mission-header {
    background: var(--mid-blue);
}

.vision-header {
    background: var(--teal);
}

.values-header {
    background: var(--navy);
}

.mvv-body {
    padding: 22px;
    background: #fff;
}

    .mvv-body p {
        font-size: 14px;
        color: var(--text);
        line-height: 1.75;
    }

.values-list li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text);
    position: relative;
    padding-left: 18px;
}

    .values-list li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--blue);
        font-weight: bold;
    }

/* ── What We Do ──────────────────────────────────────── */
.what-we-do-section {
    background: linear-gradient(180deg,#eef2f7 0%,#e4ecf5 100%);
    padding: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 28px;
}

.services-grid-row2 {
    grid-template-columns: repeat(3,1fr);
    margin-top: 12px;
    max-width: 660px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background 0.2s,box-shadow 0.2s;
}

    .service-item:last-child {
        border-right: none;
    }

    .service-item:hover {
        background: #f5f8fd;
    }

.service-icon {
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon svg {
        width: 90px;
        height: 80px;
    }

.service-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
    max-width: 110px;
}

/* ── Testimonials ────────────────────────────────────── */
/* ── Testimonials Slider ─────────────────────────────── */
.testi-slider-outer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

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

.testi-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    margin-right: 20px;
    box-sizing: border-box;
    transition: box-shadow 0.25s;
}

    .testimonial-card:hover {
        box-shadow: 0 8px 28px rgba(6,59,103,0.1);
    }

.testi-quote-mark {
    font-size: 36px;
    color: #b0bec5;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia,serif;
    display: flex;
    gap: 3px;
}

    .testi-quote-mark span {
        display: inline-block;
        width: 22px;
        height: 22px;
        border: 2px solid #b0bec5;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        color: #b0bec5;
    }

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

    .testi-stars span {
        color: #f59e0b;
        font-size: 14px;
    }

.testi-quote {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--mid-blue),var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-author-info strong {
    display: block;
    font-size: 12.5px;
    color: #1a1a1a;
    font-weight: 600;
}

.testi-author-info span {
    font-size: 11.5px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Slider nav arrows */
.testi-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    transition: background 0.2s,box-shadow 0.2s,transform 0.2s;
    color: var(--blue);
}

    .testi-arrow:hover {
        background: var(--blue);
        color: #fff;
        box-shadow: 0 4px 16px rgba(6,59,103,0.22);
        transform: scale(1.08);
    }

    .testi-arrow svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

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

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.25s;
}

    .dot.active {
        background: var(--navy);
        width: 24px;
        border-radius: 4px;
    }

@media(max-width:768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
        margin-right: 20px;
    }
}

@media(min-width:769px) and (max-width:1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

/* ── Partner CTA ─────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg,var(--navy) 0%,#0d3d6b 100%);
    padding: 52px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at center,rgba(26,122,138,0.2) 0%,transparent 65%);
    }

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-section .section-title {
    color: #fff;
}

.cta-section .section-label {
    color: #ffb84d;
}

.cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 28px;
}

.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--orange);
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

    .btn-cta:hover {
        background: #d06a09;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,118,10,0.35);
    }

/* ── Values System (Horizontal) ──────────────────────── */
.values-section {
    padding: 60px 0;
    background: #fff;
}

.values-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 52px;
}

    .values-header-row .line {
        flex: 0 0 60px;
        height: 1.5px;
        background: #ccc;
    }

    .values-header-row h2 {
        font-family: 'Inter',serif;
        font-size: 1.55rem;
        font-weight: 700;
        color: #1a1a1a;
        white-space: nowrap;
    }

    .values-header-row .highlight {
        color: var(--orange);
    }

/* ── DMR 3-col horizontal ─────────────────────────────── */
.dmr-horiz {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
}

.dmr-col {
    padding: 36px 32px 40px;
    border: 1px solid #e0e7ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(6,59,103,0.05);
    transition: box-shadow 0.25s,transform 0.25s;
}

    .dmr-col:hover {
        box-shadow: 0 8px 28px rgba(6,59,103,0.10);
        transform: translateY(-3px);
    }

/* ── Big letter as plain text ─────────────────────────── */
.dmr-big-letter {
    text-align: center;
    display: block;
    font-family: 'Inter',serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
}

.d-letter {
    color: #76808d;
}

.m-letter {
    color: #ff0000;
}

.r-letter {
    color: #76808d;
}

/* ── Label ───────────────────────────────────────────── */
.dmr-block-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #9ba8b5;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #edf0f4;
    line-height: 1.6;
}

/* ── Values 2-col grid ───────────────────────────────── */
.dmr-values-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
}

.dmr-item {
    padding: 0;
}

    .dmr-item strong {
        display: block;
        font-size: 13px;
        color: var(--blue);
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.35;
        cursor: default;
    }

    .dmr-item span {
        font-size: 12px;
        color: #9ba8b5;
        line-height: 1.55;
    }


/* ── Responsive ──────────────────────────────────────── */
@media(min-width:768px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media(max-width:1024px) {
    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

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

    .hero-title {
        font-size: 1.75rem;
    }

    .hero {
        padding: 44px 0 0;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }
    /* testimonials now handled by slider JS */
    .stats-row {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .stat-badge {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        width: 100%;
        justify-content: center;
        padding: 14px 0;
    }

        .stat-badge:last-child {
            border-bottom: none;
        }

    .stat-num {
        font-size: 1.6rem;
    }

    .services-grid, .services-grid-row2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .dmr-horiz {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .dmr-col {
        border-right: none;
    }

    .dmr-big-letter {
        text-align: center;
        font-size: 4rem;
    }

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

@media(max-width:480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.45rem;
    }

    .services-grid, .services-grid-row2 {
        grid-template-columns: 1fr;
    }

    .dmr-horiz {
        grid-template-columns: 1fr;
    }

    .dmr-values-row {
        grid-template-columns: 1fr 1fr;
    }
}
