/* CSS Reset for consistent cross-browser styling */
:root {
    --font-heading: 'Geist', 'Inter', sans-serif;
    --font-body: 'Inter', 'Geist', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
p,
li,
span,
small,
td,
input,
textarea,
select,
option,
label,
blockquote,
figcaption {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.btn,
input[type="submit"],
input[type="button"],
input[type="reset"],
th,
thead,
.navbar,
.nav-links a,
.dropdown-content a,
.hero-brand,
.section-subtag,
.section-title,
.section-header h2,
.section-header h3 {
    font-family: var(--font-heading);
}

.machinery-spec-section {
    padding: 30px 0 0;
}

.machinery-spec-section--light {
    background: #ffffff;
}

.machinery-spec-block {
    margin-bottom: 28px;
    border: 1px solid rgba(18, 45, 88, 0.12);
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 16px 30px rgba(17, 38, 85, 0.08);
}

.machinery-spec-block h2 {
    margin: 0 0 14px;
    font-size: 1.3rem;
    color: #173a7a;
}

.machinery-spec-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.machinery-spec-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    color: #173a7a;
    background: #ffffff;
}

.machinery-spec-table th,
.machinery-spec-table td {
    border: 1px solid #d9e4f2;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.machinery-spec-table th {
    background: #f5f8fc;
    font-size: 0.98rem;
    font-weight: 700;
    color: #173a7a;
    white-space: nowrap;
}

.machinery-spec-table td:first-child {
    width: 32%;
    font-weight: 700;
    color: #173a7a;
}

.machinery-spec-table td:last-child {
    color: #2f425e;
}

@media (max-width: 767px) {
    .machinery-spec-block {
        padding: 14px;
        border-radius: 14px;
    }

    .machinery-spec-block h2 {
        font-size: 1.08rem;
    }

    .machinery-spec-table {
        min-width: 560px;
    }

    .machinery-spec-table th,
    .machinery-spec-table td {
        padding: 10px 12px;
        font-size: 0.92rem;
    }
}

body {
    background-color: #f8f9fa;
    color: #333;
    scroll-behavior: smooth;
    font-family: var(--font-body);
}

main {
   
}

/* Fixed Navigation Bar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-left { /* New wrapper for logo */
   
    justify-content: flex-start;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Desktop Navigation Links */
.nav-links > ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F97316;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown .fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    position: absolute;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    padding: 10px 0;
    border-top: 3px solid #F97316;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
}

/* Invisible bridge to prevent hover loss on desktop */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-content a {
    color: #333333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-transform: none; /* Sub-items shouldn't be fully capitalize */
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #F97316;
}

/* Desktop Dropdown Hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        top: calc(100% + 10px); /* Animate it slightly downwards */
    }
    .dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.header-iso-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 150px;
    height: 35px;
    padding: 0 20px;
    border: 1px solid #ffd2bd;
    border-radius: 999px;
    background: #fff8f3;
    color: #ff5a14 !important;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.header-iso-icon {
    width: 18px;
    height: 24px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-iso-badge:hover {
    border-color: #ffd2bd;
    background: #fff8f3;
    box-shadow: none;
    transform: none;
}

.btn-header {
    background-color: #F97316;
    color: white !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-header:hover {
    background-color: #EA580C;
    transform: translateY(-2px);
}

.mobile-only {
    display: none;
}

/* Mobile Menu Toggle Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

@media (max-width: 1200px) and (min-width: 769px) {
    .nav-right {
        gap: 0.7rem;
    }

    .header-iso-badge {
        width: 188px;
        height: 42px;
        padding: 0 14px;
        gap: 10px;
        font-size: 16px;
    }

    .header-iso-icon {
        width: 17px;
        height: 23px;
        flex-basis: 17px;
    }
}

/* Responsive Design Rules for Mobile & Tablets */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        margin-top: 1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        /* Hide the menu using clip-path for a smooth slide effect */
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        /* Reveal the menu */
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links > ul {
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 10px;
    }

    /* Mobile Dropdown Overrides */
    .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #f4f6f9;
        padding: 0;
        margin-top: 10px;
        transform: none;
        /* Reset desktop visibility for mobile */
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none; /* Hide by default on mobile */
    }
    .dropdown-content::before {
        display: none; /* Hide the bridge on mobile */
    }
    .dropdown-content a {
        padding: 12px;
        border-bottom: 1px solid #e9ecef;
    }
    .dropdown.active .dropdown-content {
        display: block;
    }
    .dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }

    .create-container {
        grid-template-columns: 1fr;
    }

    /* Hamburger Animation to 'X' */
    .menu-toggle.active .hamburger { background-color: transparent; }
    .menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
    .menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }
}

.hero {
    margin-top: 70px;
    position: relative;
    min-height: calc(100vh - 70px);
    color: #ffffff;
    display: grid;
    align-items: center;
    background: linear-gradient(180deg, #06131d 0%, #0d2444 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 2.5rem 5% 3rem;
}

.hero-copy,
.hero-visual {
    width: 100%;
}

.hero-card {
    max-width: 100%;
}

.hero-copy {
    max-width: 640px;
}

.hero-copy .hero-brand {
    display: inline-flex;
    text-transform: capitalize;
    letter-spacing: 0.38em;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.12), 0 6px 8px rgba(0, 0, 0, 0.15);
    animation: brandFloat 4s ease-in-out infinite;
}

.hero-copy .hero-name {
    display: inline-block;
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: breathe 4s ease-in-out infinite;
}

.hero-copy h1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    max-width: 700px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(255, 255, 255, 0.08);
}

.terminal-heading {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.15;
}

.terminal-heading span {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: .14em solid #F97316;
    animation-fill-mode: forwards;
}

.terminal-heading span:nth-child(1) {
    width: 0;
    animation: typing1 2.5s steps(27, end) 0.5s forwards, blink-caret 0.75s step-end infinite 3s;
}

.terminal-heading span:nth-child(2) {
    width: 0;
    animation: typing2 2.8s steps(35,end) 2.8s forwards, blink-caret .75s step-end infinite 5.7s;
}

.hero-copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
    margin-bottom: 1.25rem;
}

.hero-copy ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-copy li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-copy li i {
    color: #F97316;
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.75rem;
    max-width: 680px;
    width: 100%;
}

.hero-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    width: 100%;
}

.hero-benefit-item i {
    color: #F97316;
    font-size: 1.1rem;
    margin-top: 0.08rem;
    flex-shrink: 0;
}

.hero-benefit-item span {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .hero-benefits {
        max-width: 100%;
    }
}
    font-size: 0.96rem;
    line-height: 1.5;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.hero-visual {
    display: grid;
    place-items: center;
}

.hero-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 1rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transform: perspective(1200px) rotateY(8deg);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-card:hover {
    transform: perspective(1200px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
}

.hero-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.hero-card-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(13, 43, 103, 0.92);
    color: #ffffff;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-card h3 {
    font-size: 1.55rem;
    margin-bottom: 0.9rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.hero {
    margin-top: 70px;
    position: relative;
    min-height: calc(100vh - 70px);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(90deg, rgba(3, 8, 14, 0.96) 0%, rgba(5, 11, 18, 0.9) 44%, rgba(7, 13, 22, 0.74) 66%, rgba(8, 14, 22, 0.86) 100%),
        linear-gradient(180deg, rgba(3, 8, 14, 0.96) 0%, rgba(7, 13, 21, 0.88) 100%);
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 64% center;
    filter: brightness(0.42) saturate(0.82) contrast(1.08);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 70% 32%, rgba(255, 255, 255, 0.08), #1d6ade00 18%), linear-gradient(90deg, rgb(1 50 122) 0%, rgb(2 50 122) 44%, rgb(2 49 120 / 37%) 68%, rgb(2 47 114 / 34%) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 3.4rem 4% 1.4rem;
}

.hero-copy,
.hero-visual {
    width: 100%;
}

.hero-copy {
    max-width: 960px;
}

.hero-copy .hero-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.28);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
}

.hero-heading {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.9rem, 5.4vw, 5rem);
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.hero-highlight-box {
    margin-top: 1.25rem;
    max-width: 700px;
    padding: 1.05rem 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-highlight-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.99rem;
    line-height: 1.7;
}

.hero-highlight-box p + p {
    margin-top: 0.05rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-actions .btn,
.hero-actions .btn-secondary {
    min-width: 170px;
    padding: 0.95rem 1.3rem;
    justify-content: center;
}

.hero-actions .btn {
    position: relative;
}

.hero-actions .btn::after {
    content: '\2192';
    margin-left: 0.6rem;
    font-size: 1rem;
}

.hero-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.75rem;
    max-width: 960px;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding-right: 0.7rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feature-item:last-child {
    border-right: none;
}

.hero-feature-item i {
    color: #f97316;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.hero-feature-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 700;
}

.hero-feature-item span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.87rem;
    line-height: 1.5;
}

.hero-bottom-stats {
    position: relative;
    z-index: 1;
    padding: 0 4% 2.2rem;
}

.hero-bottom-stats-shell {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-radius: 0 0 28px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.45rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card:last-child {
    border-right: none;
}

.hero-stat-card i {
    color: #f97316;
    font-size: 1.45rem;
}

.hero-stat-card strong {
    display: block;
    color: #f97316;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.hero-stat-card span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .hero-inner {
        gap: 2rem;
        padding: 3rem 4% 1.2rem;
    }

    .hero-copy {
        max-width: 100%;
        text-align: left;
    }

    .hero {
    }

    .hero-bg-media img {
        object-position: 58% center;
    }

    .hero-bottom-stats-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stat-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
    }

    .hero-heading {
        font-size: clamp(2.35rem, 9vw, 3.9rem);
    }

    .hero-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-feature-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .hero-inner {
        padding: 2.8rem 1rem 1rem;
    }

    .hero-copy .hero-brand {
        font-size: 0.74rem;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
    }

    .hero-highlight-box {
        padding: 1rem 1.1rem;
        border-radius: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .hero-actions .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .hero-feature-row {
        grid-template-columns: 1fr;
    }

    .hero-feature-item {
        border-right: none;
        padding-right: 0;
    }

    .hero {
    }

    .hero-bg-media img {
        object-position: center center;
    }

    .hero-bottom-stats {
        padding: 0 1rem 1.5rem;
    }

    .hero-bottom-stats-shell {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hero-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-stat-card:last-child {
        border-bottom: none;
    }
}

.impact-stats {
    padding: 4rem 5%;
    background: linear-gradient(180deg, #f9fbff 0%, #eef6ff 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.stats-card {
    padding: 2rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(13, 43, 103, 0.08);
    border: 1px solid rgba(13, 43, 103, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 55px rgba(13, 43, 103, 0.12);
}

.stats-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d2b67;
    margin-bottom: 0.8rem;
}

.stats-card p {
    margin: 0;
    color: #475569;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    gap: 0.85rem;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-features i {
    color: #F97316;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 3rem 5rem 4rem;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .hero-benefits,
    .stats-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .iso-card {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .iso-card-mark {
        max-width: 180px;
    }
}

@media (max-width: 640px) {
    .hero-inner {
        padding: 2.5rem 4% 3rem;
    }

    .impact-stats {
        padding: 2.5rem 4% 3rem;
    }

    .hero-copy h1 {
        font-size: 20px;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .iso-section {
        padding: 3.2rem 4% 2.6rem;
    }

    .iso-card {
        padding: 1.35rem;
        border-radius: 24px;
    }

    .iso-mark-box {
        min-height: 148px;
        padding: 1.1rem;
    }

    .iso-mark-icon {
        width: 56px;
        height: 56px;
        font-size: 1.45rem;
        border-width: 5px;
    }

    .iso-card-meta {
        align-items: flex-start;
        gap: 0.9rem;
    }

    .iso-meta-chip,
    .iso-download-link {
        font-size: 0.95rem;
    }
}

@keyframes brandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); text-shadow: 0 4px 12px rgba(0,0,0,0.25); }
    50% { transform: scale(1.03); text-shadow: 0 8px 24px rgba(245, 115, 22, 0.45); }
}

@keyframes typing1 {
    from { width: 0; }
    to { width: 27ch; }
}

@keyframes typing2 {
    from { width: 0; }
    to { width: 36ch; }
}

@keyframes blink-caret {
    50% { border-color: transparent; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #F97316;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #EA580C;
    transform: translateY(-2px);
}

/* About Us Section */
.about-bg {
    background-color: #ffffff;
    padding: 4.5rem 5% 3rem;
}

.iso-section {
    padding: 4.5rem 5% 3.5rem;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.iso-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.iso-card {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
    padding: 2.2rem 2.4rem;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 18%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08), transparent 14%),
        linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
    border: 1px solid rgba(249, 115, 22, 0.22);
    box-shadow: 0 20px 55px rgba(148, 163, 184, 0.18);
}

.iso-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(249, 115, 22, 0.08), transparent 18%),
        radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.08), transparent 16%);
    pointer-events: none;
}

.iso-card-mark,
.iso-card-copy {
    position: relative;
    z-index: 1;
}

.iso-mark-box {
    min-height: 168px;
    display: grid;
    place-items: center;
    gap: 0.9rem;
    padding: 1.4rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff4ec 0%, #fff8f3 100%);
    border: 3px solid rgba(255, 185, 137, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    text-align: center;
}

.iso-mark-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 6px solid #ff6a00;
    color: #ff6a00;
    font-size: 1.7rem;
    background: #ffffff;
}

.iso-mark-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.iso-mark-box strong {
    color: #ff6a00;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.iso-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.16);
    color: #ff6a00;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.iso-card-copy h3 {
    color: #111827;
   
    line-height: 1.16;
    margin-bottom: 0.9rem;
}

.iso-card-copy p {
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1.4rem;
    max-width: 760px;
    font-size: 1rem;
}

.iso-card-copy .cms-rich-text,
.iso-card-copy .cms-rich-text p {
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 1.4rem;
    max-width: 760px;
    font-size: 1rem;
}

.iso-card-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.iso-meta-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.1rem;
    border-radius: 14px;
    background: #f7f7f8;
    color: #737373;
    border: 1px solid rgba(229, 231, 235, 0.95);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.iso-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #ff6a00;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 106, 0, 0.5);
    padding-bottom: 0.12rem;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.iso-download-link:hover {
    color: #ea580c;
    border-color: #ea580c;
    transform: translateY(-1px);
}

.choose-bg {
    background: linear-gradient(135deg, #07254f 0%, #103d7a 100%);
    padding: 4.5rem 5% 3rem;
}

.mission-bg {
    background: #eef6ff;
    padding: 4.5rem 5% 3rem;
}

.capabilities-bg {
    background: #f7f9fb;
    padding: 5rem 5% 3rem;
}

.capability-layout {
    display: block;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.capability-cards {
    display: grid;
   
    gap: 1.5rem;
}

.capability-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 41, 89, 0.08);
    box-shadow: 0 24px 60px rgba(13, 43, 103, 0.08);
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 4px;
    background: #f97316;
    border-radius: 999px;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(13, 43, 103, 0.14);
}

.capability-card-head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.capability-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 41, 89, 0.08);
    color: #0d2b67;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
}

.capability-card h3 {
    margin: 0;
    color: #0d2b67;
    font-size: 1.35rem;
    line-height: 1.3;
}

.capability-note {
    margin: 0 0 1.2rem;
    color: #475569;
    line-height: 1.8;
    font-size: 0.98rem;
}

.capability-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    color: #475569;
    line-height: 1.8;
}

.capability-list li {
    position: relative;
    padding-left: 1.7rem;
}

.capability-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 1040px) {
    .capability-layout,
    .capability-stat-grid {
        grid-template-columns: 1fr;
    }
}

.about-banner {
    position: relative;
    min-height: 80vh;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    padding: 5.5rem 5% 4.5rem;
    display: grid;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(6, 19, 37, 0.88) 0%, rgba(10, 39, 84, 0.76) 42%, rgba(249, 115, 22, 0.16) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

.about-banner::before {
    content: none;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(13, 43, 103, 0.14), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.2), transparent 20%),
        radial-gradient(circle at 74% 80%, rgba(13, 43, 103, 0.14), transparent 24%);
    pointer-events: none;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.about-banner-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1.5rem;
    align-items: center;
}

.about-banner-copy,
.contact-banner-copy {
    color: #ffffff;
    text-align: left;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.about-banner-copy .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.about-banner h1,
.contact-banner h2 {
   
    margin-bottom: 1rem;
    line-height: 1.08;
    color: #ffffff;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.about-banner p,
.contact-banner p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    max-width: 680px;
    margin: 0 0 1.4rem;
}

.about-banner-visual {
    width: 100%;
}

.about-banner-card {
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(14px);
}

.about-banner-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.about-banner-card-content {
    padding: 1.35rem 1.4rem 1.55rem;
}

.about-banner-card-content span {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #F97316;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-size: 0.8rem;
}

.about-banner-card-content strong {
    display: block;
    color: #ffffff;
    line-height: 1.6;
}

.contact-banner {
    position: relative;
    min-height: 380px;
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(6, 19, 37, 0.72), rgba(6, 19, 37, 0.85)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    animation: zoomBg 20s infinite alternate;
    z-index: -1;
}

.contact-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 3rem 4%;
    }
    .contact-banner-actions {
        flex-direction: column;
        align-items: center;
    }
}

.about-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.about-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.about-breadcrumb a:hover {
    text-decoration: underline;
}

.about-breadcrumb span {
    opacity: 0.8;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-banner-shell {
        grid-template-columns: 1fr;
    }

    .about-banner {
        min-height: auto;
        padding: 4.3rem 4% 3rem;
    }
}

@media (max-width: 560px) {
    .about-banner h1 {
        font-size: 2.25rem;
    }

    .about-banner-card img {
        height: 250px;
    }

    .about-banner-copy .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-banner-copy .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.about-image {
    flex: 1;
    max-width: 520px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(13, 43, 103, 0.12);
}

/* Enhanced About Image with Animations */
.image-wrapper {
    position: relative;
    z-index: 1;
    padding: 0 20px 20px 0;
}

.image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(13, 43, 103, 0.15);
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: translateY(-8px);
}

.shape-blob {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 75%;
    height: 75%;
    background: linear-gradient(135deg, #eef6ff 0%, #d4e6ff 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: blobShape 8s ease-in-out infinite alternate;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35);
    animation: floatUpDown 4s ease-in-out infinite;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.about-content {
    flex: 1.2;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.25rem;
}

.about-content .section-title::after {
    margin: 10px 0 0;
}

.lead-text {
    font-size: 1.15rem !important;
    color: #0D2B67 !important;
    font-weight: 500;
    border-left: 4px solid #F97316;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.quality-list {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}

.quality-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.7;
}

.quality-list-item i {
    color: #F97316;
    margin-top: 0.2rem;
    min-width: 24px;
}

.quality-flow-hero .about-banner-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
    max-width: 980px;
}

.quality-flow-hero .about-banner-copy {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quality-flow-hero .about-breadcrumb {
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
}

.quality-flow-hero .section-tag {
    background: #f97316;
    color: #ffffff;
    border: none;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.quality-flow-hero h1 {
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.08;
    text-align: center;
}

.quality-flow-hero p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    text-align: center;
}

.quality-flow-hero .hero-actions {
    justify-content: center;
}

.quality-flow-hero .hero-actions .btn {
    min-width: 190px;
}

.quality-flow-hero .about-banner-visual {
    width: 100%;
    max-width: 920px;
}

.quality-flow-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(14px);
}

.quality-flow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.6rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.2);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quality-flow-track {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
}

.quality-flow-step {
    min-height: 180px;
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(8, 16, 31, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.quality-flow-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.28);
}

.quality-flow-step h3 {
    margin: 0 0 0.75rem;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.3;
}

.quality-flow-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

.quality-flow-connector {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.95));
}

.quality-flow-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #f97316;
    border-right: 2px solid #f97316;
    transform: translateY(-50%) rotate(45deg);
}

.quality-process-section {
    background: #ffffff;
    padding: 4.5rem 5% 4rem;
}

.quality-process-section .section-header {
    margin-bottom: 2rem;
}

.quality-process-section .quality-flow-card {
    background: #ffffff;
    border: 1px solid rgba(13, 43, 103, 0.1);
    box-shadow: 0 22px 50px rgba(13, 43, 103, 0.08);
    backdrop-filter: none;
}

.quality-process-section .quality-flow-step {
    background: #f8fbff;
    border: 1px solid rgba(13, 43, 103, 0.08);
}

.quality-process-section .quality-flow-step h3 {
    color: #0d2b67;
}

.quality-process-section .quality-flow-step p {
    color: #475569;
}

.about-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.about-actions .btn {
    min-width: 180px;
}

.btn-outline {
    background: transparent;
    color: #0D2B67;
    border: 2px solid #0D2B67;
}
.btn-outline:hover {
    background: #0D2B67;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .experience-badge {
        padding: 1rem;
        bottom: -10px;
        right: -10px;
    }
    .exp-number {
        font-size: 1.8rem;
    }
    .exp-text {
        font-size: 0.8rem;
    }
    .lead-text {
        font-size: 1.05rem !important;
    }
}

.impact-bg {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(13, 43, 103, 0.1);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: floatUp 0.9s ease var(--delay, 0s) both;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(13, 43, 103, 0.14);
}

.impact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #F97316;
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.impact-card h3 {
    margin-bottom: 0.95rem;
    color: #0D2B67;
}

.impact-card p {
    color: #475569;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-image {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    .about-content .section-title {
        text-align: center;
    }
    .about-content .section-title::after {
        margin: 10px auto 0;
    }
    .about-actions {
        justify-content: center;
    }
}


.choose-bg {
    background: linear-gradient(135deg, #07254f 0%, #103d7a 100%);
    padding: 4.5rem 5% 3rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.choose-bg .section-header h2 {
    color: #ffffff;
}

.choose-bg .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.section-header {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-header p {
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-tag {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: #F97316;
    text-transform: capitalize;
}

.choose-layout {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
    padding: 0 1rem;
}

.choose-list {
    width: 100%;
    max-width: 720px;
    display: grid;
    gap: 1rem;
}

.choose-image {
    display: none;
}

.choose-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.choose-list-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.16);
    color: #F97316;
    font-size: 1.35rem;
}

.choose-list-copy h3 {
    margin: 0 0 0.35rem;
    color: #ffffff;
    font-size: 1.15rem;
}

.choose-list-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

@media (max-width: 930px) {
    .choose-layout {
        grid-template-columns: 1fr;
    }

    .choose-image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .choose-list-item {
        flex-direction: column;
        gap: 0.85rem;
    }
}

.choose-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: floatUp 0.9s ease var(--delay, 0s) both;
}

.choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 40%);
    pointer-events: none;
}

.choose-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f97316;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1.2rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.choose-icon i {
    font-size: 1.35rem;
}

.choose-card h3 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.choose-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.mission-bg {
    background: #eef6ff;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.2rem;
    border: 1px solid rgba(13, 43, 103, 0.12);
    box-shadow: 0 22px 50px rgba(13, 43, 103, 0.08);
    overflow: hidden;
    animation: slideInRight 0.9s ease var(--delay, 0s) both;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(249, 115, 22, 0.14);
    border-radius: 50%;
    z-index: 0;
}

.mission-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0d2b67;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mission-card h3,
.mission-card p,
.mission-card ul {
    position: relative;
    z-index: 1;
}

.mission-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0d2b67;
}

.mission-card p {
    color: #475569;
    line-height: 1.85;
    margin-bottom: 1.3rem;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.mission-list li {
    padding-left: 1.2rem;
    position: relative;
    color: #334155;
    line-height: 1.75;
}

.mission-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f97316;
}

.values-bg {
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    position: relative;
    background: linear-gradient(180deg, #0d2b67 0%, #1b3f81 100%);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: popIn 0.75s ease var(--delay, 0s) both;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 40%);
    opacity: 0.35;
}

.value-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    color: #ffffff;
}

.value-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(13, 43, 103, 0.2);
}

@media (max-width: 900px) {
    .mission-grid,
    .values-grid,
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes floatUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes blobShape {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* General Section Layout */
section {
    padding: 3.5rem 5%;
}

.page-inner,
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

.section-content p,
.section-content ul,
.section-content ol {
    margin-bottom: 1.5rem;
}

.section-content ul,
.section-content ol {
    padding-left: 1.4rem;
}

.section-content li {
    margin-bottom: 0.75rem;
}

.section-meta {
    display: inline-block;
    margin-bottom: 1.25rem;
    letter-spacing: 0.24em;
    text-transform: capitalize;
    font-size: 0.85rem;
    color: #F97316;
}

.inner-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 22px 45px rgba(13, 43, 103, 0.08);
    padding: 2rem;
}

.page-card h3 {
    color: #0D2B67;
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.page-card p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #0D2B67;
    margin-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #F97316;
    margin: 10px auto 0;
}

/* Services Grid */
.services-bg {
    background-color: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.capabilities-section {
    background: linear-gradient(180deg, #f5f8ff 0%, #eef4fb 100%);
    padding: 4.5rem 5% 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.capability-tile {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 41, 89, 0.08);
    box-shadow: 0 24px 60px rgba(13, 43, 103, 0.08);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(13, 43, 103, 0.14);
}

.capability-tile-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #0d2b67;
    color: #ffffff;
    font-size: 1.2rem;
}

.capability-tile h3 {
    margin: 0;
    color: #0d2b67;
    font-size: 1.25rem;
    line-height: 1.2;
}

.capability-tile p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

@media (max-width: 860px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

.capabilities-section {
    background: linear-gradient(180deg, #f5f8ff 0%, #eef4fb 100%);
    padding: 4.5rem 5% 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.capability-tile {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 41, 89, 0.08);
    box-shadow: 0 24px 60px rgba(13, 43, 103, 0.08);
    padding: 2rem;
    display: grid;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(13, 43, 103, 0.14);
}

.capability-tile-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #0d2b67;
    color: #ffffff;
    font-size: 1.2rem;
}

.capability-tile h3 {
    margin: 0;
    color: #0d2b67;
    font-size: 1.25rem;
    line-height: 1.2;
}

.capability-tile p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

@media (max-width: 860px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 4px solid #F97316;
}

.card i {
    font-size: 2.5rem;
    color: #0D2B67;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0d2b67;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Create Section Styling */
.create-bg {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.create-container {
    display: grid;
    
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.create-text {
    padding: 0;
}

.create-text p {
    color: #54595f;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.create-card {
    background: white;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 20px 50px rgba(13, 43, 103, 0.08);
    overflow: hidden;
}

.create-card img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    margin-bottom: 1.25rem;
}

.create-highlight {
    display: inline-block;
    background-color: #F97316;
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.create-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0D2B67;
}

.create-card p {
    color: #636872;
    line-height: 1.7;
}

.create-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 1rem;
}

.create-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-weight: 500;
}

.create-card li i {
    color: #F97316;
    margin-top: 4px;
}

/* Industries Tag Section */
.industries-bg {
    background-color: #0D2B67;
    color: white;
    text-align: center;
}

.industries-bg .section-title {
    color: white;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #F97316;
    border-color: #F97316;
}

/* Reviews & Google Testimonials */
.reviews-bg {
    background-color: #ffffff;
}

.reviews-intro {
    max-width: 920px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.reviews-intro p {
    margin: 0.75rem auto 0;
    color: #555;
    line-height: 1.75;
    max-width: 760px;
}

.review-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2rem) / 3);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.review-carousel::-webkit-scrollbar {
    height: 10px;
}

.review-carousel::-webkit-scrollbar-thumb {
    background: rgba(13, 43, 103, 0.24);
    border-radius: 999px;
}

.review-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.review-card {
    scroll-snap-align: start;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 1.5rem;
    min-height: 320px;
    box-shadow: 0 20px 45px rgba(13, 43, 103, 0.08);
    border: 1px solid rgba(13, 43, 103, 0.08);
    display: flex;
    flex-direction: column;
}

.review-badge {
    display: inline-block;
    padding: 0.55rem 1rem;
    background: #E7F1FF;
    color: #0D2B67;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.review-rating {
    display: inline-flex;
    gap: 0.1rem;
    color: #F97316;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.9rem;
    color: #0D2B67;
}

.review-card p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    font-weight: 700;
    color: #0D2B67;
}

.review-role {
    color: #6b7280;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .review-carousel {
        grid-auto-columns: calc((100% - 1rem) / 2);
    }
}

@media (max-width: 640px) {
    .review-carousel {
        grid-auto-columns: 100%;
    }
}

.partners-bg {
    background-color: #eff6ff;
}

.partners-intro {
    max-width: 920px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.partners-intro p {
    margin: 0.75rem auto 0;
    color: #475569;
    line-height: 1.75;
    max-width: 760px;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 1rem 0 2rem;
}

.logo-track {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
    will-change: transform;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
    .logo-item {
        width: 180px;
    }
}

@media (max-width: 640px) {
    .logo-item {
        width: 150px;
    }
}

/* Footer & Contact */
.site-cta-band {
    padding: 0 5% 2.5rem;
    background: transparent;
}

.site-cta-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4.5rem 2rem;
    border-radius: 32px;
   background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 20%), linear-gradient(180deg, #f97316 0%, #fa9f0f 52%, #0155a3 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.site-cta-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.05), transparent 18%),
        radial-gradient(circle at 82% 22%, rgba(249, 115, 22, 0.12), transparent 16%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.site-cta-shell > * {
    position: relative;
    z-index: 1;
}

.site-cta-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-cta-shell h2 {
    max-width: 1080px;
    margin: 0 auto 1.1rem;
    color: #ffffff;
   
    line-height: 1.08;
    font-weight: 700;
}

.site-cta-shell p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.75;
}

.site-cta-shell .cms-rich-text,
.site-cta-shell .cms-rich-text p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.05rem;
    line-height: 1.75;
}

.site-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 2.2rem;
}

.site-cta-btn {
    min-width: 250px;
    padding: 1.05rem 1.5rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-cta-btn-primary {
    background: linear-gradient(135deg, #ff7a00 0%, #ff6a00 100%);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(255, 106, 0, 0.22);
}

.site-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(255, 106, 0, 0.28);
}

.site-cta-btn-secondary {
    background: transparent;
    color: #ff7a00;
    border: 2px solid #ff7a00;
}

.site-cta-btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 106, 0, 0.08);
}

footer {
    background-color: #111827;
    color: #cccccc;
    padding: 2.5rem 5% 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #444;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #d6d9df;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #F97316;
    transform: translateX(4px);
}

.footer-col i {
    color: #F97316;
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .site-cta-band {
        padding: 0 4% 2rem;
    }

    .site-cta-shell {
        padding: 3rem 1.2rem;
        border-radius: 24px;
    }

    .site-cta-shell p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .site-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-cta-btn {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        gap: 1.2rem;
    }
}

/* Floating Action Buttons */
.floating-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@keyframes fab-pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } /* Green Pulse */
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fab-pulse-mail {
    0% { box-shadow: 0 0 0 0 rgba(13, 43, 103, 0.5); } /* Blue Pulse */
    70% { box-shadow: 0 0 0 15px rgba(13, 43, 103, 0); }
    100% { box-shadow: 0 0 0 0 rgba(13, 43, 103, 0); }
}

.floating-whatsapp {
    background-color: #25D366;
    animation: fab-pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    animation: none;
}

.floating-mail {
    background-color: #0D2B67;
    animation: fab-pulse-mail 2s infinite;
    animation-delay: 1s; /* Alternate pulsing */
}

.floating-mail:hover {
    background-color: #F97316;
    animation: none;
}

@media (max-width: 768px) {
    .floating-action-buttons {
        bottom: 15px;
        right: 15px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Client Logos Auto-Scroll Section */
.client-logos-bg {
    background-color: #ffffff;
    padding: 3rem 0;
    border-bottom: 1px solid #eaeaea;
}

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Gradient fade effect on the left and right edges */
.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.logo-track {
    display: inline-flex;
    /* Adjust the "40s" below to make the scroll faster or slower */
    animation: scrollLogos 40s linear infinite;
}

/* Optional: Pause the scrolling when the user hovers over it */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 3.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #a0aabf;
    text-transform: capitalize;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo-slide i {
    font-size: 1.8rem;
    color: #c4cddf;
    transition: color 0.3s ease;
}

/* Change to brand color on hover */
.logo-slide:hover,
.logo-slide:hover i {
    color: #0D2B67;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves exactly half the track width to perfectly loop the duplicated items */
}

/* Responsive adjustments for the logo slider */
@media (max-width: 768px) {
    .client-logos-bg {
        padding: 2rem 0;
    }
    .logo-slide {
        padding: 0 2rem;
        font-size: 1.1rem;
    }
    .logo-slide i {
        font-size: 1.5rem;
    }
    .logo-slider::before,
    .logo-slider::after {
        width: 60px;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.26), transparent 32%),
        linear-gradient(135deg, #071a35 0%, #0d2b67 52%, #123d84 100%);
    color: #ffffff;
    padding: 5.5rem 5% 4rem;
}

.contact-hero::before,
.contact-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::before {
    width: 360px;
    height: 360px;
    top: -140px;
    right: -120px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-hero::after {
    width: 280px;
    height: 280px;
    bottom: -100px;
    left: -70px;
    background: rgba(249, 115, 22, 0.18);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.25rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.contact-hero-copy {
    max-width: 620px;
}

.contact-breadcrumb {
    justify-content: flex-start;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.78);
}

.contact-breadcrumb a,
.contact-breadcrumb span {
    color: #ffffff;
}

.contact-hero-copy .section-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.95rem; 
    border-radius: 999px; 
    margin-bottom: 1.2rem;
    letter-spacing: 0.3em;
    text-transform: capitalize;
    color: #F97316;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
} 

.contact-hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.05;
    margin-bottom: 1.1rem;
}

.contact-hero-copy p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    color: #ffffff;
}

.contact-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.contact-hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-weight: 600;
}

.contact-hero-highlights i {
    color: #F97316;
}

.contact-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.contact-hero .hero-actions .btn {
    min-width: 160px;
}

.contact-hero-cards {
    display: grid;
    gap: 1rem;
}

.hero-card-small {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
    color: #ffffff;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.hero-card-small i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.18);
    color: #f97316;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hero-card-small h3 {
    margin: 0 0 0.55rem;
    font-size: 1.12rem;
    color: #ffffff;
}

.hero-card-small p {
    margin: 0;
    line-height: 1.7;
    color: #ffffff;
}

.contact-body {
    background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
    padding: 4.5rem 5%;
}

.contact-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 24px 55px rgba(13, 43, 103, 0.08);
}

.contact-info h2,
.contact-form h2,
.map-card h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #0d2b67;
    font-size: 1.9rem;
}

.contact-info p,
.contact-form p,
.map-card p {
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.75;
}

.contact-card .section-tag {
    display: inline-block;
    margin-bottom: 0.85rem;
}

.contact-list {
    display: grid;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid rgba(13, 43, 103, 0.06);
}

.contact-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #eef5ff;
    color: #0d2b67;
    font-size: 1.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #0d2b67;
}

.contact-item p {
    margin: 0;
    color: #5b6675;
    line-height: 1.6;
}

.contact-item a {
    color: #5b6675;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f97316;
}

.contact-form,
.contact-form-card {
    display: grid;
    gap: 1rem;
}

.contact-form form,
.contact-form-card form {
    display: grid;
    gap: 1rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field-row {
    display: grid;
    gap: 0.5rem;
}

.contact-form label,
.contact-form-card label {
    font-weight: 700;
    color: #334155;
}

.contact-form input,
.contact-form textarea,
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    color: #1f2937;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.contact-form .btn,
.contact-form-card .btn {
    width: fit-content;
    padding: 1rem 2.5rem;
    margin-top: 0.5rem;
}

.contact-map {
    background: #eef5ff;
    padding: 0 5% 4.5rem;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
}

.map-frame iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.contact-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-card {
    padding: 1.65rem;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 40px rgba(13, 43, 103, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(13, 43, 103, 0.1);
}

.benefit-card h3 {
    margin-bottom: 0.7rem;
    color: #0d2b67;
}

.benefit-card p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .contact-hero-grid,
    .contact-body-grid,
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero .hero-actions {
        justify-content: center;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 3.5rem 4% 2.5rem;
    }

    .contact-hero-copy h1 {
        font-size: 2.35rem;
    }

    .contact-breadcrumb {
        justify-content: center;
    }

    .contact-hero-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-hero .hero-actions .btn {
        width: 100%;
    }

    .contact-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .map-frame iframe {
        min-height: 260px;
    }
}

.nav-links a.active {
    color: #F97316;
}

.blog-page {
    padding-top: 70px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 26%),
        radial-gradient(circle at right center, rgba(13, 43, 103, 0.12), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 5% 4.5rem;
    min-height: 82vh;
    display: grid;
    align-items: center;
    background:
        linear-gradient(115deg, rgba(4, 14, 32, 0.84) 0%, rgba(9, 29, 63, 0.72) 38%, rgba(249, 115, 22, 0.30) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 43, 103, 0.18), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.28), transparent 22%),
        radial-gradient(circle at 70% 80%, rgba(13, 43, 103, 0.20), transparent 24%);
    pointer-events: none;
}

.blog-hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.8rem;
    align-items: center;
}

.blog-hero-copy {
    max-width: 720px;
}

.blog-hero-copy .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.blog-hero-eyebrow {
    display: block;
    margin: 1rem 0 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: capitalize;
    font-size: 0.84rem;
}

.blog-hero-copy h1 {
    
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.2rem;
    max-width: 760px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.blog-hero-copy p {
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
}

.blog-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.blog-metric {
    
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(12px);
}

.blog-metric strong {
    display: block;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.blog-metric span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-hero-panel {
    position: relative;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(16px);
    animation: floatBlogCard 6s ease-in-out infinite;
}

.blog-feature-media img,
.blog-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-hero-panel-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.22);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-size: 0.78rem;
}

.blog-kicker,
.blog-post-meta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: capitalize;
    color: #f97316;
    margin-bottom: 0.8rem;
}

.blog-feature-body h2,
.blog-post-content h3 {
    color: #0f172a;
    line-height: 1.3;
}

.blog-hero-panel h2 {
    font-size: 1.7rem;
    margin-bottom: 0.9rem;
    color: #ffffff;
}

.blog-hero-panel p,
.blog-post-content p {
    line-height: 1.8;
}

.blog-hero-panel p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 1.2rem;
}

.blog-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.blog-hero-tags span {
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
}

.blog-hero-panel-line {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.blog-hero-panel-line i {
    color: #F97316;
}

.blog-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: #0d2b67;
    font-weight: 700;
    margin-top: 1rem;
    transition: gap 0.25s ease, color 0.25s ease;
}

.blog-inline-link:hover {
    color: #f97316;
    gap: 0.8rem;
}

.blog-topics,
.blog-posts,
.blog-cta {
    padding: 1.5rem 5% 4.5rem;
}

.blog-topic-grid,
.blog-post-grid,
.blog-insights-strip {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.blog-topic-card,
.blog-post-card,
.blog-insight-panel,
.blog-insight-list,
.blog-cta-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
}

.blog-topic-card {
    border-radius: 26px;
    padding: 1.8rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-topic-card:hover,
.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(13, 43, 103, 0.14);
}

.blog-topic-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.15rem;
}

.blog-topic-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.blog-topic-card p {
    color: #5b6675;
    line-height: 1.8;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 2rem;
}

.blog-post-card {
    overflow: hidden;
    border-radius: 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-post-image {
    height: 230px;
    overflow: hidden;
}

.blog-post-image img {
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.06);
}

.blog-post-content {
    padding: 1.6rem;
}

.blog-insights-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.4rem;
    padding: 0 5% 4.5rem;
}

.blog-insight-panel,
.blog-insight-list {
    border-radius: 30px;
    padding: 2rem;
}

.blog-insight-panel h2,
.blog-cta-card h2 {
    color: #0f172a;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-insight-panel p,
.blog-cta-card p {
    color: #475569;
    line-height: 1.85;
}

.blog-insight-list {
    display: grid;
    gap: 1rem;
    align-content: center;
    background: linear-gradient(180deg, #0d2b67 0%, #143a82 100%);
}

.blog-insight-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}

.blog-insight-item i {
    color: #F97316;
}

.blog-cta {
    padding-bottom: 5rem;
}

.blog-cta-card {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 34px;
    padding: 2.8rem;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.98) 100%);
}

@keyframes floatBlogCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes driftOrb {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(18px, -16px, 0); }
}

@media (max-width: 1080px) {
    .blog-hero-shell,
    .blog-insights-strip,
    .blog-post-grid,
    .blog-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-hero-panel {
        animation: none;
    }
}

@media (max-width: 820px) {
    .blog-hero {
        min-height: auto;
        padding: 4.5rem 4% 3rem;
    }

    .blog-topics,
    .blog-posts,
    .blog-cta {
        padding-left: 4%;
        padding-right: 4%;
    }

    .blog-insights-strip {
        padding: 0 4% 3.5rem;
    }

    .blog-hero-shell,
    .blog-post-grid,
    .blog-topic-grid,
    .blog-insights-strip,
    .blog-hero-metrics {
        grid-template-columns: 1fr;
    }

    .blog-hero-panel h2 {
        font-size: 1.45rem;
    }
}

@media (max-width: 560px) {
    .blog-hero-copy h1 {
        font-size: 2.2rem;
    }

    .blog-topic-card,
    .blog-insight-panel,
    .blog-insight-list,
    .blog-cta-card,
    .blog-post-content {
        padding: 1.4rem;
    }

    .blog-hero-panel {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .blog-hero-copy .hero-actions,
    .blog-cta-card .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-hero-copy .hero-actions .btn,
    .blog-cta-card .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.industries-page {
    padding-top: 70px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.10), transparent 22%),
        radial-gradient(circle at right center, rgba(13, 43, 103, 0.10), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #eff5fb 100%);
}

.industries-hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: grid;
    align-items: center;
    padding: 5rem 5% 4rem;
    background:
        linear-gradient(120deg, rgba(5, 15, 35, 0.86) 0%, rgba(11, 39, 82, 0.72) 40%, rgba(249, 115, 22, 0.22) 100%),
        url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.industries-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(13, 43, 103, 0.2), transparent 22%),
        radial-gradient(circle at 82% 16%, rgba(249, 115, 22, 0.22), transparent 20%),
        radial-gradient(circle at 75% 78%, rgba(13, 43, 103, 0.16), transparent 24%);
    pointer-events: none;
}

.industries-hero-shell,
.industry-grid,
.industry-process,
.industry-showcase,
.industry-cta-card {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 1.6rem;
    align-items: center;
    width: 100%;
}

.industries-hero-copy {
    max-width: 720px;
}

.industries-hero-copy .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.industries-eyebrow {
    display: block;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: capitalize;
    font-size: 0.84rem;
}

.industries-hero-copy h1 {
    
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.industries-hero-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.industries-hero-card {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(16px);
}

.industries-hero-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.22);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-size: 0.78rem;
}

.industries-hero-card h2 {
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.28;
    margin-bottom: 0.9rem;
}

.industries-hero-card p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    margin-bottom: 1.15rem;
}

.industries-hero-points {
    display: grid;
    gap: 0.85rem;
}

.industries-hero-points div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.industries-hero-points i {
    color: #F97316;
}

.industry-sectors,
.industry-cta {
    padding: 4.5rem 5%;
}

.industry-sectors {
    position: relative;
}

.industry-sectors-intro {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 1.3rem;
    align-items: end;
}

.industry-sectors-copy {
    max-width: 760px;
}

.industry-sectors-copy .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.industry-sectors-copy .section-title::after {
    left: 0;
    transform: none;
}

.industry-sectors-copy p {
    color: #475569;
    line-height: 1.85;
    font-size: 1.03rem;
}

.industry-sectors-highlight {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.3rem 1.4rem;
    border-radius: 26px;
    background: linear-gradient(135deg, #0d2b67 0%, #173f8f 100%);
    box-shadow: 0 24px 55px rgba(13, 43, 103, 0.16);
    color: #ffffff;
}

.industry-highlight-badge {
    width: 68px;
    min-width: 68px;
    height: 68px;
    border-radius: 22px;
    display: grid;
    place-items: center; 
    background: rgba(255, 255, 255, 0.14);
    color: #fdba74;
    font-size: 1.35rem;
    font-weight: 800;
}

.industry-sectors-highlight strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.industry-sectors-highlight span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 2rem;
}

.industry-card,
.industry-process-panel,
.industry-benefits,
.industry-showcase-copy,
.industry-showcase-visual,
.industry-cta-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
}

.industry-card {
    border-radius: 28px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover,
.industry-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13, 43, 103, 0.12);
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, transparent 34%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}

.industry-card-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 16px 32px rgba(13, 43, 103, 0.16);
}

.industry-card-index {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #94a3b8;
}

.industry-card h3,
.industry-benefit-card h3 {
    color: #0f172a;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    font-size: 1.22rem;
}

.industry-card p,
.industry-benefit-card p,
.industry-process-panel p,
.industry-showcase-copy p,
.industry-cta-card p {
    color: #475569;
    line-height: 1.8;
}

.industry-card p {
    position: relative;
    z-index: 1;
}

.industry-card-line {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 4px;
    margin-top: 1.2rem;
    border-radius: 999px; 
    background: #f97316;
}

.industry-process {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    padding: 0 5% 4.5rem;
}

.industry-process-panel,
.industry-benefits {
    border-radius: 30px;
    padding: 2rem;
}

.industry-process-panel h2,
.industry-showcase-copy h2,
.industry-cta-card h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.industry-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    background: linear-gradient(180deg, #0d2b67 0%, #143a82 100%);
}

.industry-benefit-card {
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-benefit-card strong {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: #F97316;
    font-size: 1.1rem;
}

.industry-benefit-card h3,
.industry-benefit-card p {
    color: #ffffff;
}

.industry-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.4rem;
    padding: 0 5% 4.5rem;
}

.industry-showcase-copy,
.industry-showcase-visual {
    border-radius: 30px;
    overflow: hidden;
    padding: 2rem;
}

.industry-showcase-visual {
    padding: 0;
}

.industry-showcase-visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.industry-showcase-visual:hover img {
    transform: scale(1.04);
}

.industry-cta {
    padding-top: 0;
    padding-bottom: 5rem;
}

.industry-cta-card {
    border-radius: 34px;
    padding: 2.8rem;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 255, 0.98) 100%);
}

@media (max-width: 1080px) {
    .industries-hero-shell,
    .industry-process,
    .industry-showcase,
    .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industry-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .industries-hero {
        min-height: auto;
        padding: 4.5rem 4% 3rem;
    }

    .industry-sectors,
    .industry-cta {
        padding-left: 4%;
        padding-right: 4%;
    }

    .industry-process,
    .industry-showcase {
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 3.5rem;
    }

    .industries-hero-shell,
    .industry-sectors-intro,
    .industry-grid,
    .industry-process,
    .industry-showcase {
        grid-template-columns: 1fr;
    }

    .industries-hero-card h2 {
        font-size: 1.45rem;
    }

    .industry-sectors-highlight {
        max-width: 460px;
    }
}

@media (max-width: 560px) {
    .industries-hero-copy h1 {
        font-size: 2.2rem;
    }

    .industries-hero-card,
    .industry-card,
    .industry-process-panel,
    .industry-benefits,
    .industry-showcase-copy,
    .industry-cta-card {
        padding: 1.4rem;
    }

    .industry-sectors-highlight {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .industry-highlight-badge {
        width: 56px;
        min-width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.1rem;
    }

    .industries-hero-copy .hero-actions,
    .industry-cta-card .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .industries-hero-copy .hero-actions .btn,
    .industry-cta-card .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.capability-page {
    padding-top: 70px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.capability-page--milling {
    background:
        radial-gradient(circle at 8% 12%, rgba(13, 43, 103, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%);
}

.capability-page--turning {
    background:
        radial-gradient(circle at 88% 12%, rgba(249, 115, 22, 0.1), transparent 24%),
        linear-gradient(180deg, #fffaf5 0%, #f3f7fb 100%);
}

.capability-page--prototype {
    background:
        radial-gradient(circle at 14% 8%, rgba(13, 43, 103, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.capability-page--production {
    background:
        radial-gradient(circle at 86% 10%, rgba(249, 115, 22, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.capability-hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: grid;
    align-items: center;
    padding: 5.5rem 5% 4.5rem;
    background-position: center;
    background-size: cover;
}

.capability-page--milling .capability-hero {
    background:
        linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--turning .capability-hero {
    background:
         linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--prototype .capability-hero {
    background:
        linear-gradient(120deg, rgba(6, 19, 37, 0.88) 0%, rgba(10, 39, 84, 0.76) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--production .capability-hero {
    background:
        linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--wirecut-edm .capability-hero {
    background:
        linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1513351031736-3ab67f0cd6d3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--edm-die-sinking .capability-hero {
    background:
        linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--grinding .capability-hero {
    background:
        linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1508387020667-97735b6b6651?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-page--testing-inspection .capability-hero {
    background:
        linear-gradient(120deg, rgba(8, 25, 54, 0.88) 0%, rgba(11, 51, 98, 0.74) 42%, rgba(13, 43, 103, 0.16) 100%),
        url('https://images.unsplash.com/photo-1526948531399-320e7e40f0ca?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.capability-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
        radial-gradient(circle at 78% 18%, rgba(249, 115, 22, 0.2), transparent 18%),
        radial-gradient(circle at 75% 80%, rgba(13, 43, 103, 0.14), transparent 24%);
    pointer-events: none;
}

/* Unified hero container layout for top-level pages */
.about-banner-shell,
.blog-hero-shell,
.contact-modern-shell,
.capability-hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1.8rem;
    align-items: center;
}

.capability-hero-shell,
.capability-offer,
.capability-feature-grid,
.capability-process,
.capability-cta-card {
    max-width: 1200px;
    margin: 0 auto;
}

.capability-hero-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1.5rem;
    align-items: center;
}

.capability-hero-copy {
    max-width: 720px;
}

.capability-hero-copy .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.capability-eyebrow {
    display: block;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: capitalize;
    font-size: 0.84rem;
}

.capability-hero-copy h1 {
    color: #ffffff;
   
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.capability-hero-copy p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.capability-hero-copy .cms-rich-text,
.capability-hero-copy .cms-rich-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.capability-hero-stat {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(14px);
}

.capability-stat-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.22);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-size: 0.78rem;
}

.capability-hero-stat strong {
    display: block;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.capability-hero-stat p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.capability-hero-stat .cms-rich-text,
.capability-hero-stat .cms-rich-text p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.capability-stat-list {
    display: grid;
    gap: 0.85rem;
}

.capability-stat-list div {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    color: #ffffff;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.capability-stat-list i {
    color: #F97316;
}

.capability-offer,
.capability-features,
.capability-workflow,
.capability-assurance,
.capability-cta {
    padding: 4.5rem 5%;
}

.capability-offer {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.4rem;
    align-items: center;
}

.capability-offer--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.capability-offer-copy,
.capability-offer-visual,
.capability-process-panel,
.capability-step-list,
.capability-cta-card {
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
}

.capability-offer-copy,
.capability-process-panel,
.capability-step-list,
.capability-cta-card {
    border-radius: 30px;
    padding: 2rem;
}

.capability-offer-copy h2,
.capability-process-panel h2,
.capability-cta-card h2 {
    color: #0f172a;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.capability-offer-copy p,
.capability-process-panel p,
.capability-cta-card p {
    color: #333;
    line-height: 1.85;
}

.capability-offer-copy .cms-rich-text,
.capability-offer-copy .cms-rich-text p {
    color: #475569;
    line-height: 1.85;
}

.cms-rich-text img {
    max-width: 100%;
    height: auto;
}

.capability-offer-visual {
    border-radius: 30px;
    overflow: hidden;
}

.capability-offer-visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capability-offer-visual:hover img {
    transform: scale(1.04);
}

.capability-offer--turning {
    align-items: stretch;
}

.capability-offer--turning .capability-offer-copy,
.capability-offer--turning .capability-offer-visual {
    height: 100%;
}

.capability-offer--turning .capability-offer-visual {
    
    justify-self: start;
}



.capability-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.capability-workflow-grid,
.capability-detail-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.capability-workflow-card,
.capability-detail-panel,
.capability-detail-points {
    padding: 1.8rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-workflow-card:hover,
.capability-detail-panel:hover,
.capability-detail-points:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13, 43, 103, 0.12);
}

.capability-workflow-icon,
.capability-detail-point i {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 16px 32px rgba(13, 43, 103, 0.14);
}

.capability-workflow-icon {
    margin-bottom: 1rem;
}

.capability-page--turning .capability-workflow-icon,
.capability-page--turning .capability-detail-point i {
   background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
}

.capability-page--prototype .capability-workflow-icon,
.capability-page--prototype .capability-detail-point i {
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
}

.capability-page--production .capability-workflow-icon,
.capability-page--production .capability-detail-point i {
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
}

.capability-workflow-card h3,
.capability-detail-panel h2 {
    color: #0f172a;
}

.capability-workflow-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.22rem;
}

.capability-detail-panel h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 0.9rem;
}

.capability-workflow-card p,
.capability-detail-panel p,
.capability-detail-point span {
    color: #475569;
    line-height: 1.8;
}

.capability-detail {
    padding: 0 5% 1.5rem;
}

.capability-detail--capabilities {
    padding-bottom: 5rem;
}

.capability-detail-panel {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 28%),
        rgba(255, 255, 255, 0.96);
}

.capability-detail-points {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.capability-detail-point {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(13, 43, 103, 0.08);
}

.capability-detail-point:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.capability-detail-point:first-child {
    padding-top: 0;
}

.capability-feature-card {
    padding: 1.8rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-feature-card:hover,
.capability-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13, 43, 103, 0.12);
}

.capability-feature-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 16px 32px rgba(13, 43, 103, 0.14);
}

.capability-page--turning .capability-feature-icon {
     background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
}

.capability-page--prototype .capability-feature-icon {
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
}

.capability-page--production .capability-feature-icon {
     background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
}

.capability-feature-card h3,
.capability-step h3 {
    color: #0f172a;
    margin-bottom: 0.8rem;
    font-size: 1.22rem;
}

.capability-feature-card p,
.capability-step p {
    color: #475569;
    line-height: 1.8;
}

.capability-process {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    padding: 0 5% 4.5rem;
}

.capability-step-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.capability-step {
    padding: 1.4rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    border: 1px solid rgba(13, 43, 103, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-step strong {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: #f97316;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.capability-cta {
    padding-top: 0;
    padding-bottom: 5rem;
}

.capability-cta-card {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 22%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(239, 246, 255, 0.99) 100%);
}

@media (max-width: 1080px) {
    .capability-hero-shell,
    .capability-offer,
    .capability-feature-grid,
    .capability-workflow-grid,
    .capability-detail-grid,
    .capability-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-step-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .capability-hero {
        min-height: auto;
        padding: 4.4rem 4% 3rem;
    }

    .capability-offer,
    .capability-features,
    .capability-workflow,
    .capability-detail,
    .capability-cta {
        padding-left: 4%;
        padding-right: 4%;
    }

    .capability-process {
        padding-left: 4%;
        padding-right: 4%;
        padding-bottom: 3.5rem;
    }

    .capability-hero-shell,
    .capability-offer,
    .capability-feature-grid,
    .capability-workflow-grid,
    .capability-detail-grid,
    .capability-process {
        grid-template-columns: 1fr;
    }

    .capability-hero-stat strong {
        font-size: 1.6rem;
    }
}

@media (max-width: 560px) {
    .capability-hero-copy h1 {
        font-size: 2.25rem;
    }

    .capability-hero-stat,
    .capability-offer-copy,
    .capability-process-panel,
    .capability-step-list,
    .capability-feature-card,
    .capability-workflow-card,
    .capability-detail-panel,
    .capability-detail-points,
    .capability-cta-card {
        padding: 1.4rem;
    }

    .capability-detail-point {
        grid-template-columns: 52px 1fr;
        gap: 0.8rem;
    }

    .capability-detail-point i {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .capability-hero-copy .hero-actions,
    .capability-cta-card .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .capability-hero-copy .hero-actions .btn,
    .capability-cta-card .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.contact-modern-page {
    padding-top: 70px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.10), transparent 22%),
        radial-gradient(circle at right center, rgba(13, 43, 103, 0.10), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.contact-modern-hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: grid;
    align-items: center;
    padding: 5.5rem 5% 4.5rem;
    background:
        linear-gradient(120deg, rgba(6, 20, 43, 0.88) 0%, rgba(12, 45, 90, 0.76) 42%, rgba(249, 115, 22, 0.16) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-modern-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(13, 43, 103, 0.14), transparent 20%),
        radial-gradient(circle at 82% 20%, rgba(249, 115, 22, 0.2), transparent 20%),
        radial-gradient(circle at 74% 78%, rgba(13, 43, 103, 0.14), transparent 24%);
    pointer-events: none;
}

.contact-modern-shell,
.contact-modern-details-grid,
.contact-modern-form-grid,
.contact-modern-map-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-modern-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1.5rem;
    align-items: center;
}

.contact-modern-copy {
    max-width: 720px;
}

.contact-modern-copy .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-modern-eyebrow {
    display: block;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: capitalize;
    font-size: 0.84rem;
}

.contact-modern-copy h1 {
    color: #ffffff;
   
    line-height: 1.08;
    margin-bottom: 1rem;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.contact-modern-copy p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
}

.contact-modern-hero-card {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(14px);
}

.contact-modern-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.22);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-size: 0.78rem;
}

.contact-modern-hero-card h2 {
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.contact-modern-bullets {
    display: grid;
    gap: 0.8rem;
}

.contact-modern-bullets div {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    color: #ffffff;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.contact-modern-bullets i {
    color: #F97316;
}

.contact-modern-details,
.contact-modern-form-section,
.contact-modern-map {
    padding: 4.5rem 5%;
}

.contact-modern-map {
    padding-top: 0;
    padding-bottom: 5rem;
}

.contact-modern-details-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.contact-modern-card,
.contact-modern-form-copy,
.contact-modern-form-card,
.contact-modern-map-wrap {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
    border-radius: 28px;
}

.contact-modern-card {
    padding: 1.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-modern-card:hover,
.contact-modern-form-copy:hover,
.contact-modern-form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13, 43, 103, 0.12);
}

.contact-modern-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 16px 32px rgba(13, 43, 103, 0.14);
}

.contact-modern-card h3,
.contact-modern-form-copy h2 {
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.contact-modern-card p,
.contact-modern-form-copy p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-modern-card a,
.contact-modern-card span {
    display: block;
    color: #0d2b67;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.contact-modern-card a:hover {
    color: #f97316;
}

.contact-modern-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    align-items: stretch;
}

.contact-modern-form-copy,
.contact-modern-form-card {
    padding: 2rem;
}

.contact-modern-points {
    display: grid;
    gap: 0.8rem;
}

.contact-modern-points div {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: #475569;
}

.contact-modern-points i {
    color: #f97316;
}

.contact-modern-form-card form {
    display: grid;
    gap: 1rem;
}

.form-alert {
    margin-bottom: 1rem;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.96rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.form-alert-success {
    color: #14532d;
    background: #dcfce7;
    border-color: #86efac;
}

.form-alert-error {
    color: #991b1b;
    background: #fee2e2;
    border-color: #fca5a5;
}

.contact-modern-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-modern-field {
    display: grid;
    gap: 0.5rem;
}

.contact-modern-field label {
    font-weight: 700;
    color: #334155;
}

.contact-modern-field input,
.contact-modern-field select,
.contact-modern-field textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    color: #1f2937;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-modern-field input:focus,
.contact-modern-field select:focus,
.contact-modern-field textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
    background: #ffffff;
}

.contact-modern-form-card .btn {
    width: fit-content;
    padding: 1rem 2.5rem;
}

.contact-modern-map-wrap {
    overflow: hidden;
}

.contact-modern-map-wrap iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 1080px) {
    .contact-modern-shell,
    .contact-modern-form-grid,
    .contact-modern-details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .contact-modern-hero {
        min-height: auto;
        padding: 4.4rem 4% 3rem;
    }

    .contact-modern-details,
    .contact-modern-form-section,
    .contact-modern-map {
        padding-left: 4%;
        padding-right: 4%;
    }

    .contact-modern-shell,
    .contact-modern-form-grid,
    .contact-modern-details-grid,
    .contact-modern-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .contact-modern-copy h1 {
        font-size: 2.25rem;
    }

    .contact-modern-copy .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-modern-copy .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .contact-modern-hero-card,
    .contact-modern-card,
    .contact-modern-form-copy,
    .contact-modern-form-card {
        padding: 1.4rem;
    }

    .contact-modern-map-wrap iframe {
        min-height: 280px;
    }
}

.contact-bootstrap-page {
   
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.10), transparent 22%),
        radial-gradient(circle at right center, rgba(13, 43, 103, 0.10), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.contact-bootstrap-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    min-height: 78vh;
    display: grid;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(6, 20, 43, 0.88) 0%, rgba(12, 45, 90, 0.76) 42%, rgba(249, 115, 22, 0.16) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.contact-bootstrap-shell {
    position: relative;
    z-index: 1;
}

.contact-bootstrap-copy {
    max-width: 720px;
}

.contact-bootstrap-copy .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-bootstrap-eyebrow {
    display: block;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: capitalize;
    font-size: 0.84rem;
}

.contact-bootstrap-copy h1 {
    color: #ffffff;
   
    line-height: 1.08;
    margin-bottom: 1rem;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.contact-bootstrap-copy p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
}

.contact-bootstrap-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.contact-bootstrap-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 600;
}

.contact-hero-card {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.10) 100%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 70px rgba(3, 9, 24, 0.28);
    backdrop-filter: blur(14px);
}

.contact-hero-card-badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.22);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    font-size: 0.78rem;
}

.contact-hero-card h2 {
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 0.9rem;
}

.contact-hero-card p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.contact-hero-card-list {
    display: grid;
    gap: 0.8rem;
}

.contact-hero-card-list div {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    color: #ffffff;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.contact-hero-card-list i {
    color: #F97316;
}

.contact-bootstrap-body,
.contact-bootstrap-form-section {
    padding: 4.5rem 0;
}

.contact-bootstrap-form-section {
    padding-top: 0;
    padding-bottom: 5rem;
}

.contact-info-box,
.contact-form-content,
.contact-form-wrap {
    height: 100%;
    padding: 1.9rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(13, 43, 103, 0.08);
    box-shadow: 0 18px 45px rgba(13, 43, 103, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-box:hover,
.contact-form-content:hover,
.contact-form-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(13, 43, 103, 0.12);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d2b67 0%, #1d4f9c 100%);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 16px 32px rgba(13, 43, 103, 0.14);
}

.contact-info-box h3,
.contact-form-content h2 {
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.contact-info-box p,
.contact-form-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-info-box a {
    display: block;
    color: #0d2b67;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.contact-info-box a:hover {
    color: #f97316;
}

.contact-form-benefits {
    display: grid;
    gap: 0.8rem;
}

.contact-form-benefits div {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: #475569;
}

.contact-form-benefits i {
    color: #f97316;
}

.contact-form-wrap .form-label {
    font-weight: 700;
    color: #334155;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
    border-radius: 14px;
    padding: 0.95rem 1rem;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    color: #1f2937;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.14);
    background: #ffffff;
}

.contact-submit-btn {
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 0.95rem 2rem;
    border-radius: 14px;
    font-weight: 700;
}

.contact-submit-btn:hover {
    background: #ea580c;
    color: #ffffff;
}

@media (max-width: 991px) {
    .contact-bootstrap-hero {
        min-height: auto;
        padding: 4.2rem 0 3rem;
    }
}

@media (max-width: 575px) {
    .contact-bootstrap-copy h1 {
        font-size: 2.3rem;
    }

    .contact-bootstrap-chips {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-bootstrap-copy .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-bootstrap-copy .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .contact-hero-card,
    .contact-info-box,
    .contact-form-content,
    .contact-form-wrap {
        padding: 1.4rem;
    }
}

/* Request a Quote Page */
.rfq-page {
    margin-top: 70px;
}

.rfq-hero {
    background: #f4f7fb;
    padding: 5rem 5% 2rem;
}

.rfq-hero .section-title {
    margin-bottom: 1rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.rfq-hero .section-content {
    margin: 0 auto;
    max-width: 740px;
}

.rfq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.rfq-hero-actions .btn {
    min-width: 180px;
}

.rfq-form-section {
    padding: 2.5rem 5% 4rem;
    background: #f9fbff;
}

.rfq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.rfq-form {
    display: grid;
    gap: 1.5rem;
}

.rfq-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.rfq-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: rgba(249, 115, 22, 0.08);
    border-bottom: 1px solid #e5e7eb;
}

.rfq-card-header h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #0d2b67;
    font-weight: 700;
}

.rfq-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.rfq-card-body {
    padding: 1.6rem;
    display: grid;
    gap: 1.25rem;
}

.rfq-grid-2 {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .rfq-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.rfq-field {
    display: grid;
    gap: 0.55rem;
}

.rfq-field label {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
}

.rfq-input,
.rfq-select,
.rfq-textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font-size: 0.98rem;
    background: #fbfdff;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rfq-input:focus,
.rfq-select:focus,
.rfq-textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.rfq-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23626A75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.rfq-textarea {
    min-height: 140px;
    resize: vertical;
}

.rfq-upload {
    border: 2px dashed #cbd5e1;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #f8fafc;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    cursor: pointer;
}

.rfq-upload:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.rfq-upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.rfq-upload-title {
    font-weight: 700;
    color: #0d2b67;
    margin-bottom: 0.35rem;
}

.rfq-upload-subtitle {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.rfq-upload-note {
    color: #f97316;
    font-size: 0.9rem;
    font-weight: 700;
}

.rfq-file-input {
    display: none;
}

.rfq-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.rfq-checkbox-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f97316;
    margin-top: 0.15rem;
}

.rfq-checkbox-wrap label {
    margin: 0;
    font-weight: 600;
    color: #475569;
    line-height: 1.4;
    cursor: pointer;
}

.rfq-checkbox-group {
    display: grid;
    gap: 0.85rem;
}

.rfq-checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #475569;
    font-size: 0.95rem;
}

.rfq-submit-wrap {
    text-align: center;
    padding: 1rem 0;
}

.rfq-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #f97316;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 1rem 2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.24);
    transition: transform 0.25s ease, background 0.25s ease;
}

.rfq-submit:hover {
    transform: translateY(-2px);
    background: #ea580c;
}

.rfq-note {
    color: #64748b;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

.rfq-secondary {
    display: grid;
    gap: 1.25rem;
}

.rfq-secondary-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 1.5rem;
}

.rfq-secondary-form {
    display: grid;
    gap: 1rem;
}

.rfq-secondary-btn {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: #0d2b67;
    color: #ffffff;
    border: none;
}

.rfq-secondary-btn:hover {
    background: #0b274f;
}

.rfq-secondary-note a {
    color: #f97316;
    text-decoration: none;
}

@media (max-width: 900px) {
    .rfq-grid-2 {
        grid-template-columns: 1fr;
    }

    .rfq-form-section {
        padding: 2rem 4%;
    }

    .rfq-hero {
        padding: 3.5rem 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .rfq-hero {
        padding: 2.5rem 4%;
    }

    .rfq-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .rfq-submit {
        width: 100%;
    }
}

/* Unified subpage image hero redesign */
.quality-flow-hero,
.rfq-hero {
    min-height: 72vh;
    padding: clamp(5.5rem, 9vw, 7rem) 5% clamp(4rem, 7vw, 5rem);
}

.quality-flow-hero .about-banner-overlay {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.58) 0%, rgba(10, 10, 10, 0.24) 32%, rgba(10, 10, 10, 0.72) 100%),
        radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.18), transparent 16%);
}

.rfq-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.28) 34%, rgba(10, 10, 10, 0.74) 100%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.rfq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(249, 115, 22, 0.16), transparent 18%);
    pointer-events: none;
}

.quality-flow-hero .about-banner-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
    max-width: 980px;
}

.quality-flow-hero .about-banner-copy,
.rfq-hero .section-header {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quality-flow-hero .section-tag,
.rfq-hero .section-tag {
    background: #f97316;
    color: #ffffff;
    border: none;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.quality-flow-hero h1,
.rfq-hero .section-title {
    margin-bottom: 1rem;
    color: #ffffff;
   
    line-height: 1.08;
    text-align: center;
}

.quality-flow-hero p,
.rfq-hero .section-content p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    text-align: center;
}

.quality-flow-hero .about-breadcrumb {
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
}

.quality-flow-hero .hero-actions,
.rfq-hero-actions {
    justify-content: center;
}

.quality-flow-hero .hero-actions .btn,
.rfq-hero-actions .btn {
    min-width: 190px;
}

@media (max-width: 767px) {
    .quality-flow-hero,
    .rfq-hero {
        min-height: auto;
        padding: 5rem 4% 3.5rem;
    }

    .quality-flow-hero .about-banner-shell {
        gap: 1.5rem;
    }

    .quality-flow-hero .hero-actions .btn,
    .rfq-hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .quality-flow-track {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quality-flow-step {
        min-height: auto;
    }

    .quality-flow-connector {
        width: 2px;
        height: 36px;
        margin: 0 auto;
        background: linear-gradient(180deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.95));
    }

    .quality-flow-connector::after {
        top: auto;
        bottom: -2px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(135deg);
    }
}

.capabilities-list-section {
    background: #ffffff;
    padding: 4.5rem 5% 3rem;
}

.capabilities-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.capability-list-action {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.capability-list-tile {
    background: linear-gradient(180deg, #f8fbff 0%, #eff4fb 100%);
    border-radius: 26px;
    border: 1px solid rgba(15, 41, 89, 0.12);
    padding: 1.75rem;
    min-height: 220px;
    display: grid;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-list-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(13, 43, 103, 0.12);
}

.capability-list-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #0d2b67;
    color: #ffffff;
    font-size: 1.2rem;
}

.capability-list-tile h3 {
    margin: 0;
    color: #0d2b67;
    font-size: 1.2rem;
    line-height: 1.3;
}

.capability-list-tile p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 0.96rem;
}

.machinery-page {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.machinery-hero {
    padding: 9rem 6% 4.5rem;
}

.machinery-hero-shell {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.machinery-hero-copy p {
    max-width: 640px;
    margin-top: 1rem;
    color: #64748b;
    line-height: 1.85;
    font-size: 1.02rem;
}

.machinery-hero-copy .section-title,
.machinery-overview .section-title,
.machinery-catalog-section .section-title,
.machinery-advantages .section-title {
    margin-bottom: 0.75rem;
}

.machinery-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
}

.machinery-hero-card {
    position: relative;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.machinery-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.machinery-hero-badge {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.machinery-overview,
.machinery-advantages {
    padding: 0 6% 4.5rem;
}

.machinery-overview .section-header,
.machinery-catalog-section .section-header,
.machinery-advantages .section-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.machinery-catalog-section {
    padding-top: 0;
}

.machinery-catalog-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.machinery-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.machinery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.machinery-card-media {
    height: 220px;
    background: #e2e8f0;
}

.machinery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.machinery-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.machinery-card-subtitle {
    margin: 0;
    color: #0f3361;
    font-weight: 700;
}

.machinery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}

.machinery-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: #edf3fb;
    color: #0f3361;
    font-size: 0.86rem;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .machinery-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .machinery-hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    }
}

@media (max-width: 980px) {
    .machinery-hero-shell {
        grid-template-columns: 1fr;
    }

    .machinery-hero-copy,
    .machinery-hero-media {
        width: 100%;
    }

    .machinery-hero-copy {
        text-align: center;
    }

    .machinery-hero-copy p {
        max-width: 100%;
    }

    .machinery-hero-actions {
        justify-content: center;
    }

    .machinery-overview .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {
    .capabilities-list-grid {
        grid-template-columns: 1fr;
    }

    .machinery-catalog-grid {
        grid-template-columns: 1fr;
    }

    .machinery-hero {
        padding: 8rem 4% 4rem;
    }

    .machinery-overview,
    .machinery-advantages {
        padding-left: 4%;
        padding-right: 4%;
    }

    .machinery-hero-card {
        min-height: 340px;
    }

    .machinery-card-body {
        padding: 1.3rem;
    }
}

@media (max-width: 640px) {
    .machinery-overview .stats-grid {
        grid-template-columns: 1fr;
    }

    .machinery-hero-actions {
        flex-direction: column;
    }

    .machinery-hero-actions .btn,
    .machinery-hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .machinery-hero {
        padding: 6.9rem 1rem 3.2rem;
    }

    .machinery-overview,
    .machinery-advantages {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 3.2rem;
    }

    .machinery-hero-card {
        min-height: 280px;
        border-radius: 24px;
    }

    .machinery-hero-badge {
        right: 0.9rem;
        bottom: 0.9rem;
        max-width: calc(100% - 1.8rem);
        text-align: center;
        font-size: 0.82rem;
    }

    .machinery-card {
        border-radius: 22px;
    }

    .machinery-card-media {
        height: 200px;
    }

    .machinery-card-body {
        padding: 1.1rem;
    }

    .machinery-meta span {
        width: 100%;
        justify-content: center;
    }
}

/* Unified inner-page banner redesign */
.about-banner,
.blog-hero,
.industries-hero,
.capability-hero,
.contact-modern-hero,
.quality-flow-hero,
.rfq-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(420px, 62vh, 640px);
    padding: 8.5rem 5% 5rem;
       background: linear-gradient(180deg, rgb(1 92 172) 0%, rgb(0 82 156) 18%, rgb(13 43 103) 42%, rgb(0 69 140) 100%), radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 42%), radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.14), transparent 20%), linear-gradient(180deg, #085699 0%, #004086 40%, #0058a7 100%) !important;
}

.about-banner-overlay,
.blog-hero-overlay,
.industries-hero-overlay,
.capability-hero-overlay,
.contact-modern-hero-overlay,
.quality-flow-hero .about-banner-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.36) 24%, rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.04), transparent 18%),
        radial-gradient(circle at 86% 20%, rgba(249, 115, 22, 0.12), transparent 18%);
}

.rfq-hero::before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.36) 24%, rgba(0, 0, 0, 0.12) 54%, rgba(0, 0, 0, 0) 100%),
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.04), transparent 18%),
        radial-gradient(circle at 86% 20%, rgba(249, 115, 22, 0.12), transparent 18%);
}

.about-banner-shell,
.blog-hero-shell,
.industries-hero-shell,
.capability-hero-shell,
.contact-modern-shell,
.quality-flow-hero .about-banner-shell {
    max-width: 980px;
    grid-template-columns: 1fr !important;
    gap: 0;
    justify-items: center;
    text-align: center;
}

.rfq-hero .section-header {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.about-banner-copy,
.blog-hero-copy,
.industries-hero-copy,
.capability-hero-copy,
.contact-modern-copy,
.quality-flow-hero .about-banner-copy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-banner-visual,
.blog-hero-panel,
.industries-hero-card,
.capability-hero-stat,
.contact-modern-hero-card {
    display: none !important;
}

.about-banner .section-tag,
.blog-hero .section-tag,
.industries-hero .section-tag,
.capability-hero .section-tag,
.contact-modern-hero .section-tag,
.quality-flow-hero .section-tag,
.rfq-hero .section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    padding: 0.48rem 0.95rem;
    border-radius: 999px;
    background: #ff6a00;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.22);
}

.about-breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
}

.capability-eyebrow,
.blog-hero-eyebrow,
.industries-eyebrow,
.contact-modern-eyebrow {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.08em;
}

.about-banner h1,
.blog-hero-copy h1,
.industries-hero-copy h1,
.capability-hero-copy h1,
.contact-modern-copy h1,
.quality-flow-hero h1,
.rfq-hero .section-title {
    max-width: 860px;
    margin: 0 auto 1.2rem;
    color: #ffffff;
   
    line-height: 1.08;
    text-shadow: none;
}

.about-banner p,
.blog-hero-copy p,
.industries-hero-copy p,
.capability-hero-copy p,
.contact-modern-copy p,
.quality-flow-hero p,
.rfq-hero .section-content p {
    max-width: 860px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.75;
}

.about-banner .hero-actions,
.blog-hero .hero-actions,
.industries-hero .hero-actions,
.capability-hero .hero-actions,
.contact-modern-hero .hero-actions,
.quality-flow-hero .hero-actions,
.rfq-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-hero-metrics {
    grid-template-columns: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2rem;
}

.blog-metric {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.blog-metric strong {
    display: none;
}

.blog-metric span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.rfq-hero .section-content {
    margin-top: 0;
}

@media (max-width: 820px) {
    .about-banner,
    .blog-hero,
    .industries-hero,
    .capability-hero,
    .contact-modern-hero,
    .quality-flow-hero,
    .rfq-hero {
        min-height: auto;
        padding: 7rem 4% 3.8rem;
    }
}

@media (max-width: 560px) {
    .about-banner,
    .blog-hero,
    .industries-hero,
    .capability-hero,
    .contact-modern-hero,
    .quality-flow-hero,
    .rfq-hero {
        padding: 6.4rem 1rem 3.2rem;
    }

    .about-banner h1,
    .blog-hero-copy h1,
    .industries-hero-copy h1,
    .capability-hero-copy h1,
    .contact-modern-copy h1,
    .quality-flow-hero h1,
    .rfq-hero .section-title {
        font-size: 2.3rem;
    }

    .blog-hero-metrics {
        gap: 0.7rem;
    }

    .blog-metric {
        width: 100%;
        padding: 0.8rem 1rem;
    }

    .about-banner p,
    .blog-hero-copy p,
    .industries-hero-copy p,
    .capability-hero-copy p,
    .contact-modern-copy p,
    .quality-flow-hero p,
    .rfq-hero .section-content p {
        font-size: 0.98rem;
        line-height: 1.65;
    }
}
