/* ============================================================
   PHOTONIC-R PVT. LTD. — Header & Navbar Styles
   Uses Bootstrap 5 + Vanilla CSS
   ============================================================ */

/* ---------- Root / Global ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #333;
    background: #f5f5f5;
}

a {
    text-decoration: none;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background-color: #3c3c3c; /* dark charcoal, matches reference */
    color: #ccc;
    font-size: 0.8rem;
    min-height: 38px;
}

/* Tagline text */
.top-bar__tagline span {
    color: #d0d0d0;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
    line-height: 38px;
}

/* Social icon links */
.top-bar__socials {
    border-left: 1px solid #555;
    border-right: 1px solid #555;
    padding: 0 12px;
    height: 38px;
}

.top-bar__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ccc;
    font-size: 0.75rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.top-bar__social-link:hover {
    background-color: #2196f3;
    color: #fff;
}

/* Email block (blue background) */
.top-bar__email-block {
    background-color: #2196f3; /* bright blue, matches reference */
    color: #fff;
    font-size: 0.78rem;
    padding: 0 16px;
    height: 38px;
    white-space: nowrap;
}

.top-bar__email-block i {
    font-size: 0.85rem;
}

.top-bar__email-block a {
    color: #fff;
    transition: opacity 0.2s ease;
}

.top-bar__email-block a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.top-bar__email-divider {
    margin: 0 6px;
    opacity: 0.6;
}

/* ============================================================
   BRAND BAR (Middle logo + contact section)
   ============================================================ */
.brand-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Brand / Logo */
.brand-bar__logo {
    padding: 4px 0;
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 0;
    line-height: 1;
}

.brand-name__photonic {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.brand-name__r {
    font-size: 2rem;
    font-weight: 800;
    color: #2196f3; /* blue accent, matches LatQuartz style */
    letter-spacing: -0.5px;
}

.brand-name__tm {
    font-size: 0.85rem;
    color: #999;
    margin-left: 2px;
    align-self: flex-start;
    margin-top: 4px;
}

.brand-name__sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2196f3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
    padding-left: 2px;
}

/* Contact icon circles */
.brand-bar__icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #2196f3;
    color: #2196f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.brand-bar__contact:hover .brand-bar__icon-circle {
    background-color: #2196f3;
    color: #fff;
}

/* Contact text */
.brand-bar__city {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.brand-bar__phone {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.4;
}

/* ============================================================
   MAIN NAVBAR
   ============================================================ */
.main-navbar {
    background-color: #ffffff;
    border-top: 3px solid #2196f3; /* blue top accent line */
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
    padding: 0;
    min-height: 52px;
}

/* Nav links */
.main-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    padding: 14px 18px !important;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

/* Separator lines between nav items (the vertical pipe look) */
.main-navbar .nav-item--sep {
    border-left: 1px solid #ddd;
}

/* Active state */
.main-navbar .nav-link.active {
    color: #2196f3;
    font-weight: 600;
}

/* Underline indicator on active */
.main-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #2196f3;
    border-radius: 2px 2px 0 0;
}

/* Hover state */
.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus {
    color: #2196f3;
}

/* Dropdown caret tweak */
.main-navbar .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
}

/* Dropdown Menu */
.main-navbar .dropdown-menu {
    border: none;
    border-top: 3px solid #2196f3;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 200px;
    animation: dropdownFadeIn 0.18s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-navbar .dropdown-item {
    font-size: 0.86rem;
    color: #444;
    padding: 8px 20px;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.main-navbar .dropdown-item:hover {
    background-color: #e3f2fd;
    color: #1565c0;
}

/* Navbar toggler custom style */
.navbar-toggler {
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 4px;
    margin: 8px 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.25);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

/* Tablet & below: stack top-bar items */
@media (max-width: 767.98px) {
    .top-bar .row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .top-bar__tagline span {
        line-height: 1.4;
        display: block;
        padding: 6px 0 4px;
    }

    .top-bar .col-md-7 {
        width: 100%;
        justify-content: flex-start !important;
        padding-bottom: 6px;
    }

    .top-bar__socials {
        border-left: none;
        border-right: 1px solid #555;
        padding: 0 10px 0 0;
        height: auto;
    }

    .top-bar__email-block {
        padding: 4px 10px;
        height: auto;
        font-size: 0.72rem;
        flex-wrap: wrap;
        gap: 2px;
    }

    .brand-name__photonic,
    .brand-name__r {
        font-size: 1.6rem;
    }

    /* Navbar full width on mobile */
    .main-navbar .nav-item--sep {
        border-left: none;
        border-top: 1px solid #eee;
    }

    .main-navbar .nav-link {
        padding: 10px 16px !important;
    }

    .main-navbar .nav-link.active::after {
        display: none;
    }
}

/* Large screens: keep everything on one row */
@media (min-width: 992px) {
    .main-navbar .navbar-collapse {
        justify-content: center;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 420px;
    /* Deep blue gradient — dark left, slightly lighter right (matching reference) */
    background: linear-gradient(
        110deg,
        #072549 0%,
        #0d3b6e 35%,
        #1255a0 62%,
        #1a6bbf 80%,
        #1e7fd4 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Subtle diagonal mesh / noise overlay for depth */
.hero-section__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 20% 50%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse at 80% 20%,
            rgba(100, 180, 255, 0.08) 0%,
            transparent 55%
        );
    pointer-events: none;
    z-index: 1;
}

.hero-section > .container-fluid {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

/* ---------- LEFT CONTENT ---------- */
.hero-section__content {
    padding-right: 32px;
}

.hero-section__heading {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 16px;
    /* Subtle text shadow to pop on the blue bg */
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.hero-section__subtext {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 0;
}

/* ---------- CTA BUTTONS ---------- */
.hero-btn {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 5px;
    letter-spacing: 0.02em;
    transition: all 0.22s ease;
    cursor: pointer;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

/* Orange / Amber primary button */
.hero-btn--primary {
    background-color: #e8900a;
    background-image: linear-gradient(135deg, #f0a020 0%, #d4790a 100%);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 18px rgba(232, 144, 10, 0.45);
}

.hero-btn--primary:hover,
.hero-btn--primary:focus {
    background-image: linear-gradient(135deg, #f5b030 0%, #e0890a 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(232, 144, 10, 0.55);
}

/* Blue outline button */
.hero-btn--outline {
    background-color: #1e7fd4;
    background-image: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 18px rgba(21, 101, 192, 0.35);
}

.hero-btn--outline:hover,
.hero-btn--outline:focus {
    background-image: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(21, 101, 192, 0.5);
}

/* ---------- TRUST BADGES ---------- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
    cursor: default;
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-badge__icon {
    font-size: 0.82rem;
    color: #64b5f6; /* lighter blue icon */
}

/* ---------- RIGHT IMAGE COLUMN ---------- */
.hero-section__image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section__image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
}

/* Soft blue glow blob behind the product image */
.hero-section__glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(33, 150, 243, 0.35) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-section__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.07);
    /* Subtle float animation */
    animation: heroImageFloat 5s ease-in-out infinite;
}

.hero-section__video {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.07);
}

.hero-video-play-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(33, 150, 243, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.hero-video-play-btn:hover {
    background-color: #2196f3;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow:
        0 6px 25px rgba(33, 150, 243, 0.6),
        inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.hero-video-play-btn i {
    margin-left: 6px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(1.5);
}

@keyframes heroImageFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ---------- HERO RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-section__content {
        padding-right: 0;
        text-align: center;
    }

    .hero-section__cta {
        justify-content: center;
    }

    .hero-section__badges {
        justify-content: center;
    }

    .hero-section__image-col {
        margin-top: 36px;
    }

    .hero-section__image {
        max-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .hero-section__heading {
        font-size: 1.55rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-section__cta {
        flex-direction: column;
    }
}

/* news Tickers */
.news-ticker {
    background: #34699a;
    color: white;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    position: relative;
}

.ticker-title {
    background: #58a0c8;
    color: white;
    padding: 0 15px;
    font-weight: bold;
    white-space: nowrap;
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.ticker-items {
    display: flex;
    animation: ticker-scroll 16s linear infinite;
    white-space: nowrap;
    padding-left: 30px;
}

.ticker-item {
    margin-right: 50px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

/* Outer section — light silver/gray page bg */
.about-section {
    background-color: #e8edf3;
    padding: 48px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rounded card that holds both columns */
.about-section__card {
    width: 100%;
    max-width: 1300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 12px 40px rgba(0, 0, 0, 0.13);
    display: flex;
    min-height: 480px;
}

/* Make Bootstrap .row fill the card height */
.about-section__card .row {
    width: 100%;
    min-height: 480px;
}

/* ---- LEFT: Navy blue content panel ---- */
.about-panel {
    background-color: #1e3a73; /* deep navy — matches reference */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

/* scrollable body area above badge bar */
.about-panel__body {
    flex: 1;
    padding: 44px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Small label / eyebrow */
.about-panel__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

/* Main heading */
.about-panel__heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Body paragraph */
.about-panel__text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
    margin-bottom: 32px;
}

/* Amber CTA button */
.about-btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 32px;
    border-radius: 6px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f9c323 0%, #e8a800 100%);
    border: none;
    box-shadow: 0 4px 18px rgba(232, 168, 0, 0.45);
    letter-spacing: 0.02em;
    transition: all 0.22s ease;
    cursor: pointer;
    white-space: nowrap;
}

.about-btn:hover,
.about-btn:focus {
    background: linear-gradient(135deg, #ffd040 0%, #f0b000 100%);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(232, 168, 0, 0.55);
}

/* ---- Bottom white badge bar ---- */
.about-panel__badges-bar {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0;
    flex-shrink: 0;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
    padding: 14px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    border-right: 1px solid #e5e5e5;
    transition: background-color 0.18s ease;
    cursor: default;
}

.about-badge:last-child {
    border-right: none;
}

.about-badge:hover {
    background-color: #f7f9fc;
}

/* Coloured badge icons */
.about-badge__icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.about-badge__icon--yellow {
    color: #f59e0b;
}
.about-badge__icon--orange {
    color: #f97316;
}
.about-badge__icon--red {
    color: #ef4444;
}

/* ---- RIGHT: Full-height photo column ---- */
.about-image-col {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-col:hover .about-image {
    transform: scale(1.03);
}

/* ---- ABOUT RESPONSIVE ---- */
@media (max-width: 991.98px) {
    .about-section {
        padding: 32px 16px;
    }

    .about-section__card {
        min-height: auto;
    }

    .about-section__card .row {
        min-height: auto;
        flex-direction: column;
    }

    .about-panel__body {
        padding: 36px 28px 28px;
    }

    .about-panel__heading {
        font-size: 1.75rem;
    }

    .about-image-col {
        order: -1;
    }

    .about-badge {
        flex: 1 1 33%;
        padding: 12px 12px;
        font-size: 0.72rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }

    .about-badge:last-child {
        border-right: none;
    }
}

@media (max-width: 575.98px) {
    .about-panel__body {
        padding: 28px 20px 24px;
    }

    .about-btn {
        align-self: stretch;
        justify-content: center;
    }

    .about-panel__badges-bar {
        flex-direction: column;
    }

    .about-badge {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        font-size: 0.8rem;
    }

    .about-badge:last-child {
        border-bottom: none;
    }
}

/* PRODUCTS SECTION  —  "Our Photoreactors" */

.products-section {
    background-color: #f5f7fa;
    padding: 60px 0 72px;
}

/* ---------- Section heading ---------- */
.products-section__header {
    margin-bottom: 36px;
}

.products-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

/* Decorative underline under the heading */
.products-section__title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #2196f3, #1565c0);
    border-radius: 2px;
    margin: 10px auto 0;
}

/* ---------- Product Card ---------- */
.product-card {
    border-radius: 14px;
    overflow: hidden;
    /* Blue gradient background — matches reference panels */
    background: linear-gradient(
        160deg,
        #0d3060 0%,
        #1255a0 45%,
        #1a72c8 75%,
        #2196f3 100%
    );
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.12),
        0 16px 40px rgba(13, 48, 96, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
    position: relative;
}

/* Subtle sheen overlay */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 0%,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    border-radius: 14px;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.16),
        0 24px 56px rgba(13, 48, 96, 0.28);
}

/* ---------- Card header ---------- */
.product-card__header {
    padding: 22px 24px 12px;
}

.product-card__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    margin: 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

/* ---------- Card image ---------- */
.product-card__img-wrap {
    width: 100%;
    /* Fixed height area for the image */
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.15);
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
    transform: scale(1.04);
}

/* ---------- Feature list ---------- */
.product-card__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
    padding: 16px 20px 12px;
    flex: 1;
}

.product-card__feat-col {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.product-card__feat-col li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.35;
}

.product-card__feat-col--right li strong {
    color: #fff;
    font-weight: 700;
}

/* Coloured bullet dots */
.feat-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feat-dot--yellow {
    background-color: #f59e0b;
}
.feat-dot--blue {
    background-color: #60c4ff;
}

/* ---------- Card footer / CTA button ---------- */
.product-card__footer {
    padding: 16px 20px 22px;
}

.product-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 7px;
    color: #ffffff;
    background: linear-gradient(135deg, #1976d2 0%, #0d47a1 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.02em;
    transition: all 0.22s ease;
}

.product-card__btn:hover,
.product-card__btn:focus {
    background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}

/* ---------- PRODUCTS RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .products-section {
        padding: 44px 0 56px;
    }

    .product-card__img-wrap {
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .product-card__features {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }

    .product-card__feat-col--right {
        padding-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .product-card__img-wrap {
        height: 200px;
    }
}

/* NEEDS SECTION  —  "Photoreactors for your needs" */

.needs-section {
    background-color: #ffffff;
    overflow: hidden;
    /* Min height so image column is tall enough */
    min-height: 520px;
}

/* The Bootstrap row needs to fill full height */
.needs-section > .row {
    min-height: 520px;
}

/* ---------- LEFT: Image column ---------- */
.needs-section__img-col {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    background-color: #0a0a14; /* very dark fallback */
}

/* Full-cover image */
.needs-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88);
    transition:
        transform 0.6s ease,
        filter 0.4s ease;
}

.needs-section__img-col:hover .needs-section__img {
    transform: scale(1.04);
    filter: brightness(0.95);
}

/* Bottom-to-top dark gradient overlay (makes watermark readable) */
.needs-section__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.05) 100%
    );
    pointer-events: none;
}

/* Large watermark / background text  */
.needs-section__watermark {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: -4px;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
}

/* ---------- RIGHT: Text content ---------- */
.needs-section__content {
    padding: 56px 56px 52px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

/* Heading */
.needs-section__heading {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.22;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
}

/* Intro paragraph */
.needs-section__intro {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.68;
    margin-bottom: 16px;
}

/* Bullet list */
.needs-section__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.needs-section__list li {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
}

.needs-section__list li strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* Body paragraphs */
.needs-section__body {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.68;
    margin-bottom: 16px;
}

.needs-section__body:last-of-type {
    margin-bottom: 28px;
}

/* Inline link (e.g. "Applications Page") */
.needs-section__inline-link {
    color: #2196f3;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.18s ease;
}

.needs-section__inline-link:hover {
    color: #1565c0;
}

/* ---------- CTA Button (THEME BLUE) ---------- */
.needs-section__cta {
    margin-top: 6px;
}

.needs-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 40px;
    border-radius: 5px;
    color: #ffffff;
    background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
    border: none;
    box-shadow: 0 4px 18px rgba(33, 150, 243, 0.4);
    transition: all 0.22s ease;
    cursor: pointer;
    min-width: 180px;
}

.needs-section__btn:hover,
.needs-section__btn:focus {
    background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(33, 150, 243, 0.5);
}

/* ---------- NEEDS RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .needs-section,
    .needs-section > .row {
        min-height: auto;
    }

    .needs-section__img-col {
        min-height: 300px;
    }

    .needs-section__content {
        padding: 40px 28px 44px;
    }

    .needs-section__heading {
        font-size: 1.65rem;
    }
}

@media (max-width: 575.98px) {
    .needs-section__content {
        padding: 32px 20px 40px;
    }

    .needs-section__btn {
        width: 100%;
    }

    .needs-section__watermark {
        font-size: 5rem;
    }
}

/* Application Section */
.applications-section {
    background: linear-gradient(
        135deg,
        #072549 0%,
        #0d3b6e 40%,
        #1255a0 75%,
        #1a6bbf 100%
    );
    padding: 60px 0 56px;
    overflow: hidden;
    position: relative;
}

/* Subtle mesh overlay for depth — matches hero */
.applications-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 15% 50%,
            rgba(255, 255, 255, 0.04) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 85% 20%,
            rgba(100, 180, 255, 0.07) 0%,
            transparent 50%
        );
    pointer-events: none;
}

/* ---------- Section Heading ---------- */
.applications-section__header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.applications-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    margin-bottom: 8px;
}

/* Decorative underline — amber accent */
.applications-section__title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #e8a800);
    border-radius: 2px;
    margin: 10px auto 0;
}

.applications-section__subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
}

/* ---------- Cards Track ---------- */
.applications-section__track {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ---------- Application Card ---------- */
.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex: 0 0 calc(20% - 16px);
    max-width: 200px;
    cursor: pointer;
    transition: transform 0.26s ease;
}

.app-card:hover {
    transform: translateY(-6px);
}

/* Image wrapper: white rounded card */
.app-card__img-wrap {
    width: 200px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.18),
        0 1px 4px rgba(0, 0, 0, 0.1);
    transition:
        box-shadow 0.26s ease,
        transform 0.26s ease;
}

.app-card:hover .app-card__img-wrap {
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.28),
        0 2px 8px rgba(0, 0, 0, 0.14);
    transform: scale(1.04);
}

.app-card__img {
    width: 98%;
    height: 98%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 14px;
}

.app-card:hover .app-card__img {
    transform: scale(1.06);
}

/* ---------- Card Label ---------- */
.app-card__label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    margin: 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.app-card:hover .app-card__label {
    color: #ffffff;
}

/* Bold / highlighted variant */
.app-card__label--bold {
    font-weight: 700;
    color: #60c4ff;
}

.app-card:hover .app-card__label--bold {
    color: #90d8ff;
}

/* ---------- CTA Row with decorative lines ---------- */
.applications-section__cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 44px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Decorative horizontal lines */
.applications-section__deco-line {
    flex: 1;
    max-width: 160px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    border-radius: 1px;
    display: block;
}

/* CTA Button */
.applications-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: none;
    padding: 13px 36px;
    border-radius: 6px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d3b6e 0%, #072549 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    transition: all 0.22s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.applications-section__btn:hover,
.applications-section__btn:focus {
    background: linear-gradient(135deg, #1255a0 0%, #0d3b6e 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* ---------- APPLICATIONS RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .applications-section {
        padding: 48px 0 44px;
    }

    .applications-section__track {
        gap: 16px;
    }

    .app-card {
        flex: 0 0 calc(33.33% - 14px);
    }

    .app-card__img-wrap {
        width: 120px;
        height: 105px;
    }

    .applications-section__deco-line {
        max-width: 80px;
    }
}

@media (max-width: 575.98px) {
    .applications-section {
        padding: 40px 0 40px;
    }

    .applications-section__track {
        gap: 14px;
    }

    .app-card {
        flex: 0 0 calc(50% - 12px);
        max-width: 160px;
    }

    .app-card__img-wrap {
        width: 110px;
        height: 95px;
    }

    .applications-section__btn {
        font-size: 0.82rem;
        padding: 12px 24px;
    }

    .applications-section__deco-line {
        max-width: 40px;
    }
}

.why-section {
    overflow: hidden;
    background-color: #f8faff;
    padding: 0;
}

.why-section > .row {
    min-height: 520px;
}

/* ---------- LEFT: Modern Blue Panel ---------- */
.why-panel {
    /* Rich deep-to-bright blue gradient */
    background: linear-gradient(135deg, #072549 0%, #0d3b6e 40%, #1a6bbf 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Subtle light effect in top corner */
.why-panel::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.why-panel__body {
    flex: 1;
    padding: 60px 56px 48px;
    position: relative;
    z-index: 2;
}

.why-panel__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.why-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-panel__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-panel__item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.why-panel__item strong {
    color: #60c4ff;
    font-weight: 700;
}

/* Icon Box styling */
.why-panel__icon-box {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #2196f3 0%, #1565c0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    transition: transform 0.3s ease;
}

.why-panel__item:hover .why-panel__icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* ---------- BOTTOM BADGE BAR (REFINED) ---------- */
.why-panel__badges-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.why-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0;
    padding: 20px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease;
}

.why-badge:last-child {
    border-right: none;
}

.why-badge:hover {
    background: rgba(255, 255, 255, 0.08);
}

.why-badge__icon {
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.why-badge__icon--yellow {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.why-badge__icon--orange {
    color: #ff8c00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.4);
}
.why-badge__icon--red {
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
}

/* ---------- RIGHT: Full-height Photo Column ---------- */
.why-image-col {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-image-col:hover .why-image {
    transform: scale(1.08);
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 991.98px) {
    .why-panel__body {
        padding: 48px 32px;
    }

    .why-image-col {
        min-height: 320px;
        order: -1;
    }

    .why-badge {
        padding: 16px;
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 575.98px) {
    .why-panel__body {
        padding: 36px 20px;
    }

    .why-panel__list {
        gap: 16px;
    }

    .why-panel__item {
        padding: 12px 16px;
        font-size: 0.9rem;
        gap: 12px;
    }
}

.challenges-section {
    background-color: #f5f7fa;
    padding: 60px 0 72px;
}

.challenges-section__title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #1a2a47;
    margin-bottom: 40px;
    letter-spacing: -0.2px;
}

.challenges-section__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.challenge-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    text-align: start;
    gap: 16px;
    min-width: 240px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef1f6;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.challenge-card__text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5a77;
}

.challenge-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.challenge-card__icon--teal {
    background-color: #e0f2f1;
    color: #00796b;
}

.challenge-card__icon--orange {
    background-color: #fff3e0;
    color: #e65100;
}

.challenge-card__icon--green {
    background-color: #e8f5e9;
    color: #2e7d32;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767.98px) {
    .challenges-section {
        padding: 44px 0 52px;
    }

    .challenge-card {
        width: 100%;
        min-width: auto;
    }
}

.institutions-section {
    background-color: #ffffff;
    padding: 40px 0 50px;
}

.institutions-section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

/* Flanking lines */
.institutions-section__header::before,
.institutions-section__header::after {
    content: "";
    height: 1.5px;
    background-color: #e0e0e0;
    flex: 1;
    max-width: 400px;
}

.institutions-section__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2a47;
    margin: 0;
}

.institutions-section__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 60px;
}

.institution-logo {
    max-width: 140px;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.institution-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.institution-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================================
   SCIENTIFIC VALIDATION SECTION
   ============================================================ */

.validation-section {
    background: linear-gradient(135deg, #072549 0%, #0d3b6e 50%, #154c8a 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.validation-section__content {
    padding: 15px;
    z-index: 2;
}

.validation-section__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.validation-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.validation-section__item {
    display: flex;
    align-items: center;
    text-align: start;
    gap: 14px;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.validation-section__icon {
    font-size: 1.2rem;
    color: #60c4ff;
}

.validation-btn {
    background: linear-gradient(135deg, #f9c323 0%, #e8a800 100%);
    color: #1a1a1a;
    border: none;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(232, 168, 0, 0.4);
    transition: all 0.22s ease;
}

.validation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(232, 168, 0, 0.5);
    color: #111;
}

/* Paper Previews */
.validation-section__previews {
    padding: 40px 0;
    z-index: 2;
}

.paper-previews {
    display: flex;
    justify-content: center;
    gap: 15px;
    perspective: 1000px;
}

.paper-preview {
    width: 140px;
    height: 190px;
    background: #ffffff;
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.paper-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.paper-preview:nth-child(even) {
    transform: translateY(-20px) rotate(-2deg);
}

.paper-preview:nth-child(odd) {
    transform: rotate(2deg);
}

.paper-preview:hover {
    transform: translateY(-30px) scale(1.1) rotate(0deg);
    z-index: 10;
}

/* Scientist Image */
.validation-section__img-col {
    padding: 0;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.validation-scientist-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-20px 0 30px rgba(0, 0, 0, 0.3));
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
    .institutions-section__header::before,
    .institutions-section__header::after {
        max-width: 200px;
    }
}

@media (max-width: 991.98px) {
    .institutions-section__header {
        flex-direction: column;
        gap: 10px;
    }
    .institutions-section__header::before,
    .institutions-section__header::after {
        display: none;
    }

    .validation-section__img-col {
        display: none;
    }

    .validation-section__list {
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .paper-preview {
        width: 100px;
        height: 140px;
    }

    .paper-previews {
        gap: 10px;
    }
}

.stats-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 auto;
    justify-content: center;
}

/* Dotted circular border */
.stat-item__icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px dashed #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.stat-item__icon-wrapper--blue {
    /* border-color: #0d3b6e; */
    color: #f97316;
}

.stat-item__icon-wrapper--orange {
    border-color: #f97316;
    color: #f97316;
}

.stat-item__content {
    display: flex;
    flex-direction: column;
}

.stat-item__number {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-item__number--orange {
    color: #072549;
}

.stat-item__number--navy {
    color: #072549;
}

.stat-item__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5a77;
    margin: 4px 0 0;
}

/* Vertical Divider */
.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
    margin: 0 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 40px 0;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        flex: 1 1 50%;
    }
}

@media (max-width: 575.98px) {
    .stat-item {
        flex: 1 1 100%;
        justify-content: flex-start;
        padding-left: 15%;
    }
}

.blog-section {
    padding: 80px 0;
    background-color: #f8faff;
}

.blog-section__header {
    margin-bottom: 50px;
}

.blog-section__kicker {
    font-size: 0.85rem;
    font-weight: 700;
    color: #f97316;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.blog-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #072549;
    line-height: 1.2;
}

.blog-section__underline {
    width: 60px;
    height: 4px;
    background-color: #f97316;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Base Card */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__img-wrapper {
    overflow: hidden;
    background-color: #eef1f6;
}

.blog-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.blog-card:hover .blog-card__img-wrapper img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.blog-card__body {
    padding: 24px;
}

.blog-card__title {
    color: #1a2a47;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card__title {
    color: #f97316;
}

/* Featured Card Vertical Layout */
.blog-card--featured {
    display: flex;
    flex-direction: column;
}

.blog-card--featured .blog-card__img-wrapper {
    height: 320px;
}

.blog-card--featured .blog-card__title {
    font-size: 1.4rem;
}

.blog-card .blog-card__excerpt {
    color: #6a7c92;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Small Card Horizontal Layout */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.blog-card--small {
    display: flex;
    flex-direction: row;
}

.blog-card--small .blog-card__img-wrapper {
    width: 160px;
    height: 100%;
    flex-shrink: 0;
}

.blog-card--small .blog-card__body {
    padding: 20px;
}

.blog-card--small .blog-card__title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-card__meta {
    font-size: 0.82rem;
    color: #8a9cb2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .blog-card--small {
        flex-direction: column;
    }
    .blog-card--small .blog-card__img-wrapper {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding: 60px 0;
    }
    .blog-card--featured .blog-card__img-wrapper {
        height: 240px;
    }
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #072549 0%, #0d3b6e 50%, #1a6bbf 100%);
    overflow: hidden;
}

.testimonials__header {
    margin-bottom: 60px;
}

.testimonials__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Testimonial Card (Glassmorphism) */
.testimonial-card {
    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: 36px 32px;
    color: #ffffff;
    transition: all 0.35s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.testimonial-card__profile {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card__profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-card__title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.testimonial-card__stars {
    color: #f9b115;
    font-size: 0.85rem;
}

.testimonial-card__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
}

/* Custom Owl Dots */
.testimonials-section .owl-dots {
    margin-top: 50px !important;
}

.testimonials-section .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transition: all 0.2s ease !important;
}

.testimonials-section .owl-dot.active span,
.testimonials-section .owl-dot:hover span {
    width: 30px !important;
    background: #ffffff !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767.98px) {
    .testimonials-section {
        padding: 70px 0;
    }
    .testimonial-card {
        padding: 28px 24px;
    }
}

.faq-section {
    padding: 100px 0;
    background-color: #fbfcff;
}

.faq-section__header {
    margin-bottom: 50px;
}

.faq-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #072549;
}

.faq-section__underline {
    width: 60px;
    height: 4px;
    background-color: #f97316;
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Modern Accordion Customization */
.faq-section .accordion-item {
    border: none !important;
    background: transparent !important;
    margin-bottom: 20px;
}

.faq-section .accordion-button {
    background-color: #ffffff !important;
    color: #072549 !important;
    border-radius: 12px !important;
    font-weight: 700;
    padding: 20px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-section .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #f97316 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
    border-color: #f97316;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-button:focus {
    box-shadow: none !important;
    border-color: #f97316;
}

.faq-section .accordion-collapse {
    margin-top: -10px;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.faq-section .accordion-body {
    padding: 30px 25px 20px;
    color: #4a5a77;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 575.98px) {
    .faq-section {
        padding: 40px 0;
    }
    .faq-section .accordion-button {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.4rem;
    }
}

.cta-section {
    background-color: #072549;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.cta-line {
    height: 1px;
    background: #e0e0e0;
    flex: 1;
    max-width: 150px;
}

.cta-btn {
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn--orange {
    background-color: #f9a825;
    color: #1a2a47;
}

.cta-btn--navy {
    background-color: #0d3b66;
    color: #ffffff;
}

.cta-btn--navy:hover {
    background-color: #124c82;
    color: #ffffff;
}

.main-footer {
    background-color: #0d3b66;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.footer-underline {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    width: 100%;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f9a825;
}

.footer-links i {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-box {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-box:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.social-box.fb {
    background-color: #3b5998;
}
.social-box.google {
    background-color: #db4437;
}
.social-box.mail {
    background-color: #00bcd4;
}

.info-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-policy {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-policy:hover {
    color: #ffffff;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991.98px) {
    .main-footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom {
        justify-content: center !important;
        text-align: center;
    }
}
/* ============================================================
   BREADCRUMB SECTION
   ============================================================ */
.breadcrumb-section {
    position: relative;
    padding: 30px 0;
    background-color: #072549; /* fallback deep blue */
    background:
        linear-gradient(rgba(7, 37, 73, 0.85), rgba(7, 37, 73, 0.85)),
        url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80&w=2070")
            no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    overflow: hidden;
}

.breadcrumb-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(33, 150, 243, 0.15) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.breadcrumb-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-section .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    content: "\F285"; /* bootstrap-icons chevron-right unicode */
    font-family: "bootstrap-icons";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 12px;
    font-size: 0.8rem;
}

.breadcrumb-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #2196f3;
}

.breadcrumb-section .breadcrumb-item.active {
    color: #2196f3;
    font-weight: 600;
}

/* Breadcrumb Responsive */
@media (max-width: 767.98px) {
    .breadcrumb-section {
        padding: 60px 0;
    }

    .breadcrumb-section__title {
        font-size: 1.75rem;
    }
}

/* ============================================================
   FEATURED INSTRUMENT SECTION (About Us Page)
   ============================================================ */
.featured-instrument {
    background-color: #f8fafd;
}

.featured-instrument__kicker {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8a99af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-instrument__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #072549;
}

.featured-instrument__card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}

.featured-instrument__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-instrument__card--main {
    background: #ffffff;
}

.featured-instrument__card--navy {
    background: #072549;
}

.featured-instrument__card--white {
    background: #ffffff;
}

.btn-navy {
    background-color: #072549;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-navy:hover {
    background-color: #0d3b6e;
    color: #ffffff;
    transform: translateY(-2px);
}

.text-cyan {
    color: #00f2ff !important;
}

.text-navy {
    color: #072549 !important;
}

.instrument-img {
    max-height: 250px;
    object-fit: contain;
}

.featured-instrument__variable-tile {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.featured-instrument__variable-tile:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.tile-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.tile-value {
    font-size: 1.1rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .featured-instrument__card--main .p-5 {
        padding: 2rem !important;
    }

    .featured-instrument__title {
        font-size: 1.8rem;
    }
}

/* --- Clinical-Grade Engineering --- */
.clinical-engineering {
    padding: 100px 0;
    background-color: #ffffff;
}

.clinical-engineering__image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clinical-engineering__image {
    width: 100%;
    height: auto;
    display: block;
}

.clinical-engineering__content {
    padding-left: 20px;
}

.clinical-engineering__title {
    font-size: 32px;
    font-weight: 700;
    color: #002d5b; /* Dark blue from existing design */
    margin-bottom: 24px;
}

.clinical-engineering__text {
    font-size: 16px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 32px;
}

.clinical-engineering__badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.clinical-engineering__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #002d5b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clinical-engineering__badge i {
    color: #20c997; /* Teal color for the checkbox */
    font-size: 18px;
}

@media (max-width: 991px) {
    .clinical-engineering {
        padding: 60px 0;
    }
    .clinical-engineering__content {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Team Section */
.team-section {
    background-color: #f8fafd;
    padding: 100px 0;
}

.team-section-header {
    margin-bottom: 60px;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease;
    cursor: pointer;
    background: #ffffff;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-card__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card__img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px 24px;
    background: linear-gradient(
        to top,
        rgba(7, 37, 73, 0.95) 0%,
        rgba(7, 37, 73, 0.7) 60%,
        transparent 100%
    );
    color: #ffffff;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
    padding-bottom: 35px;
}

.team-overlay h5 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    color: #f9a825;
}

.team-overlay .team-role {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover .team-overlay p {
    opacity: 1;
    max-height: 120px;
    margin-top: 15px;
}

/* Avatar Stack Utility */
.avatar-stack img:not(:first-child) {
    margin-left: -15px;
}

/* ============================================================
   CAREERS SECTION
   ============================================================ */
.careers-section {
    background-color: #f8fafd;
    padding: 100px 0;
    font-family: "Inter", sans-serif;
}

.careers-header {
    text-align: center;
    margin-bottom: 60px;
}

.careers-header h2 {
    color: #072549;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.text-theme-orange {
    color: #f9a825;
}

.careers-header p {
    color: #6a7c92;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.careers-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.careers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.careers-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    align-self: flex-start;
}

.bg-badge-blue {
    background-color: #1a6bbf;
}
.bg-badge-navy {
    background-color: #0d3b66;
}
.bg-badge-orange {
    background-color: #f97316;
}

.careers-job-title {
    color: #072549;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.careers-location {
    color: #6a7c92;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.careers-req-title {
    color: #072549;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.careers-requirements {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.careers-requirements li {
    color: #6a7c92;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.careers-requirements li i {
    font-size: 1.1rem;
    margin-top: -2px;
}

.text-theme-cyan {
    color: #00bcd4 !important;
}

.careers-apply-btn {
    width: 100%;
    background-color: #072549;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 0;
    border: none;
    transition: all 0.3s ease;
}

.careers-apply-btn:hover {
    background-color: #f9a825;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Modal Light Theme */
.b-light-modal {
    background-color: #ffffff;
    color: #072549;
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.b-light-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.b-light-modal .modal-title {
    color: #072549;
    font-weight: 700;
}

.b-light-modal .form-control {
    background-color: #f8fafd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #072549;
}

.b-light-modal .form-control:focus {
    background-color: #ffffff;
    border-color: #f9a825;
    box-shadow: 0 0 0 0.25rem rgba(249, 168, 37, 0.25);
    color: #072549;
}

.b-light-modal .form-label {
    font-size: 0.9rem;
    color: #4a5a77;
    font-weight: 600;
}

/* TECHNOLOGY SECTION */
.technology-section {
    background: #f8f9fb;
}

.technology-section__title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0d3b66;
}

.technology-section__subtitle {
    max-width: 700px;
    margin: 10px auto 0;
    color: #6c757d;
}

/* Steps */
.tech-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.tech-step__icon {
    width: 50px;
    height: 50px;
    background: #0d3b66;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.tech-step__content h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.tech-step__content p {
    margin: 0;
    color: #6c757d;
}

/* Visual */
.technology-visual__img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Floating Badges */
.tech-badge {
    position: absolute;
    background: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.tech-badge--1 {
    top: 10%;
    left: 5%;
}

.tech-badge--2 {
    bottom: 20%;
    right: 5%;
}

.tech-badge--3 {
    top: 50%;
    left: 10%;
}

/* Wrapper */
.precision-innovation__image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

/* Overlay for depth */
.precision-innovation__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 59, 102, 0.7),
        rgba(0, 0, 0, 0.4)
    );
}

/* Floating badges */
.precision-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #0d3b66;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

/* Positions */
.precision-badge--1 {
    top: 20%;
    left: 10%;
}

.precision-badge--2 {
    bottom: 25%;
    right: 10%;
}

.precision-badge--3 {
    top: 55%;
    left: 20%;
}
