/* YM Global Technologies inspired theme – https://ymgit.com/ */
:root {
    --ym-navy: #0a2540;
    --ym-navy-light: #123a5c;
    --ym-teal: #0088a8;
    --ym-teal-light: #00a8cc;
    --ym-accent: #e85d04;
    --ym-text: #2c3e50;
    --ym-text-muted: #5a6c7d;
    --ym-bg: #f4f7fa;
    --ym-white: #ffffff;
    --ym-border: #dde4ec;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Oxygen', sans-serif;
    background: var(--ym-bg);
    color: var(--ym-text);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ym-navy);
    background: none;
    -webkit-text-fill-color: unset;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 32px;
    line-height: 1.25;
}

a {
    color: var(--ym-teal);
}

a:hover, a:focus {
    color: var(--ym-navy);
}

/* Navbar */
.navbar-default {
    background:
        radial-gradient(ellipse 80% 60% at 18% 30%, rgba(0, 168, 204, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 85% 70%, rgba(0, 136, 168, 0.18) 0%, transparent 60%),
        linear-gradient(120deg, #061a31 0%, #0a2540 35%, #123a5c 65%, #0a2540 100%) !important;
    border-bottom: none !important;
    border-color: transparent !important;
    box-shadow:
        0 4px 18px rgba(10, 37, 64, 0.35),
        inset 0 -1px 0 rgba(0, 168, 204, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    position: relative;
}

/* Animated top accent line */
.navbar-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px !important;
    background: linear-gradient(90deg,
        var(--ym-teal) 0%,
        var(--ym-teal-light) 25%,
        #4dd0e1 50%,
        var(--ym-teal-light) 75%,
        var(--ym-teal) 100%) !important;
    background-size: 200% 100% !important;
    animation: ym-nav-shine 6s linear infinite;
    box-shadow: 0 1px 8px rgba(0, 168, 204, 0.5) !important;
    z-index: 3;
}

@keyframes ym-nav-shine {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Bottom highlight */
.navbar-default::after {
    content: '' !important;
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 168, 204, 0.55) 30%,
        rgba(0, 168, 204, 0.85) 50%,
        rgba(0, 168, 204, 0.55) 70%,
        transparent 100%) !important;
    pointer-events: none;
    z-index: 2;
}

/* Sticky state — glassy + brighter */
.navbar-default.sticky-nav {
    background:
        radial-gradient(ellipse 80% 60% at 18% 30%, rgba(0, 168, 204, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 85% 70%, rgba(0, 136, 168, 0.15) 0%, transparent 60%),
        linear-gradient(120deg, rgba(6, 26, 49, 0.92) 0%, rgba(10, 37, 64, 0.92) 35%, rgba(18, 58, 92, 0.92) 65%, rgba(10, 37, 64, 0.92) 100%) !important;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.4),
        inset 0 -1px 0 rgba(0, 168, 204, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* ============================================================
   Nav links — smart, compact, modern
   Reset the legacy bulky pill+purple-gradient styling from
   style.css and replace with a refined text+underline nav.
   ============================================================ */
@media (min-width: 768px) {
    .navbar-default > .container,
    .navbar-default > .container-fluid {
        display: flex !important;
        align-items: center !important;
    }

    .navbar-default > .container > .navbar-header,
    .navbar-default > .container-fluid > .navbar-header {
        float: none !important;
        flex: 0 0 auto !important;
    }

    .navbar-default > .container > .navbar-collapse,
    .navbar-default > .container-fluid > .navbar-collapse {
        flex: 1 1 auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    .navbar-default .navbar-nav,
    .navbar-default .navbar-nav.navbar-right {
        float: none !important;
        margin: 0 !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 2px;
    }
}

.navbar-default .navbar-nav > li {
    margin-right: 0 !important;
}

.navbar-default .navbar-nav > li > a {
    position: relative;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.55px !important;
    text-transform: uppercase !important;
    padding: 10px 16px !important;
    margin: 0 2px !important;
    border-radius: 8px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
    line-height: 1.2 !important;
    transition: color 0.25s ease, background 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Kill the dated purple sliding-gradient overlay from style.css */
.navbar-default .navbar-nav > li > a::before {
    display: none !important;
}

/* Smart animated underline — slim, teal-glow */
.navbar-default .navbar-nav > li > a::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 4px !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, var(--ym-teal-light) 0%, #4dd0e1 100%) !important;
    border-radius: 2px !important;
    box-shadow: 0 0 8px rgba(0, 168, 204, 0.55) !important;
    transition: width 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06) !important;
    transform: none !important;
    box-shadow: none !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45) !important;
}

.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a:focus::after {
    width: 58% !important;
}

/* Active section — soft teal pill + full underline */
.navbar-default .navbar-nav > li.active:not(.nav-contact-btn) > a,
.navbar-default .navbar-nav > li.active:not(.nav-contact-btn) > a:hover,
.navbar-default .navbar-nav > li.active:not(.nav-contact-btn) > a:focus,
.navbar-default .navbar-nav > .active:not(.nav-contact-btn) > a,
.navbar-default .navbar-nav > .active:not(.nav-contact-btn) > a:hover,
.navbar-default .navbar-nav > .active:not(.nav-contact-btn) > a:focus {
    color: #ffffff !important;
    background: rgba(0, 168, 204, 0.14) !important;
    box-shadow: none !important;
    transform: none !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45) !important;
}

.navbar-default .navbar-nav > li.active:not(.nav-contact-btn) > a::after,
.navbar-default .navbar-nav > .active:not(.nav-contact-btn) > a::after {
    width: 58% !important;
}

/* ============================================================
   Brand / Logo — focused & aligned
   - Logo PNG is already round; drop the redundant border-radius
     and object-fit:cover that was clipping the outer rim.
   - Replace heavy brightness/contrast/saturate filters with a
     clean drop-shadow so the artwork reads naturally.
   - Tighter, predictable sizes so the brand vertically aligns
     with the nav baseline at every breakpoint.
   ============================================================ */
.navbar-default {
    min-height: 96px;
}

.navbar-default.sticky-nav {
    min-height: 80px;
}

.navbar-default .navbar-header {
    display: flex;
    align-items: center;
    min-height: inherit;
}

.navbar-default .navbar-brand {
    position: relative;
    z-index: 2;
    display: inline-flex !important;
    align-items: center !important;
    height: auto !important;
    padding: 6px 0 6px 18px !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.navbar-default .navbar-brand img {
    width: 92px !important;
    height: 92px !important;
    min-width: 92px !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35)) !important;
    -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35)) !important;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                filter 0.35s ease !important;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.navbar-default .navbar-brand:hover img,
.navbar-default .navbar-brand:focus img {
    transform: scale(1.06) translateZ(0) !important;
    filter:
        drop-shadow(0 6px 18px rgba(0, 168, 204, 0.55))
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.25)) !important;
    -webkit-filter:
        drop-shadow(0 6px 18px rgba(0, 168, 204, 0.55))
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.25)) !important;
}

.navbar-default.sticky-nav .navbar-brand img {
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.32)) !important;
    -webkit-filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.32)) !important;
}

@media (max-width: 991px) {
    .navbar-default {
        min-height: 84px;
    }

    .navbar-default .navbar-brand {
        padding-left: 14px !important;
    }

    .navbar-default .navbar-brand img,
    .navbar-default.sticky-nav .navbar-brand img {
        width: 78px !important;
        height: 78px !important;
        min-width: 78px !important;
    }
}

@media (max-width: 480px) {
    .navbar-default {
        min-height: 74px;
    }

    .navbar-default .navbar-brand {
        padding-left: 12px !important;
    }

    .navbar-default .navbar-brand img,
    .navbar-default.sticky-nav .navbar-brand img {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
    }
}

/* Hero */
.hero-slide {
    position: relative;
}

.hero-slide .item {
    position: relative;
    max-height: 520px;
    overflow: hidden;
}

.hero-slide .item > img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Mobile hero sizing is handled in the consolidated mobile block below */

/* Stronger, more uniform overlay so text is legible regardless of image */
.hero-slide .item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(6, 26, 49, 0.88) 0%,
            rgba(6, 26, 49, 0.78) 45%,
            rgba(6, 26, 49, 0.55) 75%,
            rgba(6, 26, 49, 0.35) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.25) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.45) 100%) !important;
    pointer-events: none;
    z-index: 1;
}

.hero-slide .carousel-caption {
    width: 60% !important;
    z-index: 2;
    color: #ffffff !important;
    text-shadow: none !important;
}

.hero-slide .carousel-caption h1 {
    font-size: 46px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    background-image: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.75),
        0 4px 22px rgba(0, 0, 0, 0.55) !important;
    margin: 18px 0 18px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.3px;
    filter: none;
}

.hero-slide .carousel-caption .lead {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    margin-bottom: 26px !important;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.8),
        0 2px 12px rgba(0, 0, 0, 0.55) !important;
    opacity: 1 !important;
}

.hero-slide .carousel-caption .btn-hero {
    background: var(--ym-teal);
    border-color: var(--ym-teal);
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-slide .carousel-caption .btn-hero:hover {
    background: var(--ym-teal-light);
    border-color: var(--ym-teal-light);
    color: #fff;
}

.hero-slide .carousel-indicators li.active {
    border-color: var(--ym-teal-light);
    background-color: var(--ym-teal-light);
}

/* Sections */
.gray-bg {
    background: var(--ym-bg) !important;
}

/* =====================================================
   Global section spacing — tighter, more consistent rhythm
   ===================================================== */
.section-wrapper {
    padding: 56px 0 !important;
}

.section-intro {
    padding: 36px 0 20px;
    background: var(--ym-white);
}

.section-intro .intro-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ym-text-muted);
    max-width: 900px;
    margin: 0 auto 20px;
}

.section-intro .service-tags {
    font-size: 14px;
    color: var(--ym-navy);
    font-weight: 600;
    margin-top: 16px;
}

.section-intro .service-tags span {
    color: var(--ym-teal);
}

.ym-section-title {
    text-align: center;
    margin-bottom: 28px;
}

.ym-section-title h2 {
    margin-bottom: 12px;
}

.ym-section-title p {
    color: var(--ym-text-muted);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
}

/* Service cards */
.thumbnail-variant-1 {
    border-radius: 8px;
    border-top: 4px solid var(--ym-teal);
    box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    background: var(--ym-white);
}

.thumbnail-variant-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.12);
}

.thumbnail-variant-1 .caption h3 {
    color: var(--ym-navy);
    font-size: 18px;
    font-weight: 700;
}

.thumbnail-variant-1 .caption p {
    color: var(--ym-text-muted);
    font-size: 14px;
}

.thumbnail-variant-1 .learn-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ym-teal);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.thumbnail-variant-1 .learn-more:hover {
    color: var(--ym-navy);
}

.red-top-border, .green-top-border {
    border-top-color: var(--ym-teal) !important;
}

/* =====================================================
   Why Choose Us — modern numbered cards
   ===================================================== */
.why-choose-section {
    position: relative;
    padding: 56px 0 60px;
    background:
        radial-gradient(900px 480px at 90% -10%, rgba(102, 126, 234, 0.08), transparent 60%),
        radial-gradient(900px 480px at 0% 110%, rgba(0, 136, 168, 0.08), transparent 60%),
        var(--ym-white);
    overflow: hidden;
}

.why-choose-section > .container {
    position: relative;
    z-index: 2;
}

.why-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 8px;
}

.why-row > [class*="col-"] {
    display: flex;
    margin-bottom: 24px;
}

.why-card {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    padding: 36px 30px 32px;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 49, 0.08);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 32px rgba(6, 26, 49, 0.05);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ym-teal) 0%, #4f86c6 60%, #667eea 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
}

.why-card-number {
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 136, 168, 0.18);
    letter-spacing: -2px;
    pointer-events: none;
    transition: color 0.35s ease, -webkit-text-stroke-color 0.35s ease, transform 0.35s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 136, 168, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 22px 48px rgba(6, 26, 49, 0.12);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover .why-card-number {
    -webkit-text-stroke-color: rgba(0, 136, 168, 0.35);
    transform: translateY(-2px);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--ym-teal) 0%, #4f86c6 100%);
    color: #ffffff;
    font-size: 22px;
    border-radius: 14px;
    box-shadow:
        0 10px 22px rgba(0, 136, 168, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.35s ease;
}

.why-card:hover .why-card-icon {
    transform: rotate(-4deg) scale(1.05);
}

.why-card h4 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ym-navy);
    letter-spacing: -0.2px;
    position: relative;
}

.why-card h4::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--ym-teal), transparent);
    border-radius: 2px;
}

.why-card p {
    margin: 14px 0 18px;
    font-size: 14.5px;
    color: #4a5a6b;
    line-height: 1.7;
}

.why-card-list {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px dashed rgba(6, 26, 49, 0.10);
}

.why-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ym-navy);
    line-height: 1.5;
}

.why-card-list li i {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    background: rgba(0, 136, 168, 0.12);
    color: var(--ym-teal);
    border-radius: 50%;
    font-size: 10px;
}

/* About teaser */
.about-teaser {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--ym-bg) 0%, var(--ym-white) 100%);
}

.about-teaser h2 {
    margin-bottom: 20px;
}

.about-teaser p {
    color: var(--ym-text-muted);
    font-size: 15px;
    line-height: 1.75;
}

/* CTA */
.call-to-action-variant-1 {
    background: linear-gradient(135deg, var(--ym-navy) 0%, var(--ym-navy-light) 100%) !important;
}

.call-to-action-variant-2::before {
    background: rgba(10, 37, 64, 0.82) !important;
}

.btn-primary {
    background: var(--ym-teal) !important;
    border-color: var(--ym-teal) !important;
    box-shadow: 0 4px 14px rgba(0, 136, 168, 0.35) !important;
}

.btn-primary:hover {
    background: var(--ym-teal-light) !important;
    border-color: var(--ym-teal-light) !important;
}

.btn-default {
    border-color: var(--ym-teal);
    color: var(--ym-teal);
}

.action-content .btn-default:hover {
    background-color: var(--ym-teal) !important;
    border-color: var(--ym-teal) !important;
}

/* Statistics */
.section-statistics {
    background: linear-gradient(135deg, var(--ym-navy) 0%, var(--ym-navy-light) 100%) !important;
}

/* ============================================================
   Footer — premium navy + teal, refined typography
   ============================================================ */
.footer {
    position: relative;
    background:
        radial-gradient(ellipse 90% 60% at 15% 0%, rgba(0, 168, 204, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 90% 100%, rgba(0, 136, 168, 0.14) 0%, transparent 55%),
        linear-gradient(180deg, #0a2540 0%, #061a31 100%) !important;
    color: #cbd5e1 !important;
    overflow: hidden;
}

/* Top accent line */
.footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: auto !important;
    height: 2px !important;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--ym-teal-light) 25%,
        #4dd0e1 50%,
        var(--ym-teal-light) 75%,
        transparent 100%) !important;
    box-shadow: 0 0 14px rgba(0, 168, 204, 0.55) !important;
    z-index: 2 !important;
    opacity: 1 !important;
    pointer-events: none;
}

.footer::after {
    display: none !important;
}

.footer-widget-section {
    padding: 64px 0 36px !important;
    position: relative;
    z-index: 1;
}

.footer-widget-section .row {
    align-items: flex-start;
}

.footer .footer-widget {
    padding: 0 !important;
    margin: 0 0 18px !important;
}

.footer .footer-widget h3.widget-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin: 0 0 22px !important;
    padding-bottom: 14px !important;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.footer .footer-widget h3.widget-title::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, var(--ym-teal-light) 0%, #4dd0e1 100%) !important;
    box-shadow: 0 0 10px rgba(77, 208, 225, 0.55);
    border-radius: 2px !important;
}

.footer .footer-widget p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    color: rgba(203, 213, 225, 0.85) !important;
    margin: 0 0 18px !important;
}

/* About widget — email chip + social row */
.footer .widget-about .group-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    margin: 0 !important;
}

.footer .widget-about .contact-info {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

/* "Visit Us" address block */
.footer .widget-about .footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 !important;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    max-width: 100%;
}

.footer .widget-about .footer-address > i {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ym-teal) 0%, var(--ym-teal-light) 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    box-shadow: 0 6px 14px rgba(0, 168, 204, 0.32);
    margin-top: 2px;
}

.footer .widget-about .footer-address > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(203, 213, 225, 0.95) !important;
    font-size: 14px;
    line-height: 1.5;
}

.footer .widget-about .footer-address strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer .widget-about .footer-address small {
    font-size: 12px;
    color: rgba(203, 213, 225, 0.7);
    font-weight: 500;
}

.footer .widget-about .group-col .contact-info .email,
.footer .widget-about .group-col .contact-info a.email {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
    background: rgba(0, 168, 204, 0.14) !important;
    border: 1px solid rgba(0, 168, 204, 0.4) !important;
    border-radius: 999px !important;
    margin: 0 !important;
    transition: background 0.25s ease, border-color 0.25s ease,
                box-shadow 0.3s ease, transform 0.2s ease, color 0.25s ease !important;
}

.footer .widget-about .group-col .contact-info .email::before {
    content: '\f0e0';
    font-family: 'FontAwesome';
    font-weight: 400;
    color: var(--ym-teal-light);
}

.footer .widget-about .group-col .contact-info .email:hover,
.footer .widget-about .group-col .contact-info a.email:hover,
.footer .widget-about .group-col .contact-info a.email:focus {
    background: linear-gradient(135deg, var(--ym-teal) 0%, var(--ym-teal-light) 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 8px 22px rgba(0, 168, 204, 0.4) !important;
    transform: translateY(-1px);
}

.footer .widget-about .group-col .contact-info .email:hover::before {
    color: #ffffff;
}

/* Social icons — circular brand pills */
.footer .footer-widget .social-links {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer .footer-widget .social-links li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}

.footer .footer-widget .social-links li a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: background 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
                color 0.3s ease, transform 0.3s ease,
                border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.footer .footer-widget .social-links li a:hover,
.footer .footer-widget .social-links li a:focus {
    background: linear-gradient(135deg, var(--ym-teal) 0%, var(--ym-teal-light) 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 10px 22px rgba(0, 168, 204, 0.45) !important;
}

/* Footer link lists */
.footer .footer-widget .footer-list-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer .footer-widget .footer-list-menu li {
    position: relative;
    padding-left: 18px !important;
    margin-bottom: 10px !important;
}

.footer .footer-widget .footer-list-menu li:last-child {
    margin-bottom: 0 !important;
}

.footer .footer-widget .footer-list-menu li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 12px !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--ym-teal-light) !important;
    box-shadow: 0 0 8px rgba(77, 208, 225, 0.55) !important;
    transform: scale(1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.footer .footer-widget .footer-list-menu a {
    display: inline-block !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(203, 213, 225, 0.88) !important;
    text-decoration: none !important;
    padding: 4px 0 !important;
    transition: color 0.25s ease, padding 0.25s ease !important;
}

.footer .footer-widget .footer-list-menu a:hover,
.footer .footer-widget .footer-list-menu a:focus {
    color: #ffffff !important;
    padding-left: 6px !important;
}

.footer .footer-widget .footer-list-menu li:hover::before {
    transform: scale(1.4) !important;
    box-shadow: 0 0 14px rgba(77, 208, 225, 0.85),
                0 0 0 4px rgba(0, 168, 204, 0.18) !important;
}

/* Copyright bar */
.footer .copyright-section {
    background: rgba(0, 0, 0, 0.35) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 18px 0 !important;
    position: relative;
}

.footer .copyright-section::before {
    display: none !important;
}

.footer .copyright-section .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap;
    gap: 12px;
}

.footer .copyright-section .copytext {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}

.footer .copyright-section a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 4px 12px !important;
    border-radius: 6px !important;
    transition: background 0.25s ease, color 0.25s ease !important;
}

.footer .copyright-section a:hover,
.footer .copyright-section a:focus {
    color: #ffffff !important;
    background: rgba(0, 168, 204, 0.2) !important;
}

@media (max-width: 768px) {
    .footer-widget-section {
        padding: 44px 0 18px !important;
    }

    .footer .footer-widget {
        margin-bottom: 28px !important;
    }

    .footer .footer-widget h3.widget-title {
        font-size: 15px !important;
        margin-bottom: 18px !important;
    }

    .footer .copyright-section .container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 6px !important;
    }
}

.footer-locations {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-locations li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}

.footer-locations li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ym-teal-light);
}

.navbar-default .navbar-nav > li.nav-contact-btn {
    margin-left: 10px !important;
}

/* CTA outline by default — filled highlight on hover or when on Contact page */
.navbar-default .navbar-nav > li.nav-contact-btn:not(.active) > a {
    background: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(0, 168, 204, 0.7) !important;
    border-radius: 999px !important;
    padding: 9px 22px !important;
    letter-spacing: 0.75px !important;
    transition: background 0.25s ease, color 0.25s ease,
                border-color 0.25s ease, box-shadow 0.3s ease,
                transform 0.2s ease !important;
}

.navbar-default .navbar-nav > li.nav-contact-btn > a::after {
    display: none !important;
}

.navbar-default .navbar-nav > li.nav-contact-btn:not(.active) > a:hover,
.navbar-default .navbar-nav > li.nav-contact-btn:not(.active) > a:focus {
    background: linear-gradient(135deg, var(--ym-teal) 0%, var(--ym-teal-light) 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(0, 168, 204, 0.45) !important;
    transform: translateY(-1px) !important;
}

.navbar-default .navbar-nav > li.nav-contact-btn.active > a,
.navbar-default .navbar-nav > li.nav-contact-btn.active > a:hover,
.navbar-default .navbar-nav > li.nav-contact-btn.active > a:focus {
    background: linear-gradient(135deg, var(--ym-teal) 0%, var(--ym-teal-light) 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid transparent !important;
    border-radius: 999px !important;
    padding: 9px 22px !important;
    box-shadow: 0 6px 18px rgba(0, 168, 204, 0.45) !important;
}

/* AI solutions */
.ai-solutions-section {
    padding: 50px 0 56px;
    background: linear-gradient(180deg, var(--ym-white) 0%, #e8f4f8 100%);
}

.ai-solutions-section .ym-section-title h2 {
    margin-bottom: 8px;
}

/* Equal-height aligned card grid (Bootstrap 3 compatible) */
.ai-solutions-section .ai-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}

.ai-solutions-section .ai-cards-row::before,
.ai-solutions-section .ai-cards-row::after {
    display: none;
}

.ai-solutions-section .ai-cards-row > [class*="col-"] {
    display: flex;
    float: none;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .ai-solutions-section .ai-cards-row > .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ai-solutions-section .ai-cards-row > .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.ai-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    padding: 28px 24px;
    min-height: 280px;
    border-radius: 8px;
    background: var(--ym-white);
    border: 1px solid var(--ym-border);
    border-left: 4px solid var(--ym-teal);
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 136, 168, 0.15);
}

.ai-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ym-teal) 0%, var(--ym-navy-light) 100%);
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.ai-card h4 {
    flex-shrink: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--ym-navy);
    margin-bottom: 10px;
    min-height: 2.6em;
}

.ai-card p {
    flex: 1 1 auto;
    font-size: 14px;
    color: var(--ym-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ai-card .learn-more {
    flex-shrink: 0;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Image-header variant (used on Home AI Solutions) */
.ai-card:has(.ai-card-image),
.ai-card.has-image {
    padding: 0;
    overflow: hidden;
    border-left: 1px solid var(--ym-border);
    min-height: 440px;
}

.ai-card:has(.ai-card-image):hover,
.ai-card.has-image:hover {
    border-color: var(--ym-teal);
    box-shadow: 0 14px 32px rgba(0, 136, 168, 0.18);
}

.ai-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--ym-navy);
}

.ai-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.15) 0%, rgba(10, 37, 64, 0.7) 100%);
    pointer-events: none;
}

.ai-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ai-card:hover .ai-card-image img {
    transform: scale(1.07);
}

.ai-card-image .ai-card-icon {
    position: absolute;
    bottom: 14px;
    left: 18px;
    z-index: 2;
    margin: 0;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.ai-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 26px;
}

.ai-card-body h4 {
    flex-shrink: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--ym-navy);
    margin: 0 0 10px;
    min-height: 0;
}

.ai-card-body p {
    flex: 1 1 auto;
    font-size: 14px;
    color: var(--ym-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ai-card-body .learn-more {
    flex-shrink: 0;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 991px) {
    .ai-card {
        min-height: 260px;
    }

    .ai-card h4 {
        min-height: 0;
    }

    .ai-card:has(.ai-card-image),
    .ai-card.has-image {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .ai-solutions-section .ai-cards-row > [class*="col-"] {
        margin-bottom: 20px;
    }

    .ai-card {
        min-height: 0;
    }

    .ai-card:has(.ai-card-image),
    .ai-card.has-image {
        min-height: 0;
    }

    .ai-card-image {
        height: 160px;
    }
}

.ai-highlight-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--ym-navy) 0%, #0d3d5c 100%);
    color: #fff;
}

.ai-highlight-banner h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 24px;
}

.ai-highlight-banner p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.ai-highlight-banner .ai-tag-list {
    margin-top: 16px;
    padding: 0;
    list-style: none;
}

.ai-highlight-banner .ai-tag-list li {
    display: inline-block;
    margin: 4px 6px 4px 0;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: rgba(0, 168, 204, 0.25);
    border: 1px solid rgba(0, 168, 204, 0.45);
    border-radius: 20px;
    color: #b8ecff;
}

.thumbnail-variant-1.ai-featured {
    border-left: 4px solid var(--ym-teal);
    background: linear-gradient(145deg, #fff 0%, #f0f9fc 100%);
}

.service-tags .ai-tag {
    color: var(--ym-teal);
    font-weight: 700;
}

/* We Are Different section image */
.about-different-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(10, 37, 64, 0.12);
}

@media (max-width: 768px) {
    .about-different-img {
        max-height: 320px;
        margin-bottom: 24px;
    }
}

/* About benefits thumbnails */
.section-wrapper.gray-bg .thumbnail-variant-1 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
    .section-wrapper.gray-bg .thumbnail-variant-1 img {
        height: 180px;
    }

    .hero-slide .carousel-caption {
        width: 90%;
    }

    .hero-slide .carousel-caption h1 {
        font-size: 22px;
    }

    .hero-slide .carousel-caption .lead {
        font-size: 14px;
    }

    .ai-highlight-banner {
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat {
        min-width: 80px;
    }
}

/* nRich-inspired enhancements */
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ym-teal);
    margin-bottom: 10px;
}

.section-eyebrow.light {
    color: var(--ym-teal-light);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: rgba(0, 168, 204, 0.22);
    border: 1px solid rgba(77, 208, 225, 0.6);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-actions {
    margin-bottom: 24px;
}

.hero-actions .btn-hero {
    margin-right: 10px;
    margin-bottom: 8px;
}

.btn-hero-outline {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    color: #fff !important;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}

.btn-hero-outline-light {
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

.btn-hero-outline-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    line-height: 1.2;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.7),
        0 4px 14px rgba(0, 0, 0, 0.45);
    letter-spacing: -0.2px;
}

.hero-stat-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.95) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    opacity: 1 !important;
}

.commitment-section {
    padding: 40px 0 48px;
    background: var(--ym-white);
}

.commitment-card {
    padding: 32px 28px;
    height: 100%;
    border: 1px solid var(--ym-border);
    border-radius: 8px;
    background: var(--ym-bg);
}

.commitment-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--ym-navy);
}

.commitment-card h3 i {
    color: var(--ym-teal);
    margin-right: 8px;
}

.commitment-card p {
    color: var(--ym-text-muted);
    line-height: 1.7;
    font-size: 14px;
}

.commitment-metrics {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.commitment-metrics li {
    padding: 10px 16px;
    background: var(--ym-white);
    border-radius: 6px;
    border: 1px solid var(--ym-border);
    font-size: 13px;
    color: var(--ym-text-muted);
}

.expertise-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.expertise-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--ym-text-muted);
    font-size: 14px;
}

.expertise-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    color: var(--ym-teal);
}

.thumbnail-variant-1 {
    position: relative;
}

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--ym-teal);
    color: #fff;
    border-radius: 3px;
}

.service-badge.badge-alt {
    background: var(--ym-navy);
}

.call-to-action-variant-1 .cta-subtext {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.call-to-action-variant-1 .cta-buttons {
    margin-top: 8px;
}

.contact-connect-section {
    padding: 50px 0 56px;
    background: var(--ym-white);
}

.contact-card {
    text-align: center;
    padding: 28px 16px;
    height: 100%;
    border: 1px solid var(--ym-border);
    border-radius: 8px;
    background: var(--ym-bg);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.1);
}

.contact-card i {
    font-size: 28px;
    color: var(--ym-teal);
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ym-navy);
    margin-bottom: 8px;
}

.contact-card-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ym-navy);
    margin-bottom: 4px;
}

.contact-card-meta {
    font-size: 12px;
    color: var(--ym-text-muted);
}

.contact-cards-row > [class*="col-"] {
    margin-bottom: 20px;
}

/* =====================================================
   Innovation section — "AI-First by Design"
   ===================================================== */
.innovation-section {
    position: relative;
    padding: 56px 0 60px;
    background:
        radial-gradient(1100px 520px at 12% -10%, rgba(0, 136, 168, 0.10), transparent 60%),
        radial-gradient(900px 460px at 88% 110%, rgba(102, 126, 234, 0.10), transparent 65%),
        linear-gradient(180deg, var(--ym-bg) 0%, var(--ym-white) 100%);
    overflow: hidden;
}

.innovation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 26, 49, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 26, 49, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 35%, transparent 75%);
    pointer-events: none;
    opacity: 0.7;
}

.innovation-section > .container {
    position: relative;
    z-index: 2;
}

.innovation-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 6px;
}

.innovation-row > [class*="col-"] {
    display: flex;
    margin-bottom: 24px;
}

.innovation-card {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    padding: 36px 32px 30px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(6, 26, 49, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 32px rgba(6, 26, 49, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.innovation-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ym-teal) 0%, #66e0c9 50%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.innovation-card-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 136, 168, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.innovation-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 136, 168, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 22px 48px rgba(6, 26, 49, 0.12);
}

.innovation-card:hover::before,
.innovation-card:hover .innovation-card-glow {
    opacity: 1;
}

.innovation-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--ym-teal) 0%, #4f86c6 100%);
    color: #ffffff;
    font-size: 26px;
    border-radius: 16px;
    box-shadow:
        0 12px 24px rgba(0, 136, 168, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.35s ease;
}

.innovation-card:hover .innovation-card-icon {
    transform: rotate(-4deg) scale(1.05);
}

.innovation-card h3 {
    position: relative;
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ym-navy);
    letter-spacing: -0.2px;
}

.innovation-card h3::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--ym-teal), transparent);
    border-radius: 2px;
}

.innovation-card > p {
    margin: 14px 0 22px;
    color: #4a5a6b;
    font-size: 15px;
    line-height: 1.7;
}

.innovation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.innovation-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    margin: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ym-teal);
    background: rgba(0, 136, 168, 0.08);
    border: 1px solid rgba(0, 136, 168, 0.18);
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.innovation-pill i {
    font-size: 12px;
    opacity: 0.85;
}

.innovation-pill:hover {
    background: var(--ym-teal);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 136, 168, 0.28);
}

/* Industries */
.industries-section {
    padding: 50px 0 56px;
    background: linear-gradient(180deg, var(--ym-bg) 0%, var(--ym-white) 100%);
}

.industries-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.industries-row > [class*="col-"] {
    display: flex;
    margin-bottom: 24px;
}

.industry-card {
    flex: 1;
    width: 100%;
    padding: 0;
    overflow: hidden;
    text-align: left;
    border: 1px solid var(--ym-border);
    border-radius: 8px;
    background: var(--ym-white);
    box-shadow: 0 4px 16px rgba(10, 37, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 136, 168, 0.12);
    border-color: var(--ym-teal);
}

.industry-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--ym-navy);
}

.industry-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.55) 100%);
    pointer-events: none;
}

.industry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-card-image img {
    transform: scale(1.06);
}

.industry-card-body {
    padding: 22px 24px 26px;
}

.industry-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ym-navy);
    margin: 0 0 10px;
}

.industry-card-body p {
    font-size: 14px;
    color: var(--ym-text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .industries-row > .col-md-4:nth-child(4),
    .industries-row > .col-md-4:nth-child(5) {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .industry-card-image {
        height: 150px;
    }
}

/* ===================================================
 * Our Clients section
 * =================================================*/
.clients-section {
    position: relative;
    padding: 56px 0 50px;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 168, 204, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 88% 82%, rgba(10, 37, 64, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, var(--ym-bg) 100%);
    overflow: hidden;
}

.clients-bg-deco {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 37, 64, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: -1px -1px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    pointer-events: none;
}

.clients-section > .container {
    position: relative;
    z-index: 1;
}

.clients-section .ym-section-title {
    margin-bottom: 36px;
}

.clients-section .ym-section-title h2 {
    font-size: 34px;
}

/* Overrides for owl logo cards inside clients section */
.clients-logo-slider .owl-item {
    display: flex;
    align-items: stretch;
}

.clients-logo-slider .item {
    width: 100%;
    padding: 6px;
}

.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    padding: 22px 18px;
    background: #ffffff;
    border: 1px solid var(--ym-border);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.client-logo-card img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.95);
    opacity: 0.78;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--ym-teal);
    box-shadow: 0 14px 32px rgba(0, 136, 168, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
}

.client-logo-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Trust strip */
.clients-trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding: 28px 24px;
    background: linear-gradient(135deg, var(--ym-navy) 0%, var(--ym-navy-light) 100%);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(10, 37, 64, 0.18);
    position: relative;
    overflow: hidden;
}

.clients-trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(0, 168, 204, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 168, 204, 0.25) 0%, transparent 40%);
    pointer-events: none;
}

.clients-trust-item {
    flex: 1 1 0;
    min-width: 130px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.clients-trust-item + .clients-trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.clients-trust-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.clients-trust-num sup {
    font-size: 18px;
    font-weight: 700;
    color: var(--ym-teal-light);
    top: -0.6em;
    margin-left: 2px;
}

.clients-trust-num small {
    font-size: 18px;
    font-weight: 700;
    color: var(--ym-teal-light);
    margin-left: 2px;
}

.clients-trust-label {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

/* CTA */
.clients-cta {
    text-align: center;
    margin-top: 40px;
}

.clients-cta p {
    color: var(--ym-text-muted);
    font-size: 15px;
    margin-bottom: 14px;
}

.clients-cta .btn-primary {
    padding: 12px 28px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .clients-trust-item {
        flex: 1 1 calc(33.333% - 16px);
    }

    .clients-trust-item:nth-child(4) {
        border-left: none;
    }
}

@media (max-width: 767px) {
    .clients-section {
        padding: 60px 0 50px;
    }

    .clients-section .ym-section-title h2 {
        font-size: 26px;
    }

    .client-logo-card {
        height: 90px;
        padding: 16px 14px;
    }

    .client-logo-card img {
        max-height: 56px;
    }

    .clients-trust-strip {
        padding: 22px 16px;
        gap: 14px 8px;
    }

    .clients-trust-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        padding: 8px 4px;
        border-left: none !important;
    }

    .clients-trust-num {
        font-size: 28px;
    }

    .clients-trust-label {
        font-size: 11px;
        letter-spacing: 0.6px;
    }
}

/* ============================================================
   Single-page layout — section anchor offset & smooth scroll
   ============================================================ */
html {
    scroll-behavior: smooth;
}

.onepage-section {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    .onepage-section {
        scroll-margin-top: 70px;
    }
}

/* ============================================================
   Careers section — job cards
   ============================================================ */
.careers-row {
    margin-top: 10px;
}

.careers-row > [class*="col-"] {
    margin-bottom: 28px;
    display: flex;
}

.career-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 26px 24px;
    width: 100%;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-top: 4px solid var(--ym-teal, #14b8a6);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.career-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
    border-top-color: var(--ym-navy, #0f172a);
}

.career-card-title {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 700;
    color: var(--ym-navy, #0f172a);
    line-height: 1.3;
}

.career-card-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    color: #475569;
    font-size: 13px;
}

.career-card-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.career-card-meta i {
    color: var(--ym-teal, #14b8a6);
    font-size: 13px;
}

.career-card-snippet {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1 1 auto;
}

.career-card-cta {
    align-self: flex-start;
    padding: 9px 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.careers-empty {
    background: #ffffff;
    border-radius: 14px;
    border: 1px dashed rgba(15, 23, 42, 0.18);
    padding: 48px 28px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}

.careers-empty i {
    font-size: 38px;
    color: var(--ym-teal, #14b8a6);
    margin-bottom: 14px;
    display: inline-block;
}

.careers-empty h4 {
    margin: 0 0 10px;
    color: var(--ym-navy, #0f172a);
    font-weight: 700;
}

.careers-empty p {
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.careers-empty a {
    color: var(--ym-teal, #14b8a6);
    font-weight: 600;
}

/* ============================================================
   MOBILE OPTIMIZATIONS — comprehensive responsive polish
   - Touch-friendly tap targets (≥44px)
   - Fluid typography
   - Tighter section spacing
   - Proper stacking + safe edge gutters
   ============================================================ */

/* Prevent any horizontal page overflow on phones */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ----- Tablet (≤991px) ----- */
@media (max-width: 991px) {
    .ym-section-title h2,
    .section-intro .ym-section-title h2 {
        font-size: 26px;
    }

    .commitment-card {
        margin-bottom: 18px;
    }

    .hero-slide .item,
    .hero-slide .item > img {
        height: 460px;
        max-height: 460px;
    }

    .hero-slide .carousel-caption h1 {
        font-size: 38px !important;
    }
}

/* ----- Mobile hero — auto-height slide, image as background ----- */
@media (max-width: 767px) {
    /* Let the slide grow to fit its content instead of clipping it */
    .hero-slide .item {
        height: auto !important;
        min-height: 480px;
        max-height: none !important;
        padding: 70px 0 40px;
        overflow: hidden;
    }

    /* Image becomes the full-slide background */
    .hero-slide .item > img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 0;
    }

    /* Slightly stronger overlay so text always reads cleanly */
    .hero-slide .item::after {
        background:
            linear-gradient(180deg,
                rgba(6, 26, 49, 0.78) 0%,
                rgba(6, 26, 49, 0.72) 60%,
                rgba(6, 26, 49, 0.55) 100%) !important;
        z-index: 1;
    }

    /* Caption container — flow naturally instead of being absolutely centered */
    .hero-slide .container {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        z-index: 3;
    }

    /* Caption — full width, consistently left-aligned */
    .hero-slide .carousel-caption {
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
    }

    /* Anchor every direct text child to the left */
    .hero-slide .carousel-caption > * {
        text-align: left !important;
    }

    /* Carousel indicators don't overlap content */
    .hero-slide .carousel-indicators {
        bottom: 10px;
        margin: 0;
        z-index: 4;
    }
}

/* ----- Mobile (≤767px) ----- */
@media (max-width: 767px) {
    /* Container gutters */
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* Typography scale */
    .ym-section-title h2 {
        font-size: 24px !important;
        line-height: 1.25;
    }

    .ym-section-title p {
        font-size: 14.5px;
        line-height: 1.6;
    }

    .section-intro {
        padding: 36px 0 18px;
    }

    .section-intro .intro-lead {
        font-size: 15px;
        line-height: 1.65;
    }

    .section-intro .service-tags {
        font-size: 13px;
        line-height: 2;
    }

    /* Section padding reductions */
    .section-wrapper,
    .commitment-section,
    .innovation-section,
    .why-choose-section,
    .ai-solutions-section,
    .contact-connect-section,
    .industries-section,
    .clients-section,
    .careers-row + section,
    section.section-wrapper.gray-bg {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 1.4px;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-slide .carousel-caption h1 {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin: 8px 0 12px !important;
    }

    .hero-slide .carousel-caption .lead {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 18px;
    }

    .hero-actions .btn-hero {
        margin: 0 !important;
        flex: 1 1 auto;
        min-width: 140px;
        padding: 10px 18px;
        font-size: 12.5px;
    }

    .hero-stats {
        gap: 14px 18px;
        padding-top: 14px;
        margin-top: 4px;
    }

    .hero-stat {
        min-width: 76px;
    }

    .hero-stat-num {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 10.5px;
        letter-spacing: 0.5px;
        margin-top: 3px;
    }

    .hero-slide .carousel-control {
        display: none;
    }

    /* Carousel indicators sit higher on the slide */
    .hero-slide .carousel-indicators {
        bottom: 8px;
    }

    /* Commitment cards */
    .commitment-card {
        padding: 22px 18px;
        margin-bottom: 16px;
    }

    .commitment-card h3 {
        font-size: 18px;
    }

    .commitment-metrics li,
    .expertise-list li {
        font-size: 14px;
    }

    /* Why-choose cards on mobile */
    .why-choose-section {
        padding: 50px 0 56px !important;
    }

    .why-row > [class*="col-"] {
        margin-bottom: 18px;
    }

    .why-card {
        padding: 26px 22px 24px;
        border-radius: 16px;
    }

    .why-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .why-card-number {
        top: 10px;
        right: 18px;
        font-size: 48px;
    }

    .why-card h4 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
        margin: 12px 0 14px;
    }

    .why-card-list li {
        font-size: 13px;
    }

    /* Thumbnails */
    .thumbnail-variant-1 .caption,
    .section-wrapper .thumbnail-variant-1 .caption {
        padding: 20px 18px;
    }

    .thumbnail-variant-1 .caption h3 {
        font-size: 17px;
    }

    .thumbnail-variant-1 .caption p {
        font-size: 14px;
    }

    /* AI cards */
    .ai-card-body {
        padding: 18px 18px 16px;
    }

    .ai-card-body h4 {
        font-size: 17px;
    }

    .ai-card-body p {
        font-size: 14px;
        line-height: 1.55;
    }

    /* Industries */
    .industry-card {
        margin-bottom: 18px;
    }

    .industry-card-image {
        height: 160px;
    }

    .industry-card-body {
        padding: 18px 18px;
    }

    .industry-card-body h4 {
        font-size: 18px;
    }

    .industry-card-body p {
        font-size: 14px;
    }

    /* Career cards */
    .careers-row > [class*="col-"] {
        margin-bottom: 16px;
    }

    .career-card {
        padding: 22px 20px 20px;
    }

    .career-card-title {
        font-size: 18px;
    }

    .career-card-meta {
        font-size: 12.5px;
        gap: 4px 10px;
    }

    .career-card-snippet {
        font-size: 13.5px;
    }

    /* Contact cards */
    .contact-cards-row > [class*="col-"] {
        margin-bottom: 14px;
    }

    .contact-card {
        padding: 22px 18px;
    }

    .contact-card i {
        font-size: 22px;
    }

    .contact-card h4 {
        font-size: 16px;
    }

    .contact-card-value {
        font-size: 14.5px;
        word-break: break-word;
    }

    .contact-card-meta {
        font-size: 12px;
    }

    /* Contact form */
    .contact-connect-section + section form .form-control,
    section form .form-control {
        font-size: 15px;
        padding: 10px 14px;
        min-height: 44px;
    }

    section form textarea.form-control {
        min-height: 110px;
    }

    /* Buttons — touch-friendly */
    .btn,
    .btn-primary,
    .btn-default,
    .btn-hero,
    .btn-hero-outline,
    .btn-hero-outline-light {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13.5px;
    }

    /* Footer */
    .footer-widget-section {
        padding: 36px 0 14px !important;
    }

    .footer .footer-widget {
        margin-bottom: 22px !important;
    }

    .footer .footer-widget h3.widget-title {
        font-size: 14.5px !important;
        margin-bottom: 16px !important;
        padding-bottom: 12px !important;
    }

    .footer .footer-widget p,
    .footer .footer-widget .footer-list-menu a {
        font-size: 13.5px !important;
    }

    .footer .footer-widget .social-links li a {
        width: 42px !important;
        height: 42px !important;
        font-size: 16px !important;
    }

    .footer .copyright-section .copytext,
    .footer .copyright-section a {
        font-size: 12.5px !important;
    }

    /* Innovation section — compact on phone */
    .innovation-section {
        padding: 50px 0 56px !important;
    }

    .innovation-row > [class*="col-"] {
        margin-bottom: 18px;
    }

    .innovation-card {
        padding: 26px 22px 24px;
        border-radius: 16px;
    }

    .innovation-card-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .innovation-card h3 {
        font-size: 19px;
    }

    .innovation-card > p {
        font-size: 14px;
        margin: 10px 0 16px;
    }

    .innovation-pills {
        gap: 6px;
    }

    .innovation-pill {
        padding: 6px 12px;
        font-size: 11.5px;
    }
}

/* ----- Small mobile (≤480px) ----- */
@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    /* Hero — even more compact, still auto-grow */
    .hero-slide .item {
        min-height: 460px;
        padding: 60px 0 36px;
    }

    .hero-slide .carousel-caption h1 {
        font-size: 22px !important;
    }

    .hero-slide .carousel-caption .lead {
        font-size: 13.5px !important;
    }

    /* Stack hero buttons full-width */
    .hero-actions .btn-hero {
        flex: 1 1 100%;
    }

    .hero-stats {
        gap: 12px 16px;
    }

    .hero-stat {
        min-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
        text-align: left;
    }

    .hero-stat-num {
        font-size: 18px;
    }

    /* Section titles */
    .ym-section-title h2 {
        font-size: 22px !important;
    }

    /* Sticky nav adjusts */
    .onepage-section {
        scroll-margin-top: 62px;
    }

    /* Footer titles a touch smaller */
    .footer .footer-widget h3.widget-title {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .footer .widget-about .group-col .contact-info .email {
        font-size: 13px !important;
        padding: 7px 14px !important;
    }
}

/* ----- Make the dark navbar toggle nicely visible on mobile ----- */
@media (max-width: 767px) {
    .navbar-default .navbar-toggle {
        margin-top: 18px;
        margin-bottom: 18px;
        border-color: rgba(0, 168, 204, 0.55) !important;
        background: rgba(0, 168, 204, 0.12) !important;
        border-radius: 8px !important;
        padding: 10px 12px !important;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background: rgba(0, 168, 204, 0.22) !important;
        border-color: var(--ym-teal-light) !important;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #ffffff !important;
        height: 2px;
        width: 22px;
        border-radius: 2px;
    }

    /* Mobile drawer: nav-contact-btn shouldn't render as a desktop pill */
    .uc-mobile-menu .nav-contact-btn,
    .navbar-collapse .nav-contact-btn {
        margin-left: 0 !important;
    }

    .uc-mobile-menu .nav-contact-btn > a,
    .navbar-collapse .nav-contact-btn > a {
        border-radius: 8px !important;
        border: 0 !important;
        padding: 12px 14px !important;
        background: rgba(0, 168, 204, 0.16) !important;
        color: #ffffff !important;
    }
}

