        /* ============================================
           SERVICES PAGE - CUSTOM STYLES
        ============================================ */

        /* Page Hero Banner */
    .page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;

   background: 
    linear-gradient(to right, rgba(13, 94, 124, 1) 35%, rgba(13, 94, 124, 0.8) 60%, rgba(13, 94, 124, 0.7) 85%, rgba(13, 94, 124, 0.6) 100%),
    url('images/banner/banner-inner.jpg');


    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(255, 160, 0, 0.12) 0%, transparent 60%),
                        radial-gradient(ellipse at 10% 80%, rgba(15, 52, 96, 0.8) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom right, transparent 49.5%, #fff 50%);
        }
        .page-hero__grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        .page-hero__breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }
        .page-hero__breadcrumb a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.05em;
            transition: color 0.3s;
        }
        .page-hero__breadcrumb a:hover { color: #00b0ba; }
        .page-hero__breadcrumb span {
            color: rgba(255,255,255,0.3);
            font-size: 14px;
        }
        .page-hero__breadcrumb .current {
            color: #00b0ba;
            font-size: 14px;
        }
        .page-hero h1 {
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin: 0 0 20px;
            letter-spacing: -0.02em;
        }
        .page-hero h1 span { color: #00b0ba; }
        .page-hero p {
            color: rgba(255,255,255,0.65);
            font-size: 17px;
            max-width: 560px;
            line-height: 1.7;
            margin: 0;
        }
        .page-hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,160,0,0.12);
            border: 1px solid rgba(255,160,0,0.3);
            color: #00b0ba;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 30px;
            margin-bottom: 22px;
        }
        .page-hero__badge::before {
            content: '';
            width: 6px; height: 6px;
            background: #00b0ba;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        /* Stats Strip */
        .stats-strip {
            background: #fff;
            box-shadow: 0 4px 40px rgba(0,0,0,0.08);
            padding: 50px 0;
            position: relative;
            z-index: 3;
        }
        .stats-strip__wrp {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stats-strip__item {
            text-align: center;
            padding: 0 30px;
            border-right: 1px solid #e8e8e8;
        }
        .stats-strip__item:last-child { border-right: none; }
        .stats-strip__number {
            font-size: 42px;
            font-weight: 800;
            color: #0d2744;
            line-height: 1;
            margin-bottom: 8px;
        }
        .stats-strip__number span { color: #00b0ba; }
        .stats-strip__label {
            font-size: 14px;
            color: #666;
            font-weight: 500;
            letter-spacing: 0.03em;
        }
        @media (max-width: 768px) {
            .stats-strip__wrp { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .stats-strip__item { border-right: none; }
        }

        /* Section Header */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,160,0,0.08);
            border-left: 3px solid #00b0ba;
            padding: 6px 16px 6px 12px;
            color: #00b0ba;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        /* Services Grid Section */
        .services-main {
            padding: 110px 0 80px;
            background: #f8f9fb;
        }
        .services-main__header {
            max-width: 640px;
            margin-bottom: 70px;
        }
        .services-main__header h2 {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 700;
            color: #0d2744;
            line-height: 1.15;
            margin: 0 0 18px;
            letter-spacing: -0.02em;
        }
        .services-main__header p {
            color: #667;
            font-size: 16px;
            line-height: 1.75;
        }

        /* ============================================
           SERVICE CARD
        ============================================ */
        .service-card {
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(13, 39, 68, 0.14);
        }

        /* Card top image area */
        .service-card__top {
            position: relative;
            height: 220px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        /* Dark overlay - always on */
        .service-card__top::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(8, 20, 45, 0.65);
            z-index: 1;
            transition: background 0.4s ease;
        }
        /* Lighten overlay on hover to reveal image */
        .service-card:hover .service-card__top::before {
            background: rgba(8, 20, 45, 0.45);
        }
        /* Zoom the background image on hover */
        .service-card__top {
            transition: background-size 0.6s ease;
        }
        .service-card:hover .service-card__top {
            background-size: 110%;
        }

        /* Per-card background images */
        .sc--card1 .service-card__top {
            background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=700&q=80');
        }
        .sc--card2 .service-card__top {
            background-image: url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?w=700&q=80');
        }
        .sc--card3 .service-card__top {
            background-image: url('https://images.unsplash.com/photo-1581092335397-9583eb92d232?w=700&q=80');
        }
        .sc--card4 .service-card__top {
            background-image: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=700&q=80');
        }
        .sc--card5 .service-card__top {
            background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=700&q=80');
        }
        .sc--card6 .service-card__top {
            background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=700&q=80');
        }

        /* All inner elements inside top must be above the overlay */
        .service-card__icon-wrap,
        .service-card__number,
        .service-card__label {
            position: relative;
            z-index: 2;
        }

        .service-card__icon-wrap {
            width: 80px; height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 2px solid #00b0ba;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.35s, background 0.35s;
        }
        .service-card:hover .service-card__icon-wrap {
            transform: scale(1.1);
            background: rgba(0, 176, 186, 0.2);
        }
        .service-card__icon-wrap i {
            font-size: 32px;
            color: #00b0ba;
        }
        .service-card__number {
            position: absolute;
            top: 18px;
            right: 20px;
            font-size: 60px;
            font-weight: 900;
            color: rgba(255,255,255,0.08);
            line-height: 1;
            user-select: none;
        }
        .service-card__label {
            position: absolute;
            bottom: 0; left: 0;
            background: #00b0ba;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 5px 14px;
        }
        .service-card__body {
            padding: 32px 30px 36px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .service-card__body h3 {
            font-size: 20px;
            font-weight: 700;
            color: #0d2744;
            margin: 0 0 14px;
            line-height: 1.3;
        }
        .service-card__body p {
            color: #667;
            font-size: 14px;
            line-height: 1.7;
            margin: 0 0 22px;
            flex: 1;
        }
        .service-card__features {
            list-style: none;
            padding: 0; margin: 0 0 26px;
        }
        .service-card__features li {
            font-size: 13px;
            color: #555;
            padding: 5px 0;
            display: flex;
            align-items: flex-start;
            gap: 9px;
            border-bottom: 1px dashed #eee;
        }
        .service-card__features li:last-child { border-bottom: none; }
        .service-card__features li i {
            color: #00b0ba;
            font-size: 12px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .service-card__link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #0d2744;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-decoration: none;
            border-bottom: 2px solid #00b0ba;
            padding-bottom: 2px;
            transition: color 0.3s, gap 0.3s;
        }
        .service-card__link:hover { color: #00b0ba; gap: 12px; }

        /* Process Section */
        .process-section {
            padding: 110px 0;
            background: #0d2744;
            position: relative;
            overflow: hidden;
        }
        .process-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        .process-section .container { position: relative; z-index: 2; }
        .process-section__header h2 {
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 700;
            color: #fff;
            margin: 0 0 16px;
        }
        .process-section__header p {
            color: rgba(255,255,255,0.6);
            font-size: 15px;
            line-height: 1.7;
            max-width: 500px;
        }
        .process-step {
            text-align: center;
            padding: 40px 24px;
            position: relative;
        }
        .process-step::after {
            content: '\f054';
            font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255,160,0,0.4);
            font-size: 20px;
        }
        .process-step:last-child::after { display: none; }
        .process-step__num {
            width: 64px; height: 64px;
            background: rgba(255,160,0,0.1);
            border: 2px solid rgba(255,160,0,0.4);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            font-size: 22px;
            font-weight: 800;
            color: #00b0ba;
            transition: background 0.3s, transform 0.3s;
        }
        .process-step:hover .process-step__num {
            background: rgba(255,160,0,0.2);
            transform: scale(1.1);
        }
        .process-step h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px;
        }
        .process-step p {
            font-size: 13px;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            margin: 0;
        }

        /* Why Choose Us */
        .why-us {
            padding: 110px 0;
            background: #fff;
        }
        .why-us__image {
            position: relative;
            border-radius: 4px;
            overflow: hidden;
            height: 520px;
            background: linear-gradient(135deg, #0a1628 0%, #0f3460 50%, #1a4a80 100%);
            display: flex; align-items: center; justify-content: center;
        }
        .why-us__image-inner {
            text-align: center;
            padding: 40px;
        }
        .why-us__image-inner i {
            font-size: 80px;
            color: rgba(255,160,0,0.25);
            display: block;
            margin-bottom: 20px;
        }
        .why-us__img-stat {
            position: absolute;
            bottom: 30px;
            right: -20px;
            background: #00b0ba;
            color: #fff;
            padding: 20px 28px;
            border-radius: 4px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .why-us__img-stat strong {
            display: block;
            font-size: 36px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 4px;
        }
        .why-us__img-stat span {
            font-size: 13px;
            opacity: 0.85;
            font-weight: 500;
        }
        .why-us__content h2 {
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 700;
            color: #0d2744;
            line-height: 1.2;
            margin: 0 0 20px;
        }
        .why-us__content > p {
            color: #667;
            font-size: 15px;
            line-height: 1.75;
            margin: 0 0 36px;
        }
        .why-item {
            display: flex;
            gap: 18px;
            margin-bottom: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid #f0f0f0;
        }
        .why-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .why-item__icon {
            width: 52px; height: 52px;
            background: rgba(255,160,0,0.1);
            border-radius: 4px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .why-item__icon i { font-size: 22px; color: #00b0ba; }
        .why-item__text h5 {
            font-size: 16px;
            font-weight: 700;
            color: #0d2744;
            margin: 0 0 6px;
        }
        .why-item__text p {
            font-size: 13px;
            color: #667;
            line-height: 1.6;
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0a1628 0%, #0f3460 100%);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -100px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(255,160,0,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section .container { position: relative; z-index: 2; }
        .cta-section h2 {
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin: 0 0 18px;
        }
        .cta-section h2 span { color: #00b0ba; }
        .cta-section p {
            color: rgba(255,255,255,0.65);
            font-size: 16px;
            line-height: 1.7;
            margin: 0 0 36px;
            max-width: 500px;
        }
        .cta-btns { display: flex; flex-wrap: wrap; gap: 16px; }
        .btn-primary-cta {
            display: inline-flex; align-items: center; gap: 10px;
            background: #00b0ba;
            color: #fff;
            padding: 15px 32px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 2px;
            transition: background 0.3s, transform 0.3s;
        }
        .btn-primary-cta:hover { background: #009aa3; color: #fff; transform: translateY(-2px); }
        .btn-outline-cta {
            display: inline-flex; align-items: center; gap: 10px;
            background: transparent;
            color: #fff;
            padding: 14px 32px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 2px;
            transition: border-color 0.3s, background 0.3s;
        }
        .btn-outline-cta:hover { border-color: #00b0ba; background: rgba(0,176,186,0.1); color: #fff; }

        /* Responsive */
        @media (max-width: 991px) {
            .why-us__img-stat { right: 10px; }
            .process-step::after { display: none; }
        }
        @media (max-width: 575px) {
            .page-hero { padding: 130px 0 80px; }
            .stats-strip { padding: 40px 0; }
            .services-main, .process-section, .why-us, .cta-section { padding: 70px 0; }
        }

/* ===== ABOUT US PAGE STYLES ===== */
        /* ============================================
           ABOUT US PAGE - CUSTOM STYLES
           (Design system mirrored from services.html)
        ============================================ */

        /* ---------- Page Hero Banner ---------- */
        .page-hero {
            position: relative;
            background: linear-gradient(135deg, #0a1628 0%, #0d2744 40%, #0f3460 100%);
            padding: 160px 0 100px;
            overflow: hidden;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(255,160,0,0.12) 0%, transparent 60%),
                        radial-gradient(ellipse at 10% 80%, rgba(15,52,96,0.8) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 80px;
            background: linear-gradient(to bottom right, transparent 49.5%, #fff 50%);
        }
        .page-hero__grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .page-hero .container { position: relative; z-index: 2; }
        .page-hero__breadcrumb {
            display: flex; align-items: center; gap: 10px;
            margin-bottom: 24px;
        }
        .page-hero__breadcrumb a {
            color: rgba(255,255,255,0.6); text-decoration: none;
            font-size: 14px; letter-spacing: 0.05em; transition: color 0.3s;
        }
        .page-hero__breadcrumb a:hover { color: #00b0ba; }
        .page-hero__breadcrumb span { color: rgba(255,255,255,0.3); font-size: 14px; }
        .page-hero__breadcrumb .current { color: #00b0ba; font-size: 14px; }
        .page-hero h1 {
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 700; color: #fff;
            line-height: 1.1; margin: 0 0 20px; letter-spacing: -0.02em;
        }
        .page-hero h1 span { color: #00b0ba; }
        .page-hero p {
            color: rgba(255,255,255,0.65); font-size: 17px;
            max-width: 560px; line-height: 1.7; margin: 0;
        }
        .page-hero__badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(255,160,0,0.12);
            border: 1px solid rgba(255,160,0,0.3);
            color: #00b0ba; font-size: 12px; font-weight: 600;
            letter-spacing: 0.12em; text-transform: uppercase;
            padding: 7px 16px; border-radius: 30px; margin-bottom: 22px;
        }
        .page-hero__badge::before {
            content: ''; width: 6px; height: 6px;
            background: #00b0ba; border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }

        /* ---------- Section Tag ---------- */
        .section-tag {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(255,160,0,0.08);
            border-left: 3px solid #00b0ba;
            padding: 6px 16px 6px 12px;
            color: #00b0ba; font-size: 12px; font-weight: 700;
            letter-spacing: 0.12em; text-transform: uppercase;
            margin-bottom: 20px;
        }

        /* ---------- Stats Strip ---------- */
        .stats-strip {
            background: #fff;
            box-shadow: 0 4px 40px rgba(0,0,0,0.08);
            padding: 50px 0;
            position: relative; z-index: 3;
        }
        .stats-strip__wrp {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }
        .stats-strip__item {
            text-align: center; padding: 0 30px;
            border-right: 1px solid #e8e8e8;
        }
        .stats-strip__item:last-child { border-right: none; }
        .stats-strip__number {
            font-size: 42px; font-weight: 800;
            color: #0d2744; line-height: 1; margin-bottom: 8px;
        }
        .stats-strip__number span { color: #00b0ba; }
        .stats-strip__label { font-size: 14px; color: #666; font-weight: 500; letter-spacing: 0.03em; }
        @media (max-width: 768px) {
            .stats-strip__wrp { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .stats-strip__item { border-right: none; }
        }

        /* ---------- About Story Section ---------- */
        .about-story {
            padding: 110px 0 80px;
            background: #f8f9fb;
        }
        .about-story__heading {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 700; color: #0d2744;
            line-height: 1.15; margin: 0 0 24px; letter-spacing: -0.02em;
        }
        .about-story__heading span { color: #00b0ba; }
        .about-story__text {
            color: #667; font-size: 15px; line-height: 1.8;
            margin-bottom: 20px;
        }
        .about-story__highlight {
            background: #fff; border-left: 4px solid #00b0ba;
            padding: 20px 24px; margin: 30px 0;
            border-radius: 0 4px 4px 0;
            box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        }
        .about-story__highlight p {
            font-size: 15px; color: #0d2744; font-weight: 600;
            line-height: 1.6; margin: 0; font-style: italic;
        }
        /* Visual card on the right */
        .about-visual {
            position: relative; height: 100%;
            min-height: 460px;
        }
        .about-visual__main {
            border-radius: 4px; overflow: hidden;
            height: 340px;
            background: linear-gradient(135deg, #0a1628 0%, #0f3460 50%, #1a4a80 100%);
            display: flex; align-items: center; justify-content: center;
        }
        .about-visual__main i {
            font-size: 100px; color: rgba(0,176,186,0.2);
        }
        .about-visual__badge {
            position: absolute; bottom: 40px; right: -10px;
            background: #00b0ba; color: #fff;
            padding: 20px 28px; border-radius: 4px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            text-align: center;
        }
        .about-visual__badge strong {
            display: block; font-size: 38px;
            font-weight: 800; line-height: 1; margin-bottom: 4px;
        }
        .about-visual__badge span { font-size: 13px; opacity: 0.9; font-weight: 500; }
        .about-visual__mini {
            margin-top: 20px; display: grid;
            grid-template-columns: 1fr 1fr; gap: 12px;
        }
        .about-mini-card {
            background: #fff; border-radius: 4px;
            padding: 18px 16px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.06);
            display: flex; align-items: center; gap: 14px;
        }
        .about-mini-card__icon {
            width: 42px; height: 42px; flex-shrink: 0;
            background: rgba(0,176,186,0.1); border-radius: 4px;
            display: flex; align-items: center; justify-content: center;
        }
        .about-mini-card__icon i { font-size: 18px; color: #00b0ba; }
        .about-mini-card__text strong {
            display: block; font-size: 18px; font-weight: 800;
            color: #0d2744; line-height: 1; margin-bottom: 3px;
        }
        .about-mini-card__text span { font-size: 11px; color: #888; font-weight: 500; }

        /* ---------- Values Section ---------- */
        .values-section {
            padding: 110px 0;
            background: #0d2744; position: relative; overflow: hidden;
        }
        .values-section::before {
            content: '';
            position: absolute; inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        .values-section .container { position: relative; z-index: 2; }
        .values-section__header h2 {
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 700; color: #fff; margin: 0 0 16px;
        }
        .values-section__header p {
            color: rgba(255,255,255,0.6); font-size: 15px;
            line-height: 1.7; max-width: 500px;
        }
        .value-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 4px; padding: 36px 28px;
            text-align: center;
            transition: background 0.3s, transform 0.3s, border-color 0.3s;
            height: 100%;
        }
        .value-card:hover {
            background: rgba(0,176,186,0.08);
            border-color: rgba(0,176,186,0.3);
            transform: translateY(-6px);
        }
        .value-card__icon {
            width: 70px; height: 70px; margin: 0 auto 22px;
            background: rgba(255,160,0,0.1);
            border: 2px solid rgba(0,176,186,0.4);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.3s, background 0.3s;
        }
        .value-card:hover .value-card__icon {
            transform: scale(1.1);
            background: rgba(0,176,186,0.2);
        }
        .value-card__icon i { font-size: 28px; color: #00b0ba; }
        .value-card h4 {
            font-size: 17px; font-weight: 700;
            color: #fff; margin: 0 0 12px;
        }
        .value-card p {
            font-size: 13px; color: rgba(255,255,255,0.55);
            line-height: 1.65; margin: 0;
        }

        /* ---------- Team Section ---------- */
        .team-section {
            padding: 110px 0 80px;
            background: #f8f9fb;
        }
        .team-section__header h2 {
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 700; color: #0d2744;
            margin: 0 0 16px; line-height: 1.2;
        }
        .team-section__header p {
            color: #667; font-size: 15px; line-height: 1.7;
            max-width: 540px;
        }

        /* ---- Rectangular Team Card — full reset + new styles ---- */
        /* Reset anything the global style.css might apply to .team__item or team images */
        .team-section .team-card,
        .team-section .team-card * {
            box-sizing: border-box !important;
        }
        .team-section .team-card {
            background: #fff !important;
            border-radius: 4px !important;
            overflow: hidden !important;
            box-shadow: 0 4px 24px rgba(13,39,68,0.08) !important;
            transition: transform 0.35s ease, box-shadow 0.35s ease !important;
            text-align: center !important;
            position: relative !important;
            /* kill any inherited arc/circle styles */
            clip-path: none !important;
            -webkit-clip-path: none !important;
            border: none !important;
        }
        .team-section .team-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 24px 64px rgba(13,39,68,0.16) !important;
        }

        /* Full-width rectangular image — hard overrides */
        .team-section .team-card__img-wrap {
            position: relative !important;
            width: 100% !important;
            height: 480px !important;
            overflow: hidden !important;
            border-radius: 0 !important;
            background: #0d2744 !important;
            /* kill any arc/clip inherited from style.css */
            clip-path: none !important;
            -webkit-clip-path: none !important;
        }
        .team-section .team-card__img-wrap img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: top center !important;
            border-radius: 0 !important;
            border: none !important;
            box-shadow: none !important;
            display: block !important;
            transition: transform 0.5s ease;
        }
        .team-section .team-card:hover .team-card__img-wrap img {
            transform: scale(1.06);
        }

        /* Dark gradient overlay with socials */
        .team-section .team-card__overlay {
            position: absolute !important;
            inset: 0 !important;
            top: 0 !important; left: 0 !important;
            right: 0 !important; bottom: 0 !important;
            width: 100% !important; height: 100% !important;
            background: linear-gradient(to top, rgba(13,39,68,0.88) 0%, rgba(13,39,68,0.15) 100%) !important;
            display: flex !important;
            align-items: flex-end !important;
            justify-content: center !important;
            padding-bottom: 22px !important;
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .team-section .team-card:hover .team-card__overlay { opacity: 1 !important; }

        /* Social icons */
        .team-section .team-card__socials {
            display: flex !important; gap: 8px !important;
        }
        .team-section .team-card__socials a {
            width: 36px !important; height: 36px !important;
            background: rgba(255,255,255,0.15) !important;
            backdrop-filter: blur(4px);
            border: 1.5px solid rgba(255,255,255,0.4) !important;
            border-radius: 4px !important;
            display: flex !important; align-items: center !important; justify-content: center !important;
            color: #fff !important; font-size: 13px !important; text-decoration: none !important;
            transition: background 0.25s, border-color 0.25s, transform 0.25s;
        }
        .team-section .team-card__socials a:hover {
            background: #00b0ba !important; border-color: #00b0ba !important;
            transform: translateY(-3px);
        }

        /* Animated teal underline sweep */
        .team-section .team-card__img-wrap::after {
            content: '' !important;
            position: absolute !important;
            bottom: 0 !important; left: 0 !important;
            width: 0 !important; height: 4px !important;
            background: linear-gradient(90deg, #00b0ba, #0d2744) !important;
            transition: width 0.4s ease !important;
        }
        .team-section .team-card:hover .team-card__img-wrap::after { width: 100% !important; }

        /* Body */
        .team-section .team-card__body {
            padding: 22px 20px 26px !important;
            border-top: 1px solid #f0f0f0 !important;
            background: #fff !important;
        }
        .team-section .team-card__body h4 {
            font-size: 17px !important; font-weight: 700 !important;
            color: #0d2744 !important; margin: 0 0 6px !important;
            letter-spacing: -0.01em !important;
        }
        .team-section .team-card__role-badge {
            display: inline-block !important;
            font-size: 10px !important; font-weight: 700 !important;
            letter-spacing: 0.12em !important; text-transform: uppercase !important;
            color: #00b0ba !important;
        }

        /* Bottom accent line */
        .team-section .team-card__divider {
            width: 32px !important; height: 3px !important;
            background: linear-gradient(90deg, #0d2744, #00b0ba) !important;
            margin: 12px auto 0 !important; border-radius: 2px !important;
            transition: width 0.3s;
        }
        .team-section .team-card:hover .team-card__divider { width: 56px !important; }

        /* ---------- Milestones Section ---------- */
        .milestones-section {
            padding: 110px 0;
            background: #fff;
        }
        .mb-70 { margin-bottom: 70px; }

        /* Timeline wrapper */
        .milestone-timeline {
            position: relative;
            padding: 0 0 20px;
        }

        /* Shared row styles */
        .mt-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0 24px;
        }

        /* Each item column */
        .mt-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Card box */
        .mt-card {
            background: #fff;
            border-radius: 4px;
            padding: 22px 18px;
            box-shadow: 0 4px 24px rgba(13,39,68,0.09);
            border: 1px solid #eef0f4;
            text-align: center;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            position: relative;
        }
        .mt-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(13,39,68,0.14);
            border-color: rgba(0,176,186,0.3);
        }
        .mt-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0d2744, #00b0ba);
            border-radius: 4px 4px 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .mt-card:hover::before { opacity: 1; }
        .mt-card p {
            font-size: 13px; color: #555;
            line-height: 1.65; margin: 0;
        }

        /* Connector line between card and spine */
        .mt-connector {
            width: 2px;
            flex: 1;
            min-height: 36px;
            background: linear-gradient(to bottom, #00b0ba, rgba(0,176,186,0.15));
            position: relative;
        }
        .mt-connector--up {
            background: linear-gradient(to top, #00b0ba, rgba(0,176,186,0.15));
        }
        .mt-connector::after {
            content: '';
            position: absolute;
            left: 50%; transform: translateX(-50%);
            width: 10px; height: 10px;
            border-radius: 50%;
            background: #00b0ba;
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px #00b0ba;
        }
        .mt-connector--down::after { bottom: 0; top: auto; }
        .mt-connector--up::after  { top: 0; bottom: auto; }

        /* Year badge */
        .mt-year {
            width: 68px; height: 68px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d2744 0%, #0f3460 60%, #00b0ba 100%);
            color: #fff;
            font-size: 14px; font-weight: 800;
            letter-spacing: 0.02em;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 20px rgba(0,176,186,0.35);
            flex-shrink: 0;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: default;
        }
        .mt-item:hover .mt-year {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(0,176,186,0.5);
        }

        /* Center spine */
        .mt-spine {
            position: relative;
            margin: 0;
            height: 20px;
            display: flex; align-items: center;
        }
        .mt-spine__line {
            position: absolute;
            left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0d2744 0%, #00b0ba 50%, #0d2744 100%);
            border-radius: 2px;
        }
        .mt-spine__dots {
            position: absolute;
            left: 0; right: 0;
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            pointer-events: none;
        }
        .mt-spine__dots span {
            display: flex; justify-content: center;
        }
        .mt-spine__dots span::after {
            content: '';
            display: block;
            width: 8px; height: 8px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #00b0ba;
            margin-top: -2px;
        }

        /* Responsive: stack on mobile */
        @media (max-width: 767px) {
            .mt-row {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .mt-spine { display: none; }
            .mt-connector { min-height: 20px; }
        }
        @media (max-width: 480px) {
            .mt-row { grid-template-columns: 1fr; }
        }

        /* ---------- CTA Section ---------- */
        .cta-section {
            background: linear-gradient(135deg, #0a1628 0%, #0f3460 100%);
            padding: 90px 0; position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute; top: -50%; right: -100px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(255,160,0,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section .container { position: relative; z-index: 2; }
        .cta-section h2 {
            font-size: clamp(28px, 4vw, 46px);
            font-weight: 700; color: #fff; line-height: 1.2; margin: 0 0 18px;
        }
        .cta-section h2 span { color: #00b0ba; }
        .cta-section p {
            color: rgba(255,255,255,0.65); font-size: 16px;
            line-height: 1.7; margin: 0 0 36px; max-width: 500px;
        }
        .cta-btns { display: flex; flex-wrap: wrap; gap: 16px; }
        .btn-primary-cta {
            display: inline-flex; align-items: center; gap: 10px;
            background: #00b0ba; color: #fff;
            padding: 15px 32px; font-size: 14px; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
            text-decoration: none; border-radius: 2px;
            transition: background 0.3s, transform 0.3s;
        }
        .btn-primary-cta:hover { background: #009aa3; color: #fff; transform: translateY(-2px); }
        .btn-outline-cta {
            display: inline-flex; align-items: center; gap: 10px;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3); color: #fff;
            padding: 13px 30px; font-size: 14px; font-weight: 700;
            letter-spacing: 0.06em; text-transform: uppercase;
            text-decoration: none; border-radius: 2px;
            transition: border-color 0.3s, background 0.3s, transform 0.3s;
        }
        .btn-outline-cta:hover {
            border-color: #00b0ba; background: rgba(0,176,186,0.1);
            color: #fff; transform: translateY(-2px);
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 991px) {
            .about-visual__badge { right: 0; }
        }
        @media (max-width: 575px) {
            .page-hero { padding: 130px 0 80px; }
            .stats-strip { padding: 40px 0; }
            .about-story, .values-section, .team-section,
            .milestones-section, .cta-section { padding: 70px 0; }
            .about-visual__mini { grid-template-columns: 1fr; }
        }

        /* ============================================
           NUCLEAR OVERRIDE — defeats style.css circular/arc image on team cards
        ============================================ */
        .team-section .team-card__img-wrap {
            position: relative !important;
            width: 100% !important;
            height: 480px !important;
            overflow: hidden !important;
            border-radius: 0 !important;
            clip-path: none !important;
            -webkit-clip-path: none !important;
            background: #0d2744 !important;
            margin: 0 !important;
            padding: 0 !important;
            display: block !important;
        }
        .team-section .team-card__img-wrap > img {
            position: static !important;
            display: block !important;
            width: 100% !important;
            height: 100% !important;
            max-width: none !important;
            max-height: none !important;
            object-fit: cover !important;
            object-position: top center !important;
            border-radius: 0 !important;
            border: none !important;
            box-shadow: none !important;
            clip-path: none !important;
            -webkit-clip-path: none !important;
            margin: 0 !important;
            padding: 0 !important;
            transform-origin: top center;
        }
        .team-section .team-card:hover .team-card__img-wrap > img {
            transform: scale(1.06) !important;
        }

/* ===== CONTACT PAGE STYLES ===== */
        /* ============================================
           PAGE HERO BANNER (matches services.html / products.php style)
        ============================================ */
        .page-hero {
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;

            background:
                linear-gradient(to right, rgba(13, 94, 124, 1) 35%, rgba(13, 94, 124, 0.8) 60%, rgba(13, 94, 124, 0.7) 85%, rgba(13, 94, 124, 0.6) 100%),
                url('images/banner/banner-inner.jpg');

            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(0, 155, 163, 0.12) 0%, transparent 60%),
                        radial-gradient(ellipse at 10% 80%, rgba(15, 52, 96, 0.8) 0%, transparent 50%);
            pointer-events: none;
        }
        .page-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom right, transparent 49.5%, #fff 50%);
        }
        .page-hero__grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }
        .page-hero .container {
            position: relative;
            z-index: 2;
        }
        .page-hero__breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 24px;
        }
        .page-hero__breadcrumb a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.05em;
            transition: color 0.3s;
        }
        .page-hero__breadcrumb a:hover { color: #009ba3; }
        .page-hero__breadcrumb span {
            color: rgba(255,255,255,0.3);
            font-size: 14px;
        }
        .page-hero__breadcrumb .current {
            color: #009ba3;
            font-size: 14px;
        }
        .page-hero h1 {
            font-size: clamp(36px, 5vw, 62px);
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin: 0 0 20px;
            letter-spacing: -0.02em;
        }
        .page-hero h1 span { color: #009ba3; }
        .page-hero p {
            color: rgba(255,255,255,0.65);
            font-size: 17px;
            max-width: 560px;
            line-height: 1.7;
            margin: 0;
        }
        .page-hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,155,163,0.12);
            border: 1px solid rgba(0,155,163,0.3);
            color: #009ba3;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 30px;
            margin-bottom: 22px;
        }
        .page-hero__badge::before {
            content: '';
            width: 6px; height: 6px;
            background: #009ba3;
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.4); }
        }
        @media (max-width: 575px) {
            .page-hero { padding: 130px 0 80px; }
        }

        /* ============================================
           CONTACT SECTION
        ============================================ */
        .team-area { padding-bottom: 100px; }

        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            margin-bottom: 100px;
        }

        /* ---- Left column ---- */
        .contact-left h5 {
            display: inline-block;
            background: rgba(0,155,163,0.08);
            border-left: 3px solid #009ba3;
            padding: 6px 16px 6px 12px;
            color: #009ba3;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin: 0 0 20px;
        }
        .contact-left h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: #0d2744;
            line-height: 1.15;
            margin: 0 0 18px;
            letter-spacing: -0.02em;
        }
        .contact-left > p {
            color: #667;
            font-size: 15px;
            line-height: 1.75;
            max-width: 480px;
            margin: 0 0 36px;
        }
        .contact-left .info {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 22px 0;
            border-bottom: 1px solid #eef0f4;
            font-size: 14px;
            color: #667;
            line-height: 1.7;
        }
        .contact-left .info:first-of-type { padding-top: 0; }
        .contact-left .info i {
            width: 46px; height: 46px;
            flex-shrink: 0;
            background: rgba(0,155,163,0.1);
            border-radius: 4px;
            display: flex; align-items: center; justify-content: center;
            color: #009ba3;
            font-size: 18px;
        }
        .contact-left .info div { padding-top: 4px; }
        .contact-left .info strong {
            display: block;
            font-size: 15px;
            font-weight: 700;
            color: #0d2744;
            margin-bottom: 6px;
        }

        /* ---- Right column / Form ---- */
        .contact-right {
            background: #f8f9fb;
            border-radius: 8px;
            padding: 44px 36px;
        }
        .contact-right h3 {
            font-size: 22px;
            font-weight: 700;
            color: #0d2744;
            margin: 0 0 28px;
        }
        .contact-right .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .contact-right input,
        .contact-right textarea {
            width: 100%;
            background: #fff;
            border: 1.5px solid #e3e6ec;
            border-radius: 4px;
            padding: 13px 16px;
            font-size: 14px;
            color: #333;
            font-family: inherit;
            transition: border-color 0.25s, box-shadow 0.25s;
            margin-bottom: 16px;
            box-sizing: border-box;
        }
        .contact-right .form-row input { margin-bottom: 0; }
        .contact-right input:focus,
        .contact-right textarea:focus {
            outline: none;
            border-color: #009ba3;
            box-shadow: 0 0 0 3px rgba(0,155,163,0.12);
        }
        .contact-right input::placeholder,
        .contact-right textarea::placeholder { color: #9aa1ad; }
        .contact-right textarea {
            min-height: 130px;
            resize: vertical;
            margin-bottom: 22px;
        }
        .contact-right br { display: none; }
        .contact-right button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #009ba3;
            color: #fff;
            border: none;
            padding: 14px 34px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 2px;
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
        }
        .contact-right button:hover {
            background: #007d84;
            transform: translateY(-2px);
        }

        /* ============================================
           OFFICES SECTION
        ============================================ */
        .offices h2 {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            color: #0d2744;
            margin: 0 0 12px;
        }
        .offices > p {
            color: #667;
            font-size: 15px;
            margin: 0 0 40px;
        }
        .office-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .office-card {
            background: #fff;
            border: 1px solid #eef0f4;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(13,39,68,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .office-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(13,39,68,0.12);
        }
        .office-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 22px 22px 14px;
        }
        .office-header span {
            width: 38px; height: 38px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #0d2744, #009ba3);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
        }
        .office-header h4 {
            font-size: 15px;
            font-weight: 700;
            color: #0d2744;
            margin: 0;
            line-height: 1.4;
        }
        .office-card > p {
            font-size: 13px;
            color: #667;
            line-height: 1.6;
            margin: 0;
            padding: 0 22px 18px;
        }
        .office-card .map {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-top: 1px solid #eef0f4;
        }
        .office-card .map iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
            filter: grayscale(15%);
            transition: filter 0.3s;
        }
        .office-card:hover .map iframe { filter: grayscale(0%); }

        /* ---- Responsive ---- */
        @media (max-width: 991px) {
            .contact-section { grid-template-columns: 1fr; gap: 50px; }
            .office-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 767px) {
            .contact-right { padding: 30px 24px; }
            .contact-right .form-row { grid-template-columns: 1fr; }
            .office-grid { grid-template-columns: 1fr; }
        }
