/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0094d9;
    --primary-dark: #011835;
    --secondary-color: #00b4d8;
    --accent-color: #0094d9;
    --text-dark: #0a1628;
    --text-light: #5a6a7a;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e6ed;
    --success-color: #00b894;
    --gradient-1: linear-gradient(135deg, #0094d9 0%, #00b4d8 100%);
    --gradient-2: linear-gradient(135deg, #011835 0%, #022a52 100%);
    --shadow-sm: 0 1px 3px 0 rgba(1, 24, 53, 0.06);
    --shadow-md: 0 4px 12px -1px rgba(1, 24, 53, 0.08);
    --shadow-lg: 0 10px 25px -3px rgba(1, 24, 53, 0.1);
    --shadow-xl: 0 20px 40px -5px rgba(1, 24, 53, 0.12);

    /* New light theme palette */
    --new-primary: #0077B6;
    --new-primary-dark: #005A8C;
    --new-primary-light: #E8F4FD;
    --new-primary-lighter: #F0F7FC;
    --new-text-heading: #1B2A4A;
    --new-text-body: #4A5568;
    --new-text-muted: #718096;
    --new-bg-offwhite: #F8F9FB;
    --new-border: #E2E8F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Contact Bar */
.top-bar {
    background: #1B2A4A;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-bar-item a:hover {
    color: var(--primary-color);
}

.top-bar-item svg {
    opacity: 0.6;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    gap: 0;
    align-items: center;
    font-weight: 500;
}

.top-bar-right span + span::before {
    content: "\00B7";
    margin: 0 0.6rem;
    opacity: 0.5;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(1, 24, 53, 0.08);
    border-bottom-color: transparent;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo span {
    color: var(--text-dark);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0.85rem;
    display: block;
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--new-primary);
}

.btn-contact {
    background: var(--new-primary);
    color: white !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 0.88rem !important;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(0, 119, 182, 0.15);
}

.btn-contact:hover {
    background: var(--new-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 8px 30px rgba(1, 24, 53, 0.12);
    border-radius: 8px;
    min-width: 280px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 0.65rem 1.25rem;
    color: var(--text-dark);
    display: block;
    transition: all 0.2s ease;
    font-size: 0.87rem;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--new-primary-light);
    color: var(--new-primary);
    border-left-color: var(--new-primary);
    padding-left: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════
   HERO SECTION — Cinematic Full-Width
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Background Slideshow ─── */
.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    animation: heroKenBurns 20s ease-in-out infinite;
}

.hero-bg-slide.active {
    opacity: 1;
}

@keyframes heroKenBurns {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ─── Gradient Overlay ─── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 30, 60, 0.7) 0%, rgba(0, 50, 90, 0.55) 40%, rgba(0, 70, 120, 0.5) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
}

/* ─── Centered Content ─── */
.hero > .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 0 4rem;
}

/* ─── Badge ─── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 0.03em;
    animation: heroFadeDown 0.6s ease-out;
}

.hero-badge svg {
    color: #34d399;
    flex-shrink: 0;
}

@keyframes heroFadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Typography ─── */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff;
    animation: heroFadeUp 0.8s ease-out 0.15s both;
}

.hero h1 span {
    color: #4dd0e1;
}

/* Override gradient-text for this hero */
.hero .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #4dd0e1;
    background-clip: unset;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.15rem;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.75;
    max-width: 600px;
    animation: heroFadeUp 0.8s ease-out 0.3s both;
}

/* ─── Buttons ─── */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: heroFadeUp 0.8s ease-out 0.45s both;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-hero-primary {
    background: #ffffff;
    color: #0077B6;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: #f0f7fc;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ─── Stats Row (bottom of hero) ─── */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    animation: heroFadeUp 0.8s ease-out 0.6s both;
}

.hero-stat {
    text-align: center;
    padding: 0 2rem;
}

.hero-stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: block;
    margin-top: 0.3rem;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ─── Legacy — keep hidden ─── */
.hero-bg-shapes, .hero-shape, .hero-grid-pattern,
.hero-bg-image, .hero-bg-image img, .hero-bg-overlay,
.hero-shapes, .shape, .shape-1, .shape-2, .shape-3,
.hero-image, .hero-image-wrapper, .hero-card,
.hero-card-1, .hero-card-2, .hero-card-3,
.card-icon, .card-content, .floating,
.hero-illustration, .hero-svg, .hero-badge-dot,
.hero-features, .hero-feature,
.hero-trust, .hero-trust-avatars, .hero-avatar,
.hero-trust-text, .hero-trust-stars,
.hero-visual, .hero-image-container, .hero-slider,
.hero-slide, .hero-image-overlay,
.hero-glass-card, .hero-glass-icon,
.hero-logos, .hero-logos-label, .hero-logos-row,
.hero-stats-bar, .hero-stats-inner,
.hero-grid, .hero-content {
    display: none !important;
    animation: none !important;
}

.btn {
    padding: 0.85rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-block;
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--new-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--new-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--new-primary);
    border-color: var(--new-primary);
}

.btn-secondary:hover {
    background: var(--new-primary);
    border-color: var(--new-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--new-primary);
    border-color: var(--new-primary);
}

.btn-outline:hover {
    background: var(--new-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.25);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f4fd 100%);
    padding: 5rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.stats-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 148, 217, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 148, 217, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
}

.stat-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    opacity: 1;
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 148, 217, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

/* Impact Section (About Us) */
.impact-section {
    background: #ffffff;
    padding: 5rem 0;
}

.impact-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--new-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.impact-card {
    background: var(--new-primary);
    border-radius: 12px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.3);
}

.impact-card svg {
    color: #ffffff;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.impact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.impact-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
    line-height: 1;
    display: block;
    margin: 0;
}

.impact-card-sub {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.75;
    margin-top: 0.4rem;
}

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

    .impact-heading {
        font-size: 1.5rem;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .impact-card {
        padding: 1.5rem 1rem;
    }

    .impact-card .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .impact-card {
        padding: 1.25rem 0.75rem;
    }

    .impact-card svg {
        width: 28px;
        height: 28px;
    }

    .impact-card .stat-number {
        font-size: 1.75rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
    position: relative;
    display: inline-block;
    letter-spacing: -0.3px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--new-primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 7rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 148, 217, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: all 0.4s ease;
}

.about-image:hover .about-img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.about-content {
    max-width: 900px;
}

.about-content p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.about-content p:first-of-type {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Business Segments */
.biz-segments {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.biz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.biz-card {
    background: white;
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.biz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.biz-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.biz-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.biz-card:hover .biz-icon {
    transform: scale(1.1);
}

.biz-icon-blue {
    background: linear-gradient(135deg, #0094d9, #00b4d8);
    box-shadow: 0 4px 12px rgba(0, 148, 217, 0.25);
}

.biz-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.biz-icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.biz-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.biz-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    letter-spacing: -1px;
    transition: color 0.35s ease;
}

.biz-card:hover .biz-num {
    color: rgba(0, 0, 0, 0.08);
}

.biz-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.biz-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.biz-card li {
    padding: 0.35rem 0;
    padding-left: 1.4rem;
    position: relative;
    color: #64748b;
    line-height: 1.5;
    font-size: 0.85rem;
}

.biz-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
}

.biz-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.biz-card:hover .biz-card-accent {
    opacity: 1;
}

.biz-accent-blue { background: linear-gradient(90deg, #0094d9, #00b4d8); }
.biz-accent-orange { background: linear-gradient(90deg, #f59e0b, #f97316); }
.biz-accent-purple { background: linear-gradient(90deg, #8b5cf6, #a855f7); }
.biz-accent-green { background: linear-gradient(90deg, #10b981, #059669); }

/* Vision, Mission, Values */
.vmv {
    padding: 7rem 0;
    background: linear-gradient(135deg, #011835 0%, #011835 50%, #0094d9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vmv::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vmv::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vmv > .container {
    position: relative;
    z-index: 1;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.vmv-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vmv-card:hover::before {
    opacity: 1;
}

.vmv-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.vmv-card h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vmv-card p {
    line-height: 1.9;
    margin-bottom: 1.25rem;
    opacity: 0.97;
    font-size: 1.05rem;
}

.vmv-card ul {
    list-style: none;
}

.vmv-card li {
    padding: 0.65rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.vmv-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: #5ec4e8;
}

.tagline {
    font-style: italic;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid #5ec4e8;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem 3rem 3.5rem;
    border-radius: 24px;
    color: var(--text-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-section h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 800;
}

.values-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 100%;
}

.value-item {
    text-align: center;
    padding: 1.5rem 1rem 1.25rem;
    border-radius: 16px;
    background: white;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 148, 217, 0.12);
}

/* SVG icon circles */
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    transition: all 0.35s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    border-radius: 16px;
}

/* Individual icon colors */
.vi-growth {
    background: linear-gradient(135deg, #0094d9, #00b4d8);
    box-shadow: 0 4px 12px rgba(0, 148, 217, 0.3);
}

.vi-ownership {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.vi-authenticity {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.vi-collaboration {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.vi-caring {
    background: linear-gradient(135deg, #ef4444, #f43f5e);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.value-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    font-weight: 400;
    margin: 0;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: #f7f9fb;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2.25rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(1, 24, 53, 0.04);
    transition: all 0.35s ease;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    border: 1px solid #ebeef2;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.35s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 148, 217, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    border-radius: 50%;
}

.service-card:hover::after {
    width: 400px;
    height: 400px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(1, 24, 53, 0.08);
    border-color: rgba(0, 148, 217, 0.15);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.98rem;
    position: relative;
    z-index: 1;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
}

.learn-more::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more {
    gap: 0.6rem;
}

.service-card:hover .learn-more::after {
    transform: translateX(4px);
}

/* CTA Section */
.cta {
    background: var(--new-primary-lighter);
    color: var(--new-text-heading);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--new-border);
    border-bottom: 1px solid var(--new-border);
}

.cta::before {
    display: none;
}

.cta::after {
    display: none;
}

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

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--new-text-heading);
}

.cta-content p {
    font-size: 1rem;
    color: var(--new-text-body);
    font-weight: 400;
    margin-bottom: 0;
}

.cta-content .btn-primary {
    background: var(--new-primary);
    color: #fff;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-content .btn-primary svg {
    transition: transform 0.25s ease;
}

.cta-content .btn-primary:hover {
    background: var(--new-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
}

.cta-content .btn-primary:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-content h2 {
        font-size: 1.6rem;
    }
}

/* Footer */
.footer {
    background: var(--new-bg-offwhite);
    color: var(--new-text-body);
    padding: 4rem 0 0;
    border-top: 1px solid var(--new-border);
}

/* Footer with video background */
.footer.footer-video {
    position: relative;
    overflow: hidden;
    background: #0a1628;
    border-top: none;
}

.footer-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.65) 50%, rgba(10, 22, 40, 0.75) 100%);
}

.footer.footer-video > .container {
    position: relative;
    z-index: 2;
}

/* White text overrides for video footer */
.footer.footer-video .footer-col h4 {
    color: #ffffff;
}

.footer.footer-video .footer-col a,
.footer.footer-video .footer-col span {
    color: rgba(255, 255, 255, 0.6);
}

.footer.footer-video .footer-col a:hover {
    color: #ffffff;
}

.footer.footer-video .footer-contact-list svg {
    color: rgba(255, 255, 255, 0.5);
}

.footer.footer-video .footer-divider {
    background: rgba(255, 255, 255, 0.1);
}

.footer.footer-video .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer.footer-video .footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
}

.footer.footer-video .footer-bottom-links span {
    color: rgba(255, 255, 255, 0.45);
}

.footer.footer-video .footer-bottom-links span:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.2);
}

/* Top: brand + newsletter */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding-bottom: 2.5rem;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: none;
}

.footer-brand > p {
    color: var(--new-text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--new-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--new-primary);
    border-color: var(--new-primary);
    color: white;
    transform: translateY(-2px);
}

/* Newsletter */
.footer-newsletter {
    max-width: 340px;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--new-text-heading);
}

.footer-newsletter > p {
    font-size: 0.85rem;
    color: var(--new-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--new-border);
    background: #ffffff;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--new-text-heading);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--new-text-muted);
}

.newsletter-form button {
    padding: 0.75rem 1.1rem;
    background: var(--new-primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
}

.newsletter-form button:hover {
    background: var(--new-primary-dark);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: var(--new-border);
}

/* Link grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 2.5rem;
    padding: 1rem 0 2.5rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: var(--new-text-heading);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col:nth-child(2) ul {
    columns: 2;
    column-gap: 1.5rem;
}

.footer-col:nth-child(2) ul li {
    break-inside: avoid;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a,
.footer-col span {
    color: var(--new-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.88rem;
}

.footer-col a:hover {
    color: var(--new-primary);
    padding-left: 4px;
}

/* Contact list with icons */
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    color: var(--new-text-muted);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--new-border);
}

.footer-bottom p {
    color: var(--new-text-muted);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links span {
    color: var(--new-text-muted);
    font-size: 0.82rem;
    position: relative;
}

.footer-bottom-links span:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--new-border);
}

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-newsletter {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Service Detail Page Styles */
.service-hero {
    background: linear-gradient(135deg, #011835 0%, #01264d 50%, #0094d9 100%);
    color: white;
    padding: 60px 0 50px;
    text-align: center;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    padding: 4rem 0;
}

.service-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--text-dark);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-steps {
    margin: 3rem 0;
}

.process-step {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
}

.checkmarks li {
    list-style: none;
    padding-left: 2rem;
    position: relative;
}

.checkmarks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Trust Section / Client Logos */
.trust-section {
    padding: 2rem 0 2rem;
    background: #f8f5f1;
    position: relative;
    overflow: hidden;
}

.trust-label {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--new-primary);
    margin-bottom: 0.75rem;
}

.trust-heading {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--new-text-heading);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.trust-heading span {
    color: var(--new-primary);
}

.trust-heading-line {
    width: 50px;
    height: 3px;
    background: var(--new-primary);
    border-radius: 2px;
    margin: 0 auto 3rem;
}

.logos-marquee-wrapper {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.logos-marquee {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
    will-change: transform;
}

.logos-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #ebeef2;
    min-width: 180px;
    min-height: 90px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.logo-item:hover {
    box-shadow: 0 4px 16px rgba(1, 24, 53, 0.06);
    border-color: rgba(0, 148, 217, 0.15);
    background: #ffffff;
}

.client-logo {
    max-width: 140px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

/* Size variants for different logo aspect ratios */
.client-logo.logo-wide {
    max-width: 160px;
    max-height: 60px;
}

.client-logo.logo-extrawide {
    max-width: 200px;
    max-height: 55px;
}

.client-logo.logo-tall {
    max-width: 100px;
    max-height: 70px;
}

@media (max-width: 768px) {
    .trust-heading {
        font-size: 1.75rem;
    }

    .logos-marquee {
        gap: 1.25rem;
        animation-duration: 25s;
    }

    .logo-item {
        padding: 1.25rem 1.75rem;
        min-width: 150px;
        min-height: 75px;
    }

    .client-logo {
        max-width: 110px;
        max-height: 40px;
    }

    .client-logo.logo-wide {
        max-width: 120px;
        max-height: 45px;
    }

    .client-logo.logo-extrawide {
        max-width: 150px;
        max-height: 40px;
    }

    .client-logo.logo-tall {
        max-width: 75px;
        max-height: 55px;
    }

    .logos-marquee-wrapper::before,
    .logos-marquee-wrapper::after {
        width: 40px;
    }
}

/* Larger trust logos (About Us page) */
.trust-section-lg .logo-item {
    padding: 1.75rem 2.5rem;
    min-width: 220px;
    min-height: 110px;
}

.trust-section-lg .client-logo {
    max-width: 180px;
    max-height: 70px;
}

.trust-section-lg .client-logo.logo-wide {
    max-width: 200px;
    max-height: 80px;
}

.trust-section-lg .client-logo.logo-extrawide {
    max-width: 250px;
    max-height: 70px;
}

.trust-section-lg .client-logo.logo-tall {
    max-width: 130px;
    max-height: 90px;
}

@media (max-width: 768px) {
    .trust-section-lg .logo-item {
        padding: 1.5rem 2rem;
        min-width: 180px;
        min-height: 90px;
    }

    .trust-section-lg .client-logo {
        max-width: 140px;
        max-height: 55px;
    }
}

/* Reviews / Testimonials Section */
/* Testimonials — Center-Focus Carousel */
.reviews-section {
    padding: 5rem 0 3.5rem;
    background: #f7f9fb;
    overflow: hidden;
}

.reviews-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reviews-heading h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--new-text-heading);
    margin-bottom: 0.75rem;
}

.reviews-heading h2 span {
    color: var(--new-primary);
}

.reviews-sub {
    color: var(--new-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Carousel wrapper */
.reviews-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Arrows */
.rc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--new-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--new-text-heading);
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.rc-arrow:hover {
    background: var(--new-primary);
    border-color: var(--new-primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.3);
}

.rc-prev { left: 0; }
.rc-next { right: 0; }

/* Carousel track */
.reviews-carousel {
    position: relative;
    width: 100%;
    height: 380px;
    perspective: 1000px;
}

/* Card */
.rc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 340px;
    top: 50%;
    left: 50%;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.6s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
    pointer-events: none;
}

/* Left card */
.rc-card.rc-pos-left {
    opacity: 1;
    transform: translate(calc(-50% - 370px), -50%) scale(0.92);
    pointer-events: auto;
    z-index: 2;
}

/* Center card — bigger */
.rc-card.rc-pos-center {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 119, 182, 0.14);
    border-color: rgba(0, 119, 182, 0.1);
    pointer-events: auto;
    z-index: 5;
}

/* Right card */
.rc-card.rc-pos-right {
    opacity: 1;
    transform: translate(calc(-50% + 370px), -50%) scale(0.92);
    pointer-events: auto;
    z-index: 2;
}

/* Hidden cards */
.rc-card.rc-pos-hidden-left {
    opacity: 0;
    transform: translate(calc(-50% - 600px), -50%) scale(0.8);
    z-index: 0;
}

.rc-card.rc-pos-hidden-right {
    opacity: 0;
    transform: translate(calc(-50% + 600px), -50%) scale(0.8);
    z-index: 0;
}

/* Quote icon */
.rc-quote-icon {
    color: var(--new-primary);
    margin-bottom: 0.5rem;
}

/* Stars */
.rc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.rc-stars span {
    color: #f59e0b;
    font-size: 0.95rem;
}

/* Text */
.rc-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--new-text-body);
    margin: 0;
}

/* Divider */
.rc-divider {
    width: 40px;
    height: 2px;
    background: var(--new-border);
    margin: 1.25rem 0;
}

/* Author */
.rc-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rc-initial {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.ri-blue { background: #0077B6; }
.ri-pink { background: #ec4899; }
.ri-teal { background: #0097a7; }
.ri-orange { background: #f59e0b; }
.ri-navy { background: #1B2A4A; }

.rc-author h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--new-text-heading);
    margin: 0;
}

.rc-author p {
    font-size: 0.78rem;
    color: var(--new-text-muted);
    margin: 0.15rem 0 0;
    font-weight: 500;
}

/* Dots */
.rc-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.rc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d5dd;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.rc-dot.active {
    background: var(--new-primary);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .rc-card {
        width: 290px;
    }

    .rc-card.rc-pos-left {
        transform: translate(calc(-50% - 310px), -50%) scale(0.92);
    }

    .rc-card.rc-pos-right {
        transform: translate(calc(-50% + 310px), -50%) scale(0.92);
    }

    .reviews-carousel-wrap {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3.5rem 0 2.5rem;
    }

    .reviews-heading h2 {
        font-size: 1.75rem;
    }

    .reviews-carousel {
        height: 340px;
    }

    .reviews-carousel-wrap {
        padding: 0 40px;
    }

    .rc-card {
        width: 280px;
        padding: 1.5rem 1.25rem;
    }

    .rc-card.rc-pos-left,
    .rc-card.rc-pos-right {
        opacity: 0;
        pointer-events: none;
    }

    .rc-card.rc-pos-center {
        transform: translate(-50%, -50%) scale(1);
    }

    .rc-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .rc-card {
        width: calc(100vw - 120px);
    }

    .reviews-carousel {
        height: 380px;
    }
}

/* Industries Section */
.industries {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.25rem;
    margin-bottom: 4rem;
}

.industry-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 148, 217, 0.08);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 148, 217, 0.03) 0%, rgba(0, 180, 216, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 148, 217, 0.12);
    border-color: var(--primary-color);
    background: #ffffff;
}

.industry-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-icon {
    transform: scale(1.15) translateY(-5px);
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.industry-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.industries-highlight {
    background: linear-gradient(135deg, #0094d9 0%, #0077b6 100%);
    color: white;
    padding: 3rem 4rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 148, 217, 0.2);
    position: relative;
    overflow: hidden;
}

.industries-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.industries-highlight p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Contact Form Section */
.contact-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 148, 217, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8ecf1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 148, 217, 0.08);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form .btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: 6px;
    background: #0094d9;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    background: #007bb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 148, 217, 0.3);
}

/* Popup Inquiry Form */
/* ── Popup Inquiry Form ── */
.popup-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.popup-overlay.active {
    transform: translateX(0);
    pointer-events: auto;
}

.popup-form {
    background: #fff;
    border-radius: 16px 0 0 16px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    position: relative;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

.popup-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Header with solid blue */
.popup-header {
    background: var(--new-primary);
    padding: 1.75rem 2rem 1.5rem;
    border-radius: 16px 0 0 0;
    text-align: center;
}

.popup-header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: #fff;
}

.popup-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
}

.popup-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* Form body */
.popup-form form {
    padding: 1.5rem 2rem 2rem;
}

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.popup-field {
    margin-bottom: 0.85rem !important;
}

.popup-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.popup-field label span {
    color: #ef4444;
}

.popup-input-wrap {
    position: relative;
}

.popup-input-wrap svg {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.popup-input-wrap input,
.popup-input-wrap select {
    width: 100%;
    padding: 0.7rem 0.85rem 0.7rem 2.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #022a52;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.popup-input-wrap input:focus,
.popup-input-wrap select:focus {
    outline: none;
    border-color: var(--new-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
    background: #fff;
}

.popup-input-wrap input::placeholder {
    color: #94a3b8;
}

.popup-field textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #022a52;
    background: #f8fafc;
    transition: all 0.2s ease;
    resize: vertical;
    min-height: 70px;
}

.popup-field textarea:focus {
    outline: none;
    border-color: var(--new-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
    background: #fff;
}

.popup-field textarea::placeholder {
    color: #94a3b8;
}

.popup-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 0.25rem;
    background: var(--new-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.popup-submit:hover {
    background: var(--new-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 119, 182, 0.35);
}

.popup-privacy {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-top: 0.75rem;
}

@media (max-width: 600px) {
    .popup-overlay {
        width: 100%;
    }
    .popup-form {
        border-radius: 0;
    }
    .popup-header {
        padding: 1.25rem 1.25rem 1rem;
        border-radius: 0;
    }
    .popup-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .popup-form form {
        padding: 1.25rem;
    }
}

/* Floating Inquiry Button */
.floating-inquiry-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--new-primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-inquiry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 119, 182, 0.4);
    background: var(--new-primary-dark);
}

.popup-overlay.active ~ .floating-inquiry-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.floating-inquiry-btn svg {
    width: 20px;
    height: 20px;
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #011835 0%, #01264d 50%, #0094d9 100%);
    color: white;
    padding: 60px 0 50px;
    text-align: center;
}

.careers-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.careers-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.why-join {
    padding: 3rem 0;
    background: var(--bg-white);
}

.why-join-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.why-join-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.why-join-header p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

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

.benefit-ico {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.benefit-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.job-openings {
    padding: 3rem 0;
    background: var(--bg-light);
}

.job-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
}

.filter-input {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

select.filter-input {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.filter-input::placeholder {
    color: #9ca3af;
}

.loc-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
}

.loc-wrap .filter-input {
    width: 100%;
}

.loc-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 4px;
    padding: 0.25rem 0;
    list-style: none;
    max-height: 180px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.loc-dropdown.active {
    display: block;
}

.loc-dropdown li {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #1e293b;
    cursor: pointer;
    transition: background 0.15s;
}

.loc-dropdown li:hover {
    background: #f1f5f9;
}

.filter-btn {
    flex-shrink: 0;
    padding: 0.7rem 1.75rem;
    background: #0ea5e9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #0284c7;
}

.job-listings {
    display: grid;
    gap: 2rem;
}

.job-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.job-card:hover {
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-meta span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.job-location {
    background: rgba(0, 148, 217, 0.1) !important;
    color: var(--primary-color) !important;
}

.job-posted {
    font-size: 0.85rem;
    color: var(--text-light);
}

.job-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.job-skills span {
    padding: 0.4rem 0.9rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.btn-apply {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border: 1px dashed var(--border-color);
    border-radius: 10px;
    margin-top: 1.5rem;
}

.no-results svg {
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.no-results p {
    color: var(--text-light);
    font-size: 0.88rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.application-form {
    margin-top: 1.5rem;
}

.application-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

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

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-center {
        padding: 4rem 0 3rem;
    }

    .hero-stats-row {
        padding: 1rem 1.5rem;
    }

    .hero-stat {
        padding: 0 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 62px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-xl);
        padding: 1.5rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.75rem 0;
    }

    .nav-menu a {
        padding: 0.5rem 1.5rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        display: none;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        border-left: none;
    }

    .hero {
        min-height: 480px;
    }

    .hero-center {
        padding: 3rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 br {
        display: none;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.73rem;
        padding: 0.4rem 1rem;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 12px;
    }

    .hero-stat {
        padding: 0 1rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-number {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .biz-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .values-section {
        padding: 2rem 1.5rem 2.5rem;
    }

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

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

    .industries-highlight {
        padding: 1.5rem;
    }

    .floating-inquiry-btn span {
        display: none;
    }

    .floating-inquiry-btn {
        padding: 1rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

}


@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .hero-center {
        padding: 2.5rem 0 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .hero-stat {
        padding: 0.25rem 0;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-inquiry-btn {
        bottom: 20px;
        right: 20px;
    }

    .careers-hero h1 {
        font-size: 2rem;
    }

    .careers-hero p {
        font-size: 1.1rem;
    }

    .job-filters {
        flex-wrap: wrap;
    }

    .filter-input {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .job-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-apply {
        width: 100%;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

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

/* CTA Section (used on inner pages) */
.cta-section {
    background: linear-gradient(135deg, #011835 0%, #0094d9 50%, #00b4d8 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-section .btn-primary {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
}

.contact-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Blog Listing Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 148, 217, 0.15);
    border-color: var(--primary-color);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.75rem;
}

.blog-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-read-time,
.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.blog-tag {
    padding: 0.3rem 0.75rem;
    background: var(--bg-light);
    color: var(--text-light);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.blog-read-more::after {
    content: '\2192';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 0.75rem;
}

.blog-card:hover .blog-read-more::after {
    transform: translateX(4px);
}

/* Blog Post Page */
.blog-post-content {
    padding: 4rem 0;
    background: var(--bg-light);
}

.blog-post-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.blog-post-header {
    padding: 2.5rem 2.5rem 0;
}

.blog-post-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.blog-post-image {
    margin: 0 2.5rem 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-body {
    padding: 0 2.5rem 2.5rem;
}

.blog-post-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.blog-post-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 0.75rem;
}

.blog-post-body p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.blog-post-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.blog-post-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 148, 217, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-body .blog-tags {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
}

.blog-author-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--bg-light);
}

.blog-author-box img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-box .author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
}

.blog-author-box .author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.blog-post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--border-color);
    gap: 1rem;
}

.blog-post-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-post-nav a:hover {
    color: var(--primary-dark);
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-wrapper {
        border-radius: 0;
    }

    .blog-post-header {
        padding: 1.5rem 1.5rem 0;
    }

    .blog-post-title {
        font-size: 1.75rem;
    }

    .blog-post-image {
        margin: 0 1.5rem 1.5rem;
    }

    .blog-post-body {
        padding: 0 1.5rem 1.5rem;
    }

    .blog-author-box {
        padding: 1.5rem;
    }

    .blog-post-nav {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .blog-card-image {
        height: 180px;
    }

    .blog-card-body {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.15rem;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-post-body h2 {
        font-size: 1.4rem;
    }
}

/* FAQs Section */
/* FAQs — Two-Column Layout */
.faqs-section {
    padding: 5.5rem 0;
    background: #ffffff;
}

.faq-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Left column */
.faq-left {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
}

.faq-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--new-primary);
    margin: 0 0 0.75rem;
}

.faq-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--new-text-heading);
    line-height: 1.2;
    margin: 0 0 1.25rem;
}

.faq-left h2 span {
    color: var(--new-primary);
}

.faq-desc {
    color: var(--new-text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--new-primary);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 119, 182, 0.2);
}

.faq-contact-btn:hover {
    background: var(--new-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.3);
}

/* Right column */
.faq-right {
    flex: 1;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 1rem;
    border: 1px solid #ebeef2;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 119, 182, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: rgba(0, 119, 182, 0.2);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.75rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafbfc;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--new-text-heading);
    margin: 0;
    padding-right: 1rem;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--new-primary);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--new-primary);
    font-weight: 300;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--new-primary-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--new-primary);
    color: #ffffff;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
    color: var(--new-text-body);
    line-height: 1.8;
    margin: 0;
    font-size: 0.92rem;
}

/* Responsive FAQs */
@media (max-width: 1024px) {
    .faq-layout {
        gap: 2.5rem;
    }

    .faq-left {
        flex: 0 0 260px;
    }

    .faq-left h2 {
        font-size: 2rem;
    }
}

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

    .faq-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .faq-left {
        flex: none;
        position: static;
        text-align: center;
    }

    .faq-left h2 {
        font-size: 1.85rem;
    }

    .faq-left h2 br {
        display: none;
    }

    .faq-question {
        padding: 1.15rem 1.25rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-page-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-page-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 148, 217, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
    align-items: start;
}


.contact-info-column {
    background: linear-gradient(135deg, #011835 0%, #0094d9 50%, #00b4d8 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-info-column::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-column h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.contact-info-column > p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.contact-info-item .info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.contact-social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-column {
        padding: 2rem;
    }
}

/* ========================================
   Office Locations
   ======================================== */
.office-locations {
    padding: 7rem 0;
    background: var(--bg-white);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.office-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 148, 217, 0.12);
    border-color: var(--primary-color);
}

.office-card .office-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 148, 217, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.office-card:hover .office-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 148, 217, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
}

.office-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.office-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.office-card .office-phone {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.map-container {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border-radius: 24px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 148, 217, 0.1);
    position: relative;
    overflow: hidden;
}

.map-container .map-placeholder {
    text-align: center;
    color: var(--text-light);
}

.map-container .map-placeholder svg {
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.map-container .map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   Intro Section (used on services/industries)
   ======================================== */
/* ===== Service Detail Pages (sd-) ===== */
.sd-hero {
    background: #011835;
    color: white;
    padding: 7rem 0 4.5rem;
    text-align: center;
}

.sd-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.sd-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.sd-hero p {
    font-size: 1.15rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Industries Page */
.ind-section {
    padding: 4.5rem 0 5rem;
    background: #ffffff;
}

/* Featured 2-col row */
.ind-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.ind-fcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ind-fcard:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ind-fcard-img {
    height: 220px;
    overflow: hidden;
}

.ind-fcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ind-fcard:hover .ind-fcard-img img {
    transform: scale(1.05);
}

.ind-fcard-body {
    padding: 1.75rem 2rem 2rem;
}

.ind-fcard-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 0.75rem;
}

.ind-fcard-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
    margin: 0;
}

/* Wide horizontal card */
.ind-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    transition: all 0.3s ease;
}

.ind-wide:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ind-wide-img {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.ind-wide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ind-wide:hover .ind-wide-img img {
    transform: scale(1.05);
}

.ind-wide-body {
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ind-wide-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #011835;
    margin-bottom: 1rem;
}

.ind-wide-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.ind-wide-reverse {
    direction: rtl;
}

.ind-wide-reverse > * {
    direction: ltr;
}

/* 3-column row */
.ind-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.ind-tcard {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ind-tcard:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.ind-tcard-img {
    height: 180px;
    overflow: hidden;
}

.ind-tcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ind-tcard:hover .ind-tcard-img img {
    transform: scale(1.05);
}

.ind-tcard-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

.ind-tcard-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 0.6rem;
}

.ind-tcard-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Closing text */
.ind-closing {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.ind-closing p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
}

/* Industries responsive */
@media (max-width: 768px) {
    .ind-section {
        padding: 3rem 0 3.5rem;
    }

    .ind-featured {
        grid-template-columns: 1fr;
    }

    .ind-wide {
        grid-template-columns: 1fr;
    }

    .ind-wide-img {
        min-height: 200px;
    }

    .ind-wide-body {
        padding: 1.75rem;
    }

    .ind-wide-reverse {
        direction: ltr;
    }

    .ind-trio {
        grid-template-columns: 1fr;
    }

    .ind-fcard-img {
        height: 180px;
    }
}

/* CEO / Leadership Page */
.ceo-hero {
    background: linear-gradient(135deg, #011835 0%, #01264d 50%, #0094d9 100%);
    padding: 60px 0 50px;
    text-align: center;
}

.ceo-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.ceo-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ceo-section {
    padding: 5rem 0;
    background: #ffffff;
}

.ceo-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sidebar */
.ceo-sidebar {
    position: sticky;
    top: 100px;
}

.ceo-photo {
    margin-bottom: 1.5rem;
}

.ceo-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.ceo-photo-placeholder svg {
    color: #94a3b8;
}

.ceo-info {
    margin-bottom: 2rem;
}

.ceo-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #011835;
    margin-bottom: 0.35rem;
}

.ceo-info span {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.ceo-company {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.ceo-quote-side {
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
}

.ceo-quote-side blockquote {
    font-size: 0.88rem;
    font-style: italic;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Letter */
.ceo-letter {
    max-width: 720px;
}

.ceo-letter-opening {
    margin-bottom: 2.5rem;
}

.ceo-letter-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.ceo-letter p {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #374151;
    margin-bottom: 1.5rem;
}

.ceo-thankyou {
    margin-top: 2rem;
    font-weight: 600;
    color: #022a52 !important;
}

.ceo-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.ceo-regards {
    font-style: italic;
    color: #64748b !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

.ceo-signature h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #011835;
    margin-bottom: 0.25rem;
}

.ceo-signature p {
    font-size: 0.95rem !important;
    color: #64748b !important;
    margin-bottom: 0.15rem !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .ceo-hero h1 {
        font-size: 1.75rem;
    }

    .ceo-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ceo-sidebar {
        position: static;
        text-align: center;
    }

    .ceo-photo-placeholder {
        width: 180px;
        margin: 0 auto;
    }

    .ceo-quote-side {
        text-align: left;
    }

    .ceo-section {
        padding: 3rem 0;
    }
}

/* Single Content Layout */
.sd-single-content {
    padding: 4.5rem 0 5rem;
    background: #ffffff;
}

.sd-sc-block {
    max-width: 900px;
    margin: 0 auto;
}

.sd-sc-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 1rem;
}

.sd-sc-block p:last-child {
    margin-bottom: 0;
}

.sd-sc-lead {
    font-size: 1.2rem !important;
    color: #022a52 !important;
    font-weight: 500;
    line-height: 1.8 !important;
}

.sd-sc-block h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #011835;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.sd-sc-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #022a52;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}

.sd-sc-block h3:first-child {
    margin-top: 0;
}

.sd-sc-block-title-center {
    text-align: center;
    margin-bottom: 2rem !important;
}

.sd-sc-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    margin: 3rem auto;
    max-width: 900px;
}

.sd-sc-block .sd-steps {
    margin-top: 0.5rem;
}

.sd-sc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sd-sc-list li {
    font-size: 1.05rem;
    color: #334155;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.sd-sc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
}

.sd-sc-block .sd-ideal-grid {
    max-width: none;
}

@media (max-width: 768px) {
    .sd-single-content {
        padding: 3rem 0 3.5rem;
    }

    .sd-sc-block h2 {
        font-size: 1.35rem;
    }

    .sd-sc-lead {
        font-size: 1.08rem !important;
    }

    .sd-sc-divider {
        margin: 2.25rem auto;
    }
}

/* Intro Visual Layout */
.sd-intro {
    padding: 5rem 0;
    background: #ffffff;
}

.sd-intro-visual,
.sd-content-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sd-content-reverse {
    direction: rtl;
}

.sd-content-reverse > * {
    direction: ltr;
}

.sd-intro-img {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.sd-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sd-intro-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.sd-intro-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #011835;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.sd-intro-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 1rem;
}

.sd-intro-text p:last-child {
    margin-bottom: 0;
}

/* Quote Strip */
.sd-quote-strip {
    padding: 3rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.sd-quote-strip blockquote {
    margin: 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sd-quote-strip blockquote p {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.6;
    color: #011835;
    font-style: italic;
}

/* Second Content Block */
.sd-content-block {
    padding: 5rem 0;
    background: #ffffff;
}

/* Section Title */
.sd-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #011835;
    margin-bottom: 2.5rem;
    letter-spacing: -0.3px;
}

/* Methodology Steps */
.sd-method {
    padding: 4.5rem 0;
    background: #fafbfc;
}

.sd-steps {
    display: flex;
    flex-direction: column;
}

.sd-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.sd-step:first-child {
    padding-top: 0;
}

.sd-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sd-step-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: #cbd5e1;
    min-width: 2rem;
    padding-top: 0.2rem;
    font-variant-numeric: tabular-nums;
}

.sd-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 0.5rem;
}

.sd-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Two Column Cards */
.sd-columns {
    padding: 4.5rem 0;
    background: #ffffff;
}

.sd-cols-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.sd-col-card {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
}

.sd-col-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 1.5rem;
}

.sd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-list li {
    padding: 0.75rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 1rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

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

.sd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
}

.sd-col-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748b;
    font-style: italic;
}

.sd-col-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #64748b;
    margin: 0;
}

/* Industry Tags */
.sd-industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.sd-tag {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
}

.sd-tag:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

/* Ideal For */
.sd-ideal {
    padding: 4.5rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.sd-ideal .sd-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.sd-ideal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sd-ideal-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sd-ideal-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.sd-ideal-card svg {
    color: #64748b;
    margin-bottom: 1.25rem;
}

.sd-ideal-card:hover svg {
    color: var(--primary-color);
}

.sd-ideal-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    margin: 0;
}

/* Service Detail Responsive */
@media (max-width: 768px) {
    .sd-hero h1 {
        font-size: 2rem;
    }

    .sd-intro-visual,
    .sd-content-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sd-content-reverse {
        direction: ltr;
    }

    .sd-intro-text h2 {
        font-size: 1.5rem;
    }

    .sd-quote-strip blockquote p {
        font-size: 1.1rem;
    }

    .sd-cols-grid {
        grid-template-columns: 1fr;
    }

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

    .sd-step {
        gap: 1.25rem;
    }
}

.intro-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.intro-section .intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* ===== Services Page Redesign ===== */
.sv-hero {
    background: #011835;
    color: white;
    padding: 7rem 0 4.5rem;
    text-align: center;
}

.sv-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.sv-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.sv-hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Stats Strip */
.sv-stats {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.sv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.sv-stat {
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sv-stat:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

.sv-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #011835;
    letter-spacing: -1px;
}

.sv-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Services List */
.sv-services {
    padding: 2rem 0 4rem;
    background: #fafbfc;
}

.sv-list {
    display: flex;
    flex-direction: column;
}

.sv-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 2.25rem 2rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.sv-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.sv-item:hover {
    background: #ffffff;
    padding-left: 2.75rem;
}

.sv-num {
    font-size: 1rem;
    font-weight: 700;
    color: #cbd5e1;
    font-variant-numeric: tabular-nums;
    min-width: 2rem;
    flex-shrink: 0;
}

.sv-item:hover .sv-num {
    color: var(--primary-color);
}

.sv-item-body {
    flex: 1;
}

.sv-item-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.sv-item:hover .sv-item-body h3 {
    color: var(--primary-color);
}

.sv-item-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.sv-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.sv-item:hover .sv-arrow {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .sv-hero h1 {
        font-size: 2rem;
    }

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

    .sv-stat:nth-child(1),
    .sv-stat:nth-child(2) {
        border-bottom: 1px solid #e5e7eb;
    }

    .sv-stat:nth-child(2) {
        border-right: none;
    }

    .sv-item {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.75rem 1.25rem;
    }

    .sv-item:hover {
        padding-left: 1.5rem;
    }

    .sv-num {
        font-size: 0.85rem;
    }

    .sv-arrow {
        display: none;
    }

    .sv-item-body h3 {
        font-size: 1.1rem;
    }
}

/* Stats Row (used on industries page) */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, #011835 0%, #0094d9 100%);
    border-radius: 24px;
    margin: 0 auto 4rem;
    max-width: 900px;
}

.stats-row .stat-box {
    text-align: center;
    color: white;
}

.stats-row .stat-box h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.stats-row .stat-box p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ===== Job Detail Page ===== */
.jd-hero {
    background: linear-gradient(135deg, #011835 0%, #01264d 50%, #0094d9 100%);
    color: white;
    padding: 60px 0 50px;
}

.jd-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.jd-back:hover {
    color: rgba(255, 255, 255, 0.9);
}

.jd-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.jd-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.jd-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.jd-meta-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

/* Job Detail Content */
.jd-content {
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.jd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
    align-items: start;
}

/* Main Content */
.jd-main {
    min-width: 0;
}

.jd-intro {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.jd-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
}

.jd-section {
    margin-bottom: 3rem;
}

.jd-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.jd-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Responsibility Blocks */
.jd-responsibility {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.jd-responsibility:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.jd-resp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.jd-resp-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: #e8f6fc;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.jd-resp-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #022a52;
}

/* Job List */
.jd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-list li {
    position: relative;
    padding: 0.6rem 0 0.6rem 1.75rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
}

.jd-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
}

/* Sidebar */
.jd-sidebar {
    position: sticky;
    top: 100px;
}

.jd-sidebar-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 1.25rem;
}

.jd-sidebar-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #011835;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Overview List */
.jd-overview-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.jd-overview-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.jd-overview-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.jd-overview-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.jd-ov-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.jd-ov-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #022a52;
}

/* Skills Tags */
.jd-skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.jd-skills-tags span {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s ease;
}

.jd-skills-tags span:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #e8f6fc;
}

/* Apply Button */
.jd-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 148, 217, 0.25);
}

.jd-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 148, 217, 0.35);
}

/* Job Detail Responsive */
@media (max-width: 968px) {
    .jd-layout {
        grid-template-columns: 1fr;
    }

    .jd-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .jd-hero {
        padding: 6rem 0 2.5rem;
    }

    .jd-hero h1 {
        font-size: 2rem;
    }

    .jd-meta {
        gap: 0.75rem;
    }

    .jd-meta-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .jd-content {
        padding: 2.5rem 0 3rem;
    }

    .jd-section h2 {
        font-size: 1.3rem;
    }

    .jd-resp-header {
        gap: 0.75rem;
    }

    .jd-resp-num {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .jd-resp-header h3 {
        font-size: 1.05rem;
    }
}

/* ========================================
   About Us Page - Complete Redesign
   ======================================== */

/* -- Shared Elements -- */
.about-label {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--new-primary);
    margin-bottom: 0.75rem;
}

.about-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--new-text-heading);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

/* -- Hero -- */
.about-hero {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #011835 0%, #01264d 50%, #0094d9 100%);
    text-align: center;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.about-breadcrumb a:hover {
    color: #fff;
}

.about-breadcrumb svg {
    color: rgba(255, 255, 255, 0.4);
}

.about-breadcrumb > span {
    color: rgba(255, 255, 255, 0.9);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* -- Our Story -- */
.about-story {
    padding: 5rem 0;
    background: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-story-left .about-label {
    margin-bottom: 0.5rem;
}

.about-story-left .about-heading {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--new-text-heading);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-story-left > p {
    color: var(--new-text-body);
    line-height: 1.8;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.about-story-image {
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 5rem;
    align-self: start;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    min-height: 400px;
    max-height: 560px;
}

/* Belief cards under story */
.about-beliefs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-belief-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--new-bg-offwhite);
    border: 1px solid var(--new-border);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.about-belief-card:hover {
    border-color: var(--new-primary);
}

.about-belief-icon {
    width: 40px;
    height: 40px;
    background: var(--new-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-primary);
    flex-shrink: 0;
}

.about-belief-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--new-text-heading);
    margin-bottom: 0.25rem;
}

.about-belief-card p {
    font-size: 0.85rem;
    color: var(--new-text-body);
    line-height: 1.6;
    font-style: italic;
}

/* -- Vision & Mission -- */
.about-vm {
    padding: 5rem 0;
    background: var(--new-bg-offwhite);
}

.about-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-vm-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    padding: 1.75rem 2rem 2rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease;
}

.about-vm-card:hover {
    border-color: var(--new-primary);
}

.about-vm-icon {
    width: 40px;
    height: 40px;
    background: var(--new-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-primary);
    margin-bottom: 1.25rem;
}

.about-vm-icon svg {
    width: 22px;
    height: 22px;
}

.about-vm-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--new-text-heading);
    margin-bottom: 0.75rem;
}

.about-vm-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--new-text-body);
    margin-bottom: 0.75rem;
}

.about-vm-card strong {
    color: var(--new-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.about-vm-tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--new-primary) !important;
    font-size: 1rem !important;
    margin-top: 0.75rem;
}

/* -- Core Values -- */
.about-values {
    padding: 2rem 0 4rem;
    background: var(--new-bg-offwhite);
}

.about-values-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--new-text-heading);
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.about-value-card {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease;
}

.about-value-card:hover {
    border-color: var(--new-primary);
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: var(--new-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--new-primary);
    margin-bottom: 1.25rem;
}

.about-value-icon svg {
    width: 20px;
    height: 20px;
}

.about-value-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--new-text-heading);
    margin-bottom: 0.5rem;
}

.about-value-card p {
    font-size: 0.85rem;
    color: var(--new-text-body);
    line-height: 1.6;
}

.about-values-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    background: var(--new-primary-light);
    border-radius: 16px;
}

.about-values-quote blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--new-text-heading);
    line-height: 1.8;
    margin: 0 0 0.75rem;
}

.about-values-quote cite {
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 600;
    color: var(--new-primary);
}

/* -- What Sets Us Apart -- */
.about-apart {
    padding: 0 0 5rem;
    background: var(--new-bg-offwhite);
}

.about-apart-list {
    max-width: 820px;
    margin: 0 auto;
}

.about-apart-row {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 2.75rem 0;
    position: relative;
}

.about-apart-num {
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(0, 119, 182, 0.07);
    line-height: 1;
    flex-shrink: 0;
    width: 90px;
    letter-spacing: -2px;
}

.about-apart-content {
    flex: 1;
    padding-top: 0.5rem;
}

.about-apart-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--new-text-heading);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.about-apart-content h3 em {
    font-style: normal;
    color: var(--new-primary);
}

.about-apart-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--new-text-body);
}

.about-apart-divider {
    height: 1px;
    background: var(--new-border);
    margin: 0 auto;
}

/* -- Journey Timeline -- */
.about-journey {
    padding: 5rem 0;
    background: #fff;
}

.about-journey-sub {
    font-size: 1.05rem;
    color: var(--new-text-body);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.about-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--new-border);
    transform: translateX(-50%);
}

.about-tl-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    margin-bottom: 3.5rem;
    position: relative;
}

.about-tl-item:last-child {
    margin-bottom: 0;
}

.about-tl-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--new-border);
    border-radius: 50%;
    justify-self: center;
    margin-top: 0.35rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.about-tl-item:hover .about-tl-dot {
    border-color: var(--new-primary);
    background: var(--new-primary);
    box-shadow: 0 0 0 5px rgba(0, 119, 182, 0.12);
}

.about-tl-current .about-tl-dot {
    border-color: var(--new-primary);
    background: var(--new-primary);
    box-shadow: 0 0 0 5px rgba(0, 119, 182, 0.12);
}

.about-tl-img {
    border-radius: 10px;
    overflow: hidden;
}

.about-tl-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.about-tl-item:hover .about-tl-img img {
    transform: scale(1.03);
}

.about-tl-left .about-tl-content {
    text-align: right;
    padding-right: 2.5rem;
}

.about-tl-left .about-tl-img {
    padding-left: 2.5rem;
}

.about-tl-right .about-tl-content {
    padding-left: 2.5rem;
}

.about-tl-right .about-tl-img {
    padding-right: 2.5rem;
}

.about-tl-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--new-primary);
    margin-bottom: 0.6rem;
}

.about-tl-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--new-text-heading);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.about-tl-content p {
    font-size: 0.88rem;
    color: var(--new-text-body);
    line-height: 1.8;
    margin: 0;
}

/* -- About Page Responsive -- */
@media (max-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 2rem 0 2.5rem;
    }

    .about-hero h1 {
        font-size: 2.15rem;
    }

    .about-hero-sub {
        font-size: 1rem;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-story-image img {
        min-height: 280px;
        max-height: 350px;
    }

    .about-vm-grid {
        grid-template-columns: 1fr;
    }

    .about-vm-card {
        padding: 1.5rem;
    }

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

    .about-values-title {
        font-size: 1.5rem;
    }

    .about-values-quote {
        padding: 2rem;
    }

    .about-apart-row {
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .about-apart-num {
        font-size: 4rem;
        width: 65px;
    }

    .about-apart-content h3 {
        font-size: 1.1rem;
    }

    .about-tl-item {
        grid-template-columns: 1fr 30px 1fr;
        margin-bottom: 2.5rem;
    }

    .about-tl-left .about-tl-content {
        padding-right: 1.5rem;
    }

    .about-tl-left .about-tl-img {
        padding-left: 1.5rem;
    }

    .about-tl-right .about-tl-content {
        padding-left: 1.5rem;
    }

    .about-tl-right .about-tl-img {
        padding-right: 1.5rem;
    }

    .about-tl-img img {
        height: 150px;
    }

    .about-tl-content h4 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.85rem;
    }

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

    .about-heading {
        font-size: 1.65rem;
    }

    .about-apart-row {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .about-apart-num {
        font-size: 3rem;
        width: auto;
    }

    .about-timeline::before {
        left: 8px;
        transform: none;
    }

    .about-tl-item,
    .about-tl-item.about-tl-left,
    .about-tl-item.about-tl-right {
        grid-template-columns: 20px 1fr;
        margin-bottom: 2rem;
    }

    .about-tl-img {
        display: none;
    }

    .about-tl-left .about-tl-content,
    .about-tl-right .about-tl-content {
        text-align: left;
        padding: 0 0 0 1.25rem;
    }

    .about-tl-dot {
        width: 14px;
        height: 14px;
        margin-top: 0.25rem;
    }
}
