﻿:root {
    /* Core Brand Colors */
    --primary: #2D9CDB;
    --secondary: #1A365D;
    --dark: #1A365D;
    --text: #4F4F4F;
    /* Color Channel Breakdown (for dynamic alpha/rgba creation)
       #2D9CDB -> rgb(45, 156, 219)
       #1A365D -> rgb(26, 54, 93)
    */
    --primary-rgb: 45, 156, 219;
    --secondary-rgb: 26, 54, 93;
    /* Pre-computed Alpha Variants for Clean Reusability */
    --primary-alpha-03: rgba(var(--primary-rgb), 0.03);
    --primary-alpha-08: rgba(var(--primary-rgb), 0.08);
    --primary-alpha-10: rgba(var(--primary-rgb), 0.10);
    --primary-alpha-12: rgba(var(--primary-rgb), 0.12);
    --primary-alpha-18: rgba(var(--primary-rgb), 0.18);
    --primary-alpha-45: rgba(var(--primary-rgb), 0.45);
    --secondary-alpha-03: rgba(var(--secondary-rgb), 0.03);
    --secondary-alpha-06: rgba(var(--secondary-rgb), 0.06);
    --secondary-alpha-08: rgba(var(--secondary-rgb), 0.08);
    --secondary-alpha-10: rgba(var(--secondary-rgb), 0.10);
    --secondary-alpha-12: rgba(var(--secondary-rgb), 0.12);
    --secondary-alpha-14: rgba(var(--secondary-rgb), 0.14);
    --secondary-alpha-18: rgba(var(--secondary-rgb), 0.18);
    --secondary-alpha-25: rgba(var(--secondary-rgb), 0.25);
    --secondary-alpha-35: rgba(var(--secondary-rgb), 0.35);
    --secondary-alpha-92: rgba(var(--secondary-rgb), 0.92);
    /* Animation & Transitions */
    --transition: .35s ease;
    --transition-smooth: .55s cubic-bezier(.22,1,.36,1);
}
/* =========================================================
RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
body {
    background: #f5fbff;
    color: var(--text);
    overflow-x: hidden;
    font-weight: 400;
}
/* =========================================================
BACKGROUND EFFECTS
========================================================= */
body::before,
body::after {
    content: "";
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}
body::before {
    top: -120px;
    right: -80px;
    background: var(--primary-alpha-10);
}
body::after {
    top: 250px;
    left: -120px;
    background: var(--secondary-alpha-08);
}
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    opacity: .25;
    background-image: linear-gradient(rgba(14,93,246,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(14,93,246,.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}
canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
/* =========================================================
NAV SHELL
========================================================= */
.nav-shell {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    pointer-events: auto;
    transition: padding var(--transition-smooth);
}
.nav-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(255,255,255,.72);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: opacity var(--transition-smooth), backdrop-filter var(--transition-smooth);
}
.nav-shell.scrolled {
    padding: 0;
}
.nav-shell.scrolled::before {
    opacity: 1;
    border-bottom-color: rgba(255,255,255,.55);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}
/* =========================================================
NAVBAR
========================================================= */
.main-navbar {
    position: relative;
    width: min(95%, 1550px);
    margin: auto;
    height: 78px;
    padding-inline: 26px;
    border-radius: 24px;
    background: rgba(255,255,255,.35);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 20px 45px var(--secondary-alpha-08), inset 0 1px 0 rgba(255,255,255,.65);
    transition: width var(--transition-smooth), height var(--transition-smooth), padding var(--transition-smooth), border-radius var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
}
.main-navbar .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    padding-inline: 0;
}
/* =========================================================
NAVBAR SCROLLED
========================================================= */
.nav-shell.scrolled .main-navbar {
    width: 100%;
    height: 64px;
    padding-inline: 32px;
    border-radius: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
/* =========================================================
BRAND
========================================================= */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 0;
}
.brand-logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0,132,255,.15));
    transition: height var(--transition-smooth);
}
.nav-shell.scrolled .brand-logo-img {
    height: 40px;
}
/* =========================================================
NAV LINKS
========================================================= */
.acc-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 12px 18px !important;
    color: var(--dark) !important;
    font-weight: 600;
    border-radius: 12px;
    transition: color var(--transition-smooth), background var(--transition-smooth), transform var(--transition-smooth);
}
.acc-nav-link:hover,
.dropdown:hover .acc-nav-link {
    color: var(--primary) !important;
    background: var(--primary-alpha-08);
    transform: translateY(-2px);
}
.acc-nav-link::before {
    content: "";
    position: absolute;
    inset: auto 12px 8px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient( 90deg, var(--primary), var(--secondary) );
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}
.acc-dropdown-item {
    border-radius: 14px;
    padding: 13px 18px;
    font-weight: 500;
    transition: all .35s cubic-bezier(.22, 1, .36, 1);
}
.acc-dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-alpha-08), var(--secondary-alpha-06));
    color: var(--primary);
    transform: translateX(6px);
}
.dropdown:hover .acc-nav-link::before,
.acc-nav-link:hover::before {
    transform: scaleX(1);
}
.dropdown-toggle::after {
    display: none;
}
.dropdown-icon {
    font-size: .875em;
    display: flex;
    align-items: center;
    line-height: 1;
    position: relative;
    top: 1px;
    transition: transform .3s ease;
}
.custom-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}
/* =========================
MULTI LEVEL DROPDOWN
========================= */
.acc-list-menu {
    min-width: 280px;
    margin-top: 18px;
    padding: 14px;
    border: none;
    border-radius: 22px;
    background: linear-gradient( 145deg, rgba(255,255,255,.96), rgba(245,250,255,.92) );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 55px var(--secondary-alpha-14);
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateX(-25%) scale(.96);
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.nav-shell.scrolled .acc-list-menu {
    margin-top: 12px;
}
.custom-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-25%) scale(1);
}

.acc-list-menu > li {
    position: relative;
    list-style: none;
}
.acc-list-menu > li > .acc-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 16px;
    transition: var(--transition);
}
.acc-list-menu > li > .acc-dropdown-item.has-submenu {
    justify-content: space-between;
}
.acc-list-menu > li > .acc-dropdown-item:hover {
    background: linear-gradient( 90deg, var(--primary-alpha-12), var(--primary-alpha-03) );
    transform: translateX(6px);
}
.acc-list-menu > li > a i.bi-chevron-right {
transition: transform .3s ease;
}
.acc-list-menu > li:hover > a i.bi-chevron-right {
transform: translateX(4px);
}
/* =========================
SUBMENU
========================= */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 4px;
    min-width: 240px;
    padding: 12px;
    border: none;
    border-radius: 18px;
    background: linear-gradient( 145deg, rgba(255,255,255,.95), rgba(245,250,255,.92) );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 45px var(--secondary-alpha-12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
    z-index: 1000;
}
.acc-list-menu > li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.submenu .acc-dropdown-item {
    display: block;
    padding: 12px 15px;
    border-radius: 14px;
    transition: var(--transition);
}
.submenu .acc-dropdown-item:hover {
    background: linear-gradient( 90deg, var(--primary-alpha-12), var(--primary-alpha-03) );
    transform: translateX(6px);
}
/* =========================================
MEGA MENU
========================================= */
.mega-menu {
    width: min(1180px, calc(100vw - 80px));
    transform: translateX(-50%) scale(.96);
    border: none !important;
    border-radius: 22px;
    padding: 8px;
    margin-top: 18px;
    background: linear-gradient( 145deg, rgba(255,255,255,.96), rgba(245,250,255,.92) );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 55px var(--secondary-alpha-14);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
    overflow: hidden;
    display: block;
    left: 50%;
}
.nav-shell.scrolled .mega-menu {
    margin-top: 12px;
}
.mega-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}
.mega-wrapper {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}
.mega-image-box {
    position: relative;
    min-height: 420px;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
}
.mega-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.mega-image-box:hover .mega-image {
    transform: scale(1.08);
}
.mega-overlay {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient( to top, var(--secondary-alpha-92), rgba(26,54,93,.18) );
    color: #fff;
}
.mega-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.mega-overlay h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
}
.mega-overlay p {
    color: rgba(255,255,255,.82);
    margin-bottom: 24px;
    font-size: 15px;
}
.mega-content {
    padding: 28px;
    position: relative;
    z-index: 2;
}
.mega-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.mega-title::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(45,156,219,.45);
    animation: pulse 2s infinite;
}
.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-links li:not(:last-child) {
    margin-bottom: 14px;
}
.mega-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 18px;
    color: #0f172a;
    font-weight: 600;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.mega-links a:hover {
    background: linear-gradient( 90deg, var(--primary-alpha-12), var(--primary-alpha-03) );
    transform: translateX(6px);
    color: var(--primary);
}
.mega-links a i {
    opacity: 0;
    transform: translateX(-5px);
    transition: .3s ease;
}
.mega-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}
/* =========================================================
BUTTONS
========================================================= */
.btn-contact,
.btn-glass {
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    padding: 14px 34px;
    border-radius: 18px;
    font-weight: 700;
    transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}
.btn-contact {
    color: #fff;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
}
.btn-contact:hover {
    transform: translateY(-3px);
}

.btn-glass {
    border: 2px solid var(--primary-alpha-12);
    color: var(--secondary);
    background: linear-gradient( 135deg, rgba(255,255,255,.95), rgba(242,249,255,.88) );
}
.btn-glass:hover {
    transform: translateY(-3px);
    color: var(--primary);
}
.btn-contact:active,
.btn-glass:active {
    transform: translateY(0);
}
.btn-contact::before,
.btn-glass::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    transform: skewX(-25deg);
}
.btn-contact::before {
    left: -120%;
    width: 80%;
    background: linear-gradient( to right, transparent, rgba(255,255,255,.55), transparent );
    animation: shine 4s infinite;
}
.btn-glass::before {
    left: -130%;
    width: 65%;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.9), transparent );
    animation: flatShine 4s linear infinite;
}
/* =========================================================
MOBILE TOGGLE
========================================================= */
.mobile-toggle {
    font-size: 28px;
    color: #08162f;
}
.navbar-toggler {
    padding: 0;
    line-height: 1;
}
.mobile-menu-panel {
    width: 100% !important;
    border: none;
    background: linear-gradient( 135deg, rgba(255,255,255,.96), rgba(240,248,255,.96) );
    backdrop-filter: blur(40px);
}
.mobile-menu-panel .offcanvas-header {
    padding: 38px 20px 10px;
}
.acc-mobile-link {
    display: block;
    padding: 14px 0;
    font-size: 22px;
    font-weight: 700;
    color: #08162f;
}
.mobile-accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 16px 0;
    font-size: 22px;
    font-weight: 700;
    color: #08162f;
}
.accordion-button:not(.collapsed) {
    background: transparent !important;
    color: #08162f;
}
.accordion-button::after {
    filter: brightness(.3);
}
.acc-mobile-sub {
    padding-left: 18px;
    padding-bottom: 8px;
}
.mobile-submenu {
    margin-bottom: 6px;
}
.mobile-submenu-toggle {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
}
.mobile-submenu-toggle::after {
    content: "+";
    font-size: 22px;
    transition: .3s ease;
}
.mobile-submenu-toggle:not(.collapsed)::after {
    content: "−";
}
.acc-mobile-sub-inner {
    padding-left: 14px;
    padding-bottom: 8px;
}
.acc-mobile-sub-inner a,
.mobile-simple-link {
    display: block;
    text-decoration: none;
    color: #64748b;
    padding: 8px 0;
    font-size: 16px;
    transition: .3s ease;
}
.acc-mobile-sub-inner a:hover,
.mobile-simple-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.mobile-simple-link {
    padding-top: 14px;
}
/* HERO */
.hero {
    min-height: 100svh;
    padding: 160px 0 80px;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 40px;
    overflow: hidden;
}
.hero-desc {
    max-width: 650px;
    line-height: 1.9;
    opacity: .9;
    font-size: 1.05rem;
}
.hero-visual {
    position: relative;
    width: 100%;
    min-height: clamp(350px, 55vw, 540px);
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    overflow: visible;
}
.hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    animation: glowPulse 8s ease-in-out infinite;
}
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--primary-alpha-18);
}
.ring1 {
    width: 420px;
    height: 420px;
    animation: spinSlow 22s linear infinite;
}
.ring2 {
    width: 520px;
    height: 520px;
    border-style: dashed;
    animation: spinReverse 28s linear infinite;
}
.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 25px 50px var(--secondary-alpha-25));
    transition: transform var(--transition-smooth);
}
.hero-visual:hover .hero-img {
    transform: scale(1.03) translateY(-10px);
}
/* =========================================================
PRODUCTS SECTION
========================================================= */
.products-wrap {
    position: relative;
    padding: 90px 0 0;
    overflow: hidden;
}
.products-wrap::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -35px;
    height: 80px;
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(var(--secondary-alpha-10) 0%, rgba(20, 70, 140, 0.03) 45%, transparent 75%);
}
.products-section {
    position: relative;
    padding: 90px 70px;
    background: radial-gradient(circle at top left,#dceeff,transparent 30%), linear-gradient(180deg,#ffffff,#f7fbff);
    border-radius: 35px 35px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,70,160,.05), 0 8px 20px rgba(10,70,160,.03);
}
.products-section::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -35px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient( ellipse at center, var(--secondary-alpha-10) 0%, rgba(20,70,140,.03) 45%, transparent 75% );
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
}
/* =========================================================
PRODUCTS CAROUSEL
========================================================= */
#products-carousel .item {
    padding: 26px 18px 50px;
    transition: .45s ease;
}
#products-carousel .owl-item .product-card {
    opacity: .72;
    transform: scale(.88);
    transition: transform .45s ease, opacity .45s ease, box-shadow .45s ease;
}
#products-carousel .owl-item.active.center .product-card {
    opacity: 1;
    transform: scale(1);
    /*box-shadow: 0 30px 70px var(--secondary-alpha-12);
    background: linear-gradient( 145deg, rgba(255,255,255,.98), rgba(248,252,255,.95) ); */
}
.product-card {
    position: relative;
    padding: 44px 34px;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient( 145deg, rgba(255,255,255,.92), rgba(245,250,255,.88) );
    border: 1px solid rgba(255,255,255,.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 15px 40px rgba(15,55,120,.05), inset 0 1px 0 rgba(255,255,255,.9);
    transition: .45s ease;
    color: var(--secondary);
}
.product-icon {
    position: relative;
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.08);
}
.product-icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.05);
    transform-origin: center center;
    transition: transform .45s var(--transition-smooth);
}
#products-carousel .owl-item.active.center .product-icon img {
    transform: scale(1.25);
}
.product-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 18px;
    transition: .3s ease;
}
#products-carousel .owl-item.active.center h3 {
    color: var(--primary);
}
.product-card p {
    color: #687385;
    font-size: 17px;
    line-height: 1.9;
    margin: 0;
}
#products-carousel .owl-dots {
    margin-top: 12px;
    text-align: center;
}
#products-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 999px;
    background: var(--primary-alpha-18) !important;
    transition: .35s ease;
}
#products-carousel .owl-dot.active span {
    width: 42px;
    background: var(--primary) !important;
}
/* =========================================================
LEADERSHIP SECTION
========================================================= */
.leadership-section {
    position: relative;
    padding: 90px 0 70px;
    overflow: hidden;
}
.leadership-section::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -35px;
    height: 80px;
    filter: blur(18px);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(var(--secondary-alpha-10) 0%, rgba(20, 70, 140, 0.03) 45%, transparent 75%);
}
/* =========================================================
CARD ARCHITECTURE (EQUAL HEIGHT)
========================================================= */
.leader-card-wrapper {
    position: relative;
    margin-top: 125px;
    height: calc(100% - 125px);
    display: flex;
    flex-direction: column;
}
.leader-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 100px 36px 44px;
    box-shadow: 0 30px 60px var(--secondary-alpha-06);
    border: 1px solid rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
/* =========================================================
IMAGE & QUOTE REFINED
========================================================= */
.leader-img-wrap {
    position: absolute;
    top: -120px;
    left: 15%;
    transform: translateX(-15%);
    width: 160px;
    height: 160px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d3d3d3;
    border: 4px solid #ffffff;
    box-shadow: 10px 15px 15px var(--secondary-alpha-35);
    overflow: hidden;
    transition: transform 0.5s var(--transition-smooth), border-color 0.5s var(--transition-smooth);
}
.leader-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: scale-down;
    transition: transform 0.5s ease;
    transform: translateY(25px) scale(1.25);
}
.leader-quote {
    position: absolute;
    top: 40px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
    z-index: 2;
}
.leader-card-wrapper:hover {
    transform: translateY(-10px);
}
.leader-card-wrapper:hover .leader-card {
    box-shadow: 0 50px 100px var(--secondary-alpha-12);
}
.leader-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.leader-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    border-left: 4px solid #eef6fb;
    padding-left: 18px;
    margin-bottom: 24px;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.leader-footer {
    margin-top: auto;
}
.leader-name {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.leader-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1.5px;
}
/* =========================================================
COMMITMENT (TIMELINE) SECTION
========================================================= */
.commitment-section {
    position: relative;
    padding: 120px 0 0;
    border-radius: 35px 35px 0 0;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(10, 70, 160, 0.03);
}
.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    /* Fuses your brand colors seamlessly down the tracker wire (#1C3766 -> var(--secondary)) */
    background: linear-gradient(180deg, var(--secondary), var(--primary), #0D9CA6);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 80px;
    visibility: hidden;
    transform: translateY(40px) scale(0.96) rotateX(4deg);
    transform-origin: center top;
    /* Soft, custom cubic-bezier movement curve instead of a basic linear curve */
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-item.show {
    visibility: visible;
    transform: translateY(0);
}
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    font-size: 38px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    /* Replaced hardcoded shadow arrays with your dynamic primary glow metrics */
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.6);
    overflow: hidden;
}
.timeline-dot::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent, rgba(255, 255, 255, 0.1));
    top: -40%;
    left: -20%;
    transform: rotate(30deg);
}
.timeline-dot i {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary);
    /* Leverages primary channels for the text halo glow overlay */
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.8), 0 0 20px rgba(var(--primary-rgb), 0.45);
}
.timeline-content {
    width: 42%;
    padding: 35px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}
.timeline-content:hover {
    transform: translateY(-10px);
    /* Standardized hover box shadow depth to draw from your core primary token */
    box-shadow: 0 25px 60px rgba(var(--primary-rgb), 0.15);
}
.timeline-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--secondary);
}
.timeline-content p {
    line-height: 1.9;
    color: var(--text);
}
/* =========================================================
ECOSYSTEM & ALLIANCES SECTION
========================================================= */
.ecosystem-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: radial-gradient(circle at top right, #dceeff, transparent 30%), linear-gradient(180deg, #ffffff, #f7fbff);
    box-shadow: 0 20px 60px rgba(10, 70, 160, 0.05), 0 8px 20px rgba(10, 70, 160, 0.03);
}
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 50px;
    align-items: stretch;
}
/* Purpose Card UI Setup (Matching Premium Navy Style) */
.purpose-column {
    display: flex;
}
.purpose-brand-card {
    padding: 50px;
    border-radius: 40px;
    background: linear-gradient(135deg, #1C3766, #122544);
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(28, 55, 102, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.card-pill {
    align-self: flex-start;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(45, 156, 219, 0.15);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.purpose-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}
.purpose-text {
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.9;
    margin-bottom: 16px;
}
.purpose-subtext {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.75;
    font-style: italic;
    margin-bottom: 35px;
}
.partners-intro {
    margin-bottom: 40px;
}
.partners-intro .sub-badge {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
}
.partners-intro h3 {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 15px;
}
.partners-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}
/* Focus Matrix Grid Integration */
.focus-sectors-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sector-node {
    background: #ffffff;
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(45, 156, 219, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.sector-node:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(45, 156, 219, 0.08);
    border-color: rgba(45, 156, 219, 0.2);
}
.node-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.node-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.node-content p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}
/* =========================================================
PREMIUM FOOTER ARCHITECTURE
========================================================= */
.footer-wrap {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    border-top: 1px solid rgba(var(--secondary-rgb), 0.08);
    padding: 80px 0 30px;
    color: var(--text);
    z-index: 10;
}
.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(var(--primary-rgb), 0.15));
}
.footer-brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--secondary);
}
.footer-mantra {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.85;
}
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-contact-list i {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 2px;
    transition: transform var(--transition);
}
.footer-contact-list li:hover i {
    transform: scale(1.15);
}
.footer-contact-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color var(--transition);
}
.footer-contact-list a:hover {
    color: var(--primary);
}
.footer-divider {
    margin: 50px 0 25px;
    border: 0;
    border-top: 1px solid rgba(var(--secondary-rgb), 0.08);
    opacity: 1;
}
.copyright-text {
    font-size: 0.88rem;
    color: var(--text);
    opacity: 0.8;
    margin: 0;
}
.footer-legal-links {
    display: flex;
    gap: 24px;
}
.footer-legal-links a {
    text-decoration: none;
    font-size: 0.88rem;
    color: var(--text);
    opacity: 0.8;
    transition: all var(--transition);
}
.footer-legal-links a:hover {
    color: var(--primary);
    opacity: 1;
}
/* =========================================================
ACCESSIBILITY
========================================================= */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}
.main-heading {
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: .75rem;
    color: var(--secondary);
}
.highlight-wrapper {
    position: relative;
    display: inline-block;
    z-index: 1;
}
.accent-font {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(90deg,#1E88E5,#0D9CA6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1em;
    padding: 0 5px;
    position: relative;
    z-index: 2;
}
.highlight-wrapper::before {
    content: "";
    position: absolute;
    bottom: 8%;
    left: 2%;
    width: 100%;
    height: 0.25rem;
    background-color: var(--secondary);
    z-index: -1;
    border-radius: 50% 20% / 80% 40%;
    transform: rotate(-3.5deg);
    opacity: 0.8;
}
.lead {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    font-style: italic;
}
.lead i {
    font-size: 1rem;
    vertical-align: super;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    opacity: .45;
}
.p1 {
    width: 16px;
    height: 16px;
    top: 18%;
    left: 20%;
    animation: particleMove 6s ease-in-out infinite;
}
.p2 {
    width: 24px;
    height: 24px;
    top: 28%;
    right: 18%;
    animation: particleMove 7s ease-in-out infinite;
}
.p3 {
    width: 12px;
    height: 12px;
    bottom: 22%;
    right: 26%;
    animation: particleMove 5s ease-in-out infinite;
}
.floating-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 18px;
    backdrop-filter: blur(24px);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 15px 40px rgba(0,90,180,.10), inset 0 1px 0 rgba(255,255,255,.7);
    font-weight: 600;
    color: var(--secondary);
}
.floating-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
}
.fc1 {
    top: 90px;
    left: 0;
    animation: floatSyncLeft 15s cubic-bezier(.445,.05,.55,.95) infinite;
    transform-origin: center;
}
.fc2 {
    right: 0;
    bottom: 100px;
    animation: floatSyncRight 15s cubic-bezier(.445,.05,.55,.95) infinite;
    transform-origin: center;
}
.has-watermark {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.section-mark {
    position: absolute;
    width: 230px;
    right: 2.5rem;
    top: 150px;
    transform: translateY(-50%) rotate(0deg);
    opacity: .4;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: transform .15s linear;
}
.section-head {
    position: relative;
    z-index: 2;
    margin-bottom: 70px !important;
}
.section-head span.badge {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .95rem;
}
.section-head p {
    margin: 0 auto;
    max-width: 650px;
    line-height: 1.9;
    opacity: .9;
    font-size: 1.05rem;
}
/* =========================================================
ANIMATIONS
========================================================= */
@keyframes shine {
    100% {
        left: 140%;
    }
}
@keyframes flatShine {
    from {
        left: -130%;
    }
    to {
        left: 170%;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45,156,219,.45);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(45,156,219,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45,156,219,0);
    }
}
@keyframes glowPulse {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}
@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}
@keyframes spinReverse {
    to {
        transform: rotate(-360deg);
    }
}
@keyframes floatHero {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes particleMove {
    0%,100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}
@keyframes floatSyncLeft {
    0% {
        transform: translate3d(0,0,0) rotate(0deg);
    }
    25% {
        transform: translate3d(14px,-10px,0) rotate(1deg);
    }
    50% {
        transform: translate3d(24px,0,0) rotate(0deg);
    }
    75% {
        transform: translate3d(14px,10px,0) rotate(-1deg);
    }
    100% {
        transform: translate3d(0,0,0) rotate(0deg);
    }
}
@keyframes floatSyncRight {
    0% {
        transform: translate3d(0,0,0) rotate(0deg);
    }
    25% {
        transform: translate3d(-14px,10px,0) rotate(-1deg);
    }
    50% {
        transform: translate3d(-24px,0,0) rotate(0deg);
    }
    75% {
        transform: translate3d(-14px,-10px,0) rotate(1deg);
    }
    100% {
        transform: translate3d(0,0,0) rotate(0deg);
    }
}
/* =========================================================
RESPONSIVE BREAKPOINTS (Audited Color Rules Built-in)
========================================================= */
@media (min-width: 1600px) {
    .main-navbar {
        width: min(92%, 1700px);
    }
}
@media (max-width: 1199px) {
    .main-navbar {
        height: 74px;
        padding-inline: 22px;
    }
    .brand-logo-img {
        height: 44px;
    }
    .nav-shell.scrolled .main-navbar {
        height: 62px;
        padding-inline: 24px;
    }
    .nav-shell.scrolled .brand-logo-img {
        height: 36px;
    }
    .mega-menu {
        width: min(1000px, 95vw);
    }
    .products-section {
        padding: 80px 40px;
    }
    .product-card {
        padding: 36px 24px;
    }
    .product-icon {
        width: 100%;
        max-width: 190px;
        margin-bottom: 22px;
    }
    .product-card h3 {
        font-size: 26px;
    }
    .fc1, .fc2 {
        display: none !important;
    }
    .ecosystem-grid {
        gap: 35px;
    }
    .purpose-brand-card {
        padding: 35px;
    }
}
@media (min-width: 992px) {
    .custom-dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 991px) {
    .nav-shell {
        padding: 14px 0;
    }
    .main-navbar {
        width: calc(100% - 28px);
        height: 68px;
        padding-inline: 18px;
        border-radius: 20px;
    }
    .nav-shell.scrolled .main-navbar {
        height: 58px;
        padding-inline: 18px;
    }
    .brand-logo-img {
        height: 40px;
    }
    .nav-shell.scrolled .brand-logo-img {
        height: 34px;
    }
    .acc-list-menu, .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        margin-top: 8px;
        min-width: 100%;
        padding-left: 14px;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 50px;
        text-align: center;
    }
    .hero-visual {
        min-height: 420px;
        margin-top: 30px;
    }
    .hero-glow {
        width: 260px;
        height: 260px;
    }
    .ring1 {
        width: 250px;
        height: 250px;
    }
    .ring2 {
        width: 320px;
        height: 320px;
    }
    .floating-card {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    .floating-card i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .fc1 {
        top: 10%;
        left: 5%;
    }
    .fc2 {
        bottom: 10%;
        right: 5%;
    }
    .hero-desc {
        margin-inline: auto;
    }
    .section-mark {
        width: 300px;
        right: -90px;
        opacity: .03;
    }
    .products-wrap {
        padding: 70px 0 110px;
    }
    .products-section {
        padding: 70px 24px;
        border-radius: 28px 28px 0 0;
    }
    #products-carousel .item {
        padding: 18px 10px 40px;
    }
    .product-card {
        padding: 34px 22px;
        border-radius: 28px;
    }
    .product-icon {
        max-width: 180px;
        border-radius: 28px;
        margin-bottom: 20px;
    }
    .product-icon img {
        transform: scale(1.05);
    }
    #products-carousel .owl-item.active.center .product-icon img {
        transform: scale(1.15);
    }
    .product-card h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    .product-card p {
        font-size: 15px;
        line-height: 1.7;
    }
    .leadership-section {
        padding: 70px 0 110px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        justify-content: flex-end !important;
        width: 100% !important;
    }
    .timeline-content {
        width: calc(100% - 80px) !important;
        float: right;
    }
    .timeline-dot {
        left: 40px !important;
    }
    .timeline::before {
        left: 40px;
    }
    .timeline-item, .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }
    .timeline-dot {
        left: 40px;
    }
    .timeline-content {
        width: calc(100% - 100px);
    }
    .ecosystem-section {
        padding: 80px 0;
    }
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .focus-sectors-matrix {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .leader-card-wrapper {
        margin-top: 100px;
        height: calc(100% - 100px);
    }
    .leader-card {
        padding: 95px 28px 40px;
        border-radius: 28px;
    }
    .leader-img-wrap {
        top: -85px;
        left: 50%;
        transform: translateX(-50%);
        width: 130px;
        height: 130px;
        box-shadow: 0 12px 25px var(--secondary-alpha-25);
    }
    .leader-img {
        transform: translateY(20px) scale(1.25);
    }
    .leader-quote {
        top: 30px;
        left: 15px;
        font-size: 3.5rem;
    }
    .commitment-section {
        padding: 80px 0;
    }
    .focus-sectors-matrix {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-wrap {
        padding: 60px 0 30px;
    }
    .footer-heading {
        margin-bottom: 18px;
    }
    .footer-divider {
        margin: 40px 0 25px;
    }
}
@media (max-width: 575px) {
    .nav-shell {
        padding: 10px 0;
    }
    .main-navbar {
        width: calc(100% - 18px);
        height: 62px;
        padding-inline: 14px;
        border-radius: 18px;
    }
    .nav-shell.scrolled .main-navbar {
        width: calc(100% - 18px);
        height: 54px;
        padding-inline: 14px;
    }
    .brand-logo-img {
        height: 36px;
    }
    .nav-shell.scrolled .brand-logo-img {
        height: 30px;
    }
    .hero {
        padding-top: 110px;
        padding-bottom: 30px;
    }
    .hero-visual {
        min-height: 300px;
    }
    .mobile-menu-panel .offcanvas-body {
        padding: 10px 16px 30px;
    }
    .acc-mobile-link, .mobile-accordion-button {
        font-size: 18px;
        padding: 16px 18px !important;
    }
    .section-mark {
        width: 200px;
        right: -65px;
    }
    .products-wrap {
        padding: 50px 0 90px;
    }
    .products-section {
        padding: 55px 16px;
        border-radius: 24px 24px 0 0;
    }
    .section-head {
        margin-bottom: 42px !important;
    }
    #products-carousel .item {
        padding: 10px 2px 28px;
    }
    .product-card {
        padding: 26px 18px 30px;
        border-radius: 26px;
    }
    .product-icon {
        max-width: 160px;
        margin-bottom: 18px;
    }
    .product-icon img {
        transform: scale(1.38);
    }
    #products-carousel .owl-item.active.center .product-icon img {
        transform: scale(1.5);
    }
    .product-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .product-card p {
        font-size: 14px;
        line-height: 1.7;
    }
    #products-carousel .owl-item .product-card {
        opacity: 1;
        transform: scale(1);
    }
    #products-carousel .owl-item.active.center .product-card {
        transform: scale(1);
    }
    .leadership-section {
        padding: 50px 0 90px;
    }
    .leader-card {
        padding: 85px 22px 35px;
    }
    .leader-text {
        font-size: 1rem;
        padding-left: 14px;
        margin-bottom: 20px;
    }
    .leader-name {
        font-size: 1.45rem;
        margin-bottom: 4px;
    }
    .leader-role {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .highlight-wrapper::before {
        bottom: 2px !important;
        height: 0.18rem !important;
        transform: rotate(-1.5deg) !important;
        opacity: 0.6 !important;
    }
    .timeline-content {
        padding: 24px !important;
        border-radius: 24px !important;
    }
    .ecosystem-section {
        padding: 60px 0;
    }
    .purpose-brand-card {
        padding: 26px 20px;
        border-radius: 30px;
    }
    .sector-node {
        padding: 22px;
        border-radius: 20px;
    }
}
/* Fixes Fault A: Prevents long words from clipping on small mobile viewports */
@media (max-width: 415px) {
    .main-heading {
        font-size: 2.1rem !important; /* Gracefully scales down large headings */
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .accent-font {
        font-size: 1.05em !important;
    }
    .product-card {
        padding: 24px 15px !important;
    }
    .section-head p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
}
@media (max-width: 350px) {
    .main-heading {
        font-size: 1.85rem !important;
    }
    .timeline-content {
        width: calc(100% - 65px) !important; /* Prevents text clipping on tiny screens */
    }
    .timeline-dot {
        left: 25px !important; /* Nudges the timeline tracking dot over safely */
        width: 70px !important;
        height: 70px !important;
        font-size: 28px !important;
    }
}
@media (max-width: 380px) {
    .main-navbar, .nav-shell.scrolled .main-navbar {
        padding-inline: 12px;
    }
    .brand-logo-img {
        height: 32px;
    }
    .products-section {
        padding-inline: 12px;
    }
    .product-card {
        padding: 24px 16px;
    }
    .product-card h3 {
        font-size: 18px;
    }
    .product-card p {
        font-size: 13px;
    }
}