/* Company Page  */

/* Hero */
.company-hero {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.company-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.company-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.58) 100%
    );
}

.company-hero-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.company-hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.company-hero-text .hero-divider {
    margin-top: 16px;
    width: 60px;
    height: 4px;
    background: #4ca567;
    border-radius: 2px;
}

.company-hero-text p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

/* BREADCRUMB */
.breadcrumb {
    background: #f5f9ff;
    border-bottom: 1px solid #e4edf8;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #777;
}

.breadcrumb a {
    color: #297cc8;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { margin: 0 6px; color: #bbb; }

/* ── SHARED SECTION HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #4ca567;
    border-radius: 2px;
}

.section-eyebrow span {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4ca567;
}

.section-header h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.25;
}

.section-header h2 span { color: #297cc8; }

.section-header p {
    font-size: 0.97rem;
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.85;
}

/* WHO WE ARE */
.company-about {
    padding: 90px 0;
    background: #fff;
}

.company-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.company-about-text .eyebrow-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.company-about-text .eyebrow-inline::before {
    content: '';
    width: 36px;
    height: 3px;
    background: #4ca567;
    border-radius: 2px;
}

.company-about-text .eyebrow-inline span {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #4ca567;
}

.company-about-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 18px;
}

.company-about-text h2 span { color: #297cc8; }

.company-about-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* Key facts */
.company-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.company-fact {
    background: #f5f9ff;
    border: 1px solid #e4edf8;
    border-left: 3px solid #297cc8;
    border-radius: 0 6px 6px 0;
    padding: 12px 16px;
}

.company-fact .fact-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #297cc8;
    margin-bottom: 3px;
}

.company-fact .fact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

/* Image side */
.company-about-image {
    position: relative;
}

.company-about-image::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 70%;
    height: 70%;
    background: #eaf3ff;
    border-radius: 8px;
    z-index: 0;
}

.company-about-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    background: rgba(76, 165, 103, 0.15);
    border-radius: 4px;
    z-index: 0;
}

.company-about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(41, 124, 200, 0.12);
    display: block;
}

/* WHAT WE DO — SERVICES GRID */
.company-services {
    padding: 90px 0;
    background: #f5f9ff;
}

.company-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.company-svc-card {
    background: #fff;
    border: 1px solid #e4edf8;
    border-radius: 10px;
    padding: 26px 20px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.company-svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #297cc8, #4ca567);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.company-svc-card:hover::before { transform: scaleX(1); }

.company-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(41, 124, 200, 0.12);
    border-color: #cce2f6;
}

.company-svc-icon {
    width: 46px;
    height: 46px;
    background: #eaf3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.company-svc-icon i {
    color: #297cc8;
    font-size: 1.1rem;
}

.company-svc-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4;
}

.company-svc-card p {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* OUR APPROACH — PMBOK TIMELINE */
.company-approach {
    padding: 90px 0;
    background: #f5f9ff;
}

.approach-phases {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin-top: 10px;
}

/* Connecting line */
.approach-phases::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #297cc8, #4ca567);
    z-index: 0;
}

.approach-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.phase-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #297cc8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(41, 124, 200, 0.15);
    transition: background 0.3s, border-color 0.3s;
}

.approach-phase:hover .phase-circle {
    background: #297cc8;
}

.phase-circle i {
    color: #297cc8;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.approach-phase:hover .phase-circle i {
    color: #fff;
}

.approach-phase h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-phase p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}

/* VISION MISSION VALUES */
.company-vmv {
    padding: 90px 0;
    background: #fff;
}

.vmv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.vmv-card {
    background: #fff;
    border: 1px solid #e4edf8;
    border-radius: 10px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vmv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(41, 124, 200, 0.1);
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #297cc8, #4ca567);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.vmv-card:hover::before { transform: scaleX(1); }

.vmv-icon {
    width: 50px;
    height: 50px;
    background: #eaf3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vmv-icon i { color: #297cc8; font-size: 1.15rem; }

.vmv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.vmv-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Values full-width card */
.vmv-card.values-card { padding: 34px 34px; }

.vmv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.vmv-value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f5f9ff;
    border: 1px solid #e4edf8;
    border-radius: 8px;
    padding: 14px 16px;
    transition: border-color 0.2s, background 0.2s;
}

.vmv-value-item:hover {
    background: #eaf3ff;
    border-color: #cce2f6;
}

.vmv-value-item .v-icon {
    width: 28px;
    height: 28px;
    background: #297cc8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vmv-value-item .v-icon i { color: #fff; font-size: 0.6rem; }

.vmv-value-item div strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.vmv-value-item div span {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
}

/*
   WHY CHOOSE US
 */
.company-why {
    padding: 90px 0;
    background: #fff;
}

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

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #f5f9ff;
    border: 1px solid #e4edf8;
    border-radius: 10px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.why-item:hover {
    border-color: #297cc8;
    box-shadow: 0 6px 20px rgba(41, 124, 200, 0.09);
    transform: translateY(-3px);
}

.why-item-icon {
    width: 48px;
    height: 48px;
    background: #297cc8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item-icon i { color: #fff; font-size: 1.05rem; }

.why-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.why-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/*
   KEY CLIENTS
 */
.company-clients {
    padding: 70px 0;
    background: #f5f9ff;
    text-align: center;
}

.clients-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.client-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e4edf8;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.client-chip i { color: #4ca567; font-size: 0.75rem; }

.client-chip:hover {
    border-color: #297cc8;
    box-shadow: 0 4px 14px rgba(41, 124, 200, 0.12);
    transform: translateY(-2px);
}

.client-chip .client-country {
    font-size: 0.72rem;
    color: #999;
    font-weight: 400;
}

/*BOTTOM CTA STRIP*/
.company-cta-strip {
    background: #297cc8;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.company-cta-strip::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -180px;
    right: -100px;
    pointer-events: none;
}

.company-cta-strip h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.company-cta-strip p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.8);
    margin: 0 auto 28px;
    max-width: 500px;
    line-height: 1.7;
}

.btn-company-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #297cc8;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.93rem;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-company-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-company-cta i { transition: transform 0.3s; }
.btn-company-cta:hover i { transform: translateX(4px); }

/* RESPONSIVEness Starts Here */
@media (max-width: 1100px) {
    .company-svc-grid { grid-template-columns: repeat(3, 1fr); }
    .approach-phases { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .approach-phases::before { display: none; }
}

@media (max-width: 992px) {
    .company-about-grid { grid-template-columns: 1fr; gap: 50px; }
    .vmv-top { grid-template-columns: 1fr; }
    .vmv-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .company-hero { height: 320px; }

    .company-svc-grid { grid-template-columns: repeat(2, 1fr); }

    .approach-phases {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .company-facts { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .company-hero { height: 260px; }
    .company-svc-grid { grid-template-columns: 1fr; }
    .vmv-values-grid { grid-template-columns: 1fr; }
    .approach-phases { grid-template-columns: 1fr; }
}