/* ============================================================
   ABOUT & PRODUCTS PAGE SPECIFIC STYLES
   ============================================================ */

/* ---------- About Page: Photonic Paradigm ---------- */
.photonic-paradigm {
    background-color: #fbfcff;
}

.photonic-paradigm__kicker {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: #072549; /* Dark navy */
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.photonic-paradigm__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5a77;
}

.photonic-paradigm__highlight {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0d3b6e;
}

.photonic-paradigm__images {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    position: relative;
}

.photonic-paradigm__image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.photonic-paradigm__image-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.photonic-paradigm__image-wrap--small {
    width: 38%;
    aspect-ratio: 1/1;
}

.photonic-paradigm__image-wrap--large {
    width: 55%;
    aspect-ratio: 4/5;
}

.photonic-paradigm__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .photonic-paradigm__images {
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .photonic-paradigm__images {
        flex-direction: column;
        gap: 20px;
    }

    .photonic-paradigm__image-wrap {
        width: 100% !important;
        aspect-ratio: auto;
    }
}

/* ---------- Core Systems (Products Index) ---------- */
.core-systems {
    padding: 80px 0;
    background-color: #fff;
}

.core-systems__header {
    margin-bottom: 50px;
}

.core-systems__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #041a35;
    position: relative;
    display: inline-block;
}

.core-systems__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #ffb115;
}

.core-systems__description {
    color: #4a5a77;
    font-size: 1.1rem;
    line-height: 1.6;
}

.core-system-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.core-system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-system-card__image-wrapper {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.core-system-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.core-system-card:hover .core-system-card__image {
    transform: scale(1.1);
}

.core-system-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.core-system-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #041a35;
    margin-bottom: 12px;
}

.core-system-card__text {
    color: #4a5a77;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.core-system-card__link {
    font-weight: 700;
    font-size: 0.85rem;
    color: #041a35;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.core-system-card__link span {
    transition: transform 0.3s ease;
}

.core-system-card__link:hover span {
    transform: translateX(5px);
}

/* ---------- About Page: Featured Instrument ---------- */
.featured-instrument {
    background-color: #f8fafc;
}

.featured-instrument__kicker {
    color: #ffb115;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.featured-instrument__title {
    color: #041a35;
    font-weight: 800;
}

.featured-instrument__card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-instrument__card--main {
    background: #fff;
    border: 1px solid #eee;
}

.featured-instrument__card--navy {
    background: #041a35;
    color: #fff;
}

.featured-instrument__card--white {
    background: #fff;
    border: 1px solid #eee;
}

.featured-instrument__variable-tile {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
}

.tile-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffb115;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

/* ---------- About Page: Precision Innovation ---------- */
.precision-innovation {
    background-color: #fff;
}

.precision-innovation__image-col {
    overflow: hidden;
}

.precision-innovation__bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.precision-innovation__title {
    color: #041a35;
    font-weight: 800;
    font-size: 2.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f0f4f8;
    color: #041a35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ---------- About Page: CTA ---------- */
.about-cta__wrapper {
    background: linear-gradient(135deg, #041a35 0%, #072549 100%);
}

.text-accent {
    color: #38e9bb;
}

.btn-accent {
    background-color: #ffb115;
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #e5a013;
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #041a35;
}

/* ---------- Sub-Product Page: Hero ---------- */
.subproduct-hero {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.subproduct-hero__title {
    font-size: 4rem;
    font-weight: 900;
    color: #041a35;
    margin-bottom: 20px;
}

.btn-order-now {
    background-color: #ffb115;
    color: #fff !important;
    padding: 12px 35px;
    font-weight: 700;
    border: none;
    outline: none;
    border-radius: 50px;
    display: inline-block;
}

.subproduct-hero__tagline {
    font-size: 1.5rem;
    color: #041a35;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 30px;
}

.subproduct-hero__description {
    font-size: 1.1rem;
    color: #4a5a77;
    line-height: 1.8;
}

.subproduct-hero__description a {
    color: #041a35;
    font-weight: 700;
    text-decoration: underline;
}

.subproduct-hero__features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.subproduct-hero__features li {
    font-weight: 700;
    color: #041a35;
    display: flex;
    align-items: center;
}

.subproduct-hero__features li::before {
    content: "•";
    color: #ffb115;
    font-size: 1.5rem;
    margin-right: 10px;
}

.subproduct-hero__footer-text {
    font-size: 1rem;
    color: #4a5a77;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Sub-product Sidebar */
.subproduct-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.subproduct-sidebar__image-container {
    margin-bottom: 30px;
    text-align: center;
}

.subproduct-sidebar__image {
    max-width: 100%;
    height: auto;
}

.subproduct-sidebar__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 15px;
}

.subproduct-sidebar__text {
    font-size: 0.95rem;
    color: #4a5a77;
    margin-bottom: 20px;
}

.btn-product-details {
    background-color: #041a35;
    color: #fff !important;
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .subproduct-hero__title {
        font-size: 3rem;
    }
    .photonic-paradigm__images {
        height: 350px;
        margin-top: 40px;
    }
}

/* ---------- Product Spotlight ---------- */
.product-spotlight {
    padding: 100px 0;
    background-color: #fff;
}

.spotlight-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.spotlight-image-container .main-image {
    width: 100%;
    height: auto;
    display: block;
}

.spotlight-badge-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.spotlight-badge {
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.badge-dark {
    background: rgba(4, 26, 53, 0.9);
    color: #fff;
}

.badge-accent {
    background: rgba(255, 177, 21, 0.9);
    color: #fff;
}

.badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.badge-value {
    font-size: 1.1rem;
    font-weight: 800;
}

.spotlight-label {
    color: #ffb115;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.spotlight-title {
    font-size: 3rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 20px;
}

.spotlight-text {
    font-size: 1.1rem;
    color: #4a5a77;
    line-height: 1.8;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    border-left: 3px solid #38e9bb;
    padding-left: 20px;
}

.feature-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #041a35;
    margin-bottom: 5px;
}

.feature-item__text {
    font-size: 0.95rem;
    color: #4a5a77;
    margin-bottom: 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #041a35;
    font-weight: 700;
    text-decoration: underline;
}

.btn-download i {
    font-size: 1.2rem;
}

/* ---------- Photonic Advantage ---------- */
.photonic-advantage {
    padding: 100px 0;
    background-color: #f8fafc;
}

.advantage-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.advantage-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 20px;
}

.advantage-summary {
    font-size: 1.15rem;
    color: #4a5a77;
}

.advantage-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.advantage-icon-box {
    width: 60px;
    height: 60px;
    background: #e6f9f4;
    color: #041a35;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}

.advantage-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #041a35;
    margin-bottom: 15px;
}

.advantage-card__text {
    font-size: 0.95rem;
    color: #4a5a77;
    line-height: 1.6;
}

/* ---------- Clinical Engineering ---------- */
.clinical-engineering {
    padding: 100px 0;
    background-color: #fff;
}

.clinical-engineering__image-container {
    border-radius: 20px;
    overflow: hidden;
}

.clinical-engineering__image {
    width: 100%;
    height: auto;
}

.clinical-engineering__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 25px;
}

.clinical-engineering__text {
    font-size: 1.1rem;
    color: #4a5a77;
    line-height: 1.8;
    margin-bottom: 30px;
}

.clinical-engineering__badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.clinical-engineering__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: #041a35;
    font-size: 0.9rem;
}

.clinical-engineering__badge i {
    color: #38e9bb;
    font-size: 1.2rem;
}

/* ---------- Sub-Product Tabs ---------- */
.subproduct-tabs {
    background-color: #041a35; /* Dark navy, consistent with the reference image */
    padding: 80px 0;
}

.subproduct-tabs .nav-pills {
    border-bottom: none;
    gap: 20px;
}

.subproduct-tabs .nav-link {
    color: #ffb115;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.subproduct-tabs .nav-link.active {
    background-color: #ffb115 !important;
    color: #041a35 !important;
}

.subproduct-tabs .tab-content {
    margin-top: 50px;
}

.feature-bullet-list {
    list-style: none;
    padding: 0;
}

.feature-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #fff;
    font-size: 1.05rem;
}

.feature-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .subproduct-tabs .nav-pills {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   TECHNOLOGY PAGE - HERO SECTION
   ============================================================ */
.tech-hero {
    padding: 80px 0;
    background-color: #fcfdfe;
}

.molecular-badge {
    background-color: #04251e !important;
    color: #38e9bb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 16px;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(56, 233, 187, 0.2);
}

.tech-hero__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #041a35;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-cyan-gradient {
    color: #38e9bb;
    /* Optional: If a gradient is preferred over solid color */
    background: linear-gradient(90deg, #38e9bb 0%, #00b4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-hero__text {
    font-size: 1.15rem;
    color: #4a5a77;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-navy-dark {
    background-color: #041a35;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-navy-dark:hover {
    background-color: #0a2d5c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 26, 53, 0.15);
}

.btn-ghost-arrow {
    background-color: transparent;
    color: #041a35;
    font-weight: 700;
    padding: 12px 20px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost-arrow i {
    transition: transform 0.3s ease;
}

.btn-ghost-arrow:hover {
    color: #00b4d8;
}

.btn-ghost-arrow:hover i {
    transform: translateX(5px);
}

.synthesis-image-container {
    position: relative;
}

.synthesis-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.synthesis-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Stat Card */
.stat-card-floating {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 10;
    min-width: 220px;
}

.stat-card-floating__number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #38e9bb;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card-floating__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8a99af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.stat-card-floating__bar {
    height: 4px;
    width: 60px;
    background-color: #38e9bb;
    border-radius: 2px;
}

@media (max-width: 991.98px) {
    .stat-card-floating {
        left: 10px;
        padding: 20px 25px;
        min-width: 180px;
    }
}

/* ============================================================
   TECHNOLOGY PAGE - PRECISION PILLARS SECTION
   ============================================================ */
.precision-pillars {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.precision-pillars__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #041a35; /* Same dark navy as before */
    margin-bottom: 20px;
}

.precision-pillars__text {
    font-size: 1.05rem;
    color: #4a5a77;
    line-height: 1.6;
    margin-bottom: 0;
}

.precision-pillars__divider {
    border: none;
    border-top: 1px solid #dcdfe4;
    margin: 0;
    opacity: 1;
    width: 100%;
}

.precision-pillars__card {
    background: #ffffff;
    padding: 60px;
    border-radius: 4px;
}

.pillar-item {
    padding-right: 20px;
}

.pillar-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #041a35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pillar-icon-wrapper svg {
    color: #38e9bb;
    width: 24px;
    height: 24px;
}

.pillar-item__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #041a35;
    margin-bottom: 15px;
}

.pillar-item__text {
    font-size: 0.95rem;
    color: #4a5a77;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .precision-pillars__card {
        padding: 40px 30px;
    }
}

@media (max-width: 767.98px) {
    .precision-pillars__card {
        padding: 30px 20px;
    }
    .pillar-item {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .pillar-item:last-child {
        margin-bottom: 0;
    }
}

/* ============================================================
   TECHNOLOGY PAGE - SCALABILITY FRAMEWORK SECTION
   ============================================================ */
.scalability-framework {
    padding: 100px 0;
    background-color: #f8f9fa;
}

/* LEFT SIDE: Visual Grid */
.scalability-grid {
    display: flex;
    gap: 20px;
}

.scalability-grid__col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.scalability-grid__col--mt {
    margin-top: 40px;
}

.scalability-card {
    border-radius: 12px;
    padding: 30px;
    overflow: hidden;
}

.scalability-card--image {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    min-height: 250px;
}

.scalability-card--image img {
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.scalability-card--image-bg {
    background-color: #c0d3b6; /* Soft green */
    padding: 0;
    line-height: 0;
}

.scalability-card--image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.scalability-card--navy {
    background-color: #041a35;
    color: #ffffff;
}

.scalability-card--cyan {
    background-color: #38e9bb;
    color: #041a35;
}

.scalability-card__title-large {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 0;
    color: #ffffff;
    line-height: 1;
}

.scalability-card__title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 5px;
}

.scalability-card__text-small {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.scalability-card--cyan .scalability-card__text-small {
    color: #041a35;
    font-weight: 600;
    opacity: 0.8;
}

/* RIGHT SIDE: Content */
.scalability-kicker {
    font-size: 0.85rem;
    font-weight: 800;
    color: #38e9bb;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.scalability-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 40px;
}

.scalability-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.scalability-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.scalability-step__number {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #041a35;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.scalability-step__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 10px;
    margin-top: 5px;
}

.scalability-step__text {
    font-size: 1.05rem;
    color: #4a5a77;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .scalability-grid__col--mt {
        margin-top: 0;
    }
    .scalability-grid {
        flex-direction: column;
    }
    .scalability-title {
        font-size: 2.25rem;
    }
}

/* ============================================================
   TECHNOLOGY PAGE - ENTERPRISE INTEGRATION SECTION
   ============================================================ */
.enterprise-integration {
    padding: 100px 0;
    background: radial-gradient(circle at top center, #072549 0%, #031124 100%);
    position: relative;
}

.enterprise-integration__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.enterprise-integration__subtitle {
    font-size: 1.15rem;
    color: #8a99af; /* Light greyish blue */
    margin-bottom: 0;
    font-weight: 400;
}

.enterprise-card {
    background-color: rgba(
        9,
        36,
        68,
        0.4
    ); /* Slightly lighter navy, translucent */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 30px;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.enterprise-card:hover {
    transform: translateY(-5px);
    background-color: rgba(9, 36, 68, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.enterprise-card__icon {
    font-size: 1.75rem;
    color: #38e9bb; /* Cyan color */
    margin-bottom: 25px;
}

.enterprise-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.enterprise-card__text {
    font-size: 0.95rem;
    color: #8a99af;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .enterprise-integration__title {
        font-size: 2.25rem;
    }
}

/* ============================================================
   TECHNOLOGY PAGE - TECHNICAL BENCHMARKS SECTION
   ============================================================ */
.technical-benchmarks {
    padding: 100px 0;
    background-color: #f7fbff;
    background: radial-gradient(
        circle at top center,
        #f4f8fc 0%,
        #f9fcff 50%,
        #fcfdfe 100%
    );
    position: relative;
    z-index: 1;
}

.technical-benchmarks__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 50px;
}

.benchmarks-table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.benchmarks-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.benchmarks-table thead {
    background-color: #e6e9ee;
}

.benchmarks-table th {
    padding: 20px 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a5a77;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
}

/* Border radius for top corners of table */
.benchmarks-table th:first-child {
    border-top-left-radius: 12px;
}

.benchmarks-table th:last-child {
    border-top-right-radius: 12px;
}

.benchmarks-table td {
    padding: 25px 30px;
    vertical-align: middle;
    border-top: none;
    border-bottom: 1px solid #f0f2f5;
}

.benchmarks-table tbody tr:last-child td {
    border-bottom: none;
    /* Bottom corners if needed, though usually hidden by wrapper */
}

.benchmark-param {
    font-weight: 700;
    color: #041a35;
    font-size: 1.05rem;
    width: 35%;
}

.benchmark-range {
    color: #6c757d;
    font-size: 1.05rem;
    width: 35%;
}

.benchmark-metric {
    font-weight: 700;
    color: #1a5c48; /* Dark teal/green */
    font-family:
        "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    width: 30%;
}

@media (max-width: 767.98px) {
    .benchmarks-table th,
    .benchmarks-table td {
        padding: 15px 20px;
    }

    .benchmarks-table-wrapper {
        overflow-x: auto;
    }

    .benchmark-param,
    .benchmark-range,
    .benchmark-metric {
        white-space: nowrap;
    }

    .technical-benchmarks__title {
        font-size: 2.25rem;
    }
}

/* ---------- About Page: Mission & Vision ---------- */
.mission-vision {
    background-color: #fbfcff;
}

.mission-vision__card {
    background: #fff;
    padding: 45px 40px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mission-vision__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #041a35, #00b4d8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-vision__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(4, 26, 53, 0.1);
    border-color: rgba(4, 26, 53, 0.1);
}

.mission-vision__card:hover::before {
    opacity: 1;
}

.mission-vision__icon {
    width: 80px;
    height: 80px;
    background: rgba(4, 26, 53, 0.05);
    color: #041a35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.mission-vision__icon--vision {
    background: rgba(255, 177, 21, 0.1);
    color: #ffb115;
}

.mission-vision__card:hover .mission-vision__icon {
    transform: scale(1.1) rotate(5deg);
    background: #041a35;
    color: #fff;
}

.mission-vision__card:hover .mission-vision__icon--vision {
    background: #ffb115;
    color: #fff;
}

.mission-vision__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mission-vision__text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5a77;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .mission-vision__card {
        padding: 40px 30px;
    }
}

/* ---------- Branches Page ---------- */
.branch-section {
    padding: 80px 0;
    background-color: #fbfcff;
}

.branch-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #f0f4f8;
    position: relative;
    overflow: hidden;
}

.branch-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffb115, #ffcc66);
}

.branch-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.branch-img {
    width: 100%;
    height: 300px;
    background: #fdf6e7;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: #ffb115;
}

.branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.branch-title h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 20px;
}

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

.branch-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.branch-detail-item i {
    width: 32px;
    height: 32px;
    background: #f0f4f8;
    color: #041a35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.branch-content-card:hover .branch-detail-item i {
    background: #041a35;
    color: #fff;
}

.branch-detail-item p {
    margin: 0;
    color: #4a5a77;
    font-size: 1rem;
    line-height: 1.5;
}

.branch-map-card {
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f4f8;
}

.branch-map-card iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.branch-map-card:hover iframe {
    filter: grayscale(0);
}

/* ---------- Reviews Page Specific Styles ---------- */
.reviews-section {
    background-color: #fbfcff;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(4, 26, 53, 0.08);
}

.review-card__icon {
    font-size: 2.5rem;
    color: rgba(255, 177, 21, 0.2);
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 0.3s ease;
}

.review-card:hover .review-card__icon {
    color: rgba(255, 177, 21, 0.4);
    transform: rotate(-10deg);
}

.review-card__body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5a77;
    margin-bottom: 25px;
    font-style: italic;
}

.review-card__author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f4f8;
}

.review-card__name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 5px;
}

.review-card__position {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffb115;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* No Reviews State */
.no-reviews-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px dashed #e0e6ed;
}

.no-reviews-card i {
    font-size: 3.5rem;
    color: #cbd5e0;
}

.no-reviews-card h5 {
    color: #041a35;
    font-weight: 800;
    margin-bottom: 15px;
}

.no-reviews-card p {
    color: #4a5a77;
    margin-bottom: 0;
}

/* Review Form Section */
.review-form-wrap {
    margin-top: 80px;
}

.review-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-form-card__header {
    text-align: center;
    margin-bottom: 40px;
}

.review-form-card__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #041a35;
    margin-bottom: 12px;
}

.review-form-card__subtitle {
    color: #4a5a77;
    font-size: 1.1rem;
}

.review-form .form-label {
    font-weight: 700;
    color: #041a35;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.review-form .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.review-form .form-control:focus {
    background-color: #fff;
    border-color: #ffb115;
    box-shadow: 0 0 0 4px rgba(255, 177, 21, 0.1);
}

@media (max-width: 767.98px) {
    .review-form-card {
        padding: 30px 20px;
    }
}
