:root {
    --blue: #0068a8;
    --blue-bright: #159edc;
    --blue-dark: #004873;
    --navy: #062f4f;
    --navy-dark: #031e33;
    --charcoal: #282e32;
    --steel: #6c787f;
    --light-blue: #e9f5fa;
    --light: #f5f8fa;
    --white: #ffffff;
    --text: #26353e;
    --muted: #3f4143;
    --border: #dce5e9;
    --green: #20b15a;
    --shadow: 0 22px 58px rgba(5, 47, 79, 0.12);
    --radius: 22px;

    --top-image:
        url("assets/images/top-header-bg.jpg"),
        url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1800&q=78");


}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

section {
    position: relative;
    padding: 65px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    padding: 7px 12px;
    border: 1px solid #cce8f4;
    border-radius: 7px;
    color: var(--blue);
    background: #eef8fc;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.section-label i {
    font-size: 0.93rem;
}

.section-title {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--navy);
    font-size: 42px;
    font-weight: 800;
    letter-spacing:
}

.section-copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

/* Buttons */
.btn {
    position: relative;
    padding: 13px 23px;
    border-radius: 9px;
    font-size: 0.96rem;
    font-weight: 700;
    overflow: hidden;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-brand {
    border: 1px solid var(--blue);
    color: var(--navy);
    background: linear-gradient(135deg, var(--light), var(--light-blue));
    box-shadow: 0 12px 27px rgba(0, 104, 168, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--navy-dark);
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    box-shadow: 0 15px 32px rgba(3, 30, 51, 0.28);
    transform: translateY(-2px);
}

.btn-dark-blue {
    border: 1px solid rgba(255, 255, 255, .3);
    color: var(--white);
    background: rgba(5, 47, 79, .82);
    backdrop-filter: blur(10px);
}

.btn-dark-blue:hover,
.btn-dark-blue:focus {
    border-color: var(--blue-bright);
    color: var(--white);
    background: var(--blue);
    transform: translateY(-2px);
}

.btn-light-blue {
    border: 1px solid #b9e2f2;
    color: var(--blue-dark);
    background: #eaf7fc;
}

.btn-light-blue:hover,
.btn-light-blue:focus {
    border-color: var(--blue);
    color: var(--white);
    background: var(--blue);
    transform: translateY(-2px);
}

/* Top header */
.top-header {
    position: relative;
    z-index: 1040;
    color: var(--white);
    background:
        linear-gradient(90deg,
            rgba(3, 30, 51, .98),
            rgba(0, 72, 115, .9)),
        var(--top-image);
    background-position: center;
    background-size: cover;
}

.top-header-inner {
    min-height: 44px;
}

.top-message,
.top-contact,
.top-contact a {
    display: flex;
    align-items: center;
}

.top-message {
    gap: 9px;
    color: #fff;
    font-size: 0.77rem;
    font-weight: 600;
}

.top-contact {
    gap: 21px;
}

.top-contact a {
    gap: 7px;
    color: #fff;
    font-size: 0.77rem;
    font-weight: 700;
}

.top-message i,
.top-contact i {
    color: #fff;
    font-size: 0.85rem;
}

.top-contact a:hover {
    color: var(--white);
}

/* Navigation */
.main-nav {
    position: relative;
    z-index: 1035;
    background: #F4F0E8;
    box-shadow: 0 10px 34px rgba(5, 47, 79, .09);
    backdrop-filter: blur(14px);
    padding: 10px 0px;
}

.main-nav.fixed-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    animation: navDown 0.35s ease;
}

@keyframes navDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 213px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.header-profile-icon {
    position: relative;
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border: 1px solid #cde6f1;
    border-radius: 13px;
    color: var(--blue);
    background:
        linear-gradient(145deg, #f5fbfd, #dceff7);
    font-size: 1.2rem;
    overflow: hidden;
}

.header-profile-icon::before,
.header-profile-icon::after {
    position: absolute;
    border: 4px solid rgba(0, 104, 168, .16);
    content: "";
    transform: rotate(45deg);
}

.header-profile-icon::before {
    width: 34px;
    height: 34px;
}

.header-profile-icon::after {
    width: 19px;
    height: 19px;
    border-color: rgba(39, 46, 50, .16);
}

.header-profile-icon i {
    position: relative;
    z-index: 1;
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: 11px;
}

.fallback-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--navy));
    font-weight: 800;
}

.fallback-copy strong {
    display: block;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.fallback-copy small {
    color: var(--blue);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 3px;
}

.desktop-menu .nav-link {
    position: relative;
    padding: 31px 9px;
    color: var(--charcoal);
    font-size: 15px;
    font-weight: 600;
}

.desktop-menu .nav-link::after {
    position: absolute;
    right: 9px;
    bottom: 20px;
    left: 9px;
    height: 3px;
    border-radius: 10px;
    background: var(--blue);
    content: "";
    transform: scaleX(0);
    transition: 0.25s ease;
}

.desktop-menu .nav-link:hover,
.desktop-menu .nav-link.active {
    color: var(--blue);
}

.desktop-menu .nav-link:hover::after,
.desktop-menu .nav-link.active::after {
    transform: scaleX(1);
}

.menu-button {
    display: grid;
    width: 45px;
    height: 45px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--navy));
    font-size: 1.4rem;
}

/* Mobile navigation */
.mobile-menu {
    width: min(370px, 89vw) !important;
    border: 0;
}

.mobile-menu .offcanvas-header {
    padding: 18px 21px;
    border-bottom: 1px solid var(--border);
    background: #F4F0E8;
}

.mobile-logo {
    width: 175px;
    max-height: 65px;
    object-fit: contain;
    object-position: left center;
}

.mobile-menu .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 23px 21px;
}

.mobile-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 3px;
    border-bottom: 1px solid var(--border);
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 700;
}

/*.mobile-links a::after {*/
/*    color: var(--blue);*/
/*    font-family: "bootstrap-icons";*/
/*    content: "\F285";*/
/*}*/

.mobile-links a:hover {
    padding-left: 8px;
    color: var(--blue);
}

.mobile-menu-card {
    margin-top: auto;
    padding: 23px;
    border-radius: 17px;
    color: var(--white);
    background:
        linear-gradient(rgba(3, 30, 51, .9), rgba(0, 72, 115, .9)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=700&q=75") center/cover;
}

.mobile-menu-card strong {
    display: block;
    margin-bottom: 7px;
}

.mobile-menu-card p {
    color: rgba(255, 255, 255, .7);
    font-size: 0.71rem;
    line-height: 1.65;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    min-height: 650px;
    align-items: center;
    padding: 80px 0;
    color: var(--white);
    background:
        linear-gradient(90deg,
            rgba(3, 30, 51, .57) 0%,
            rgba(5, 47, 79, .37) 48%,
            rgba(0, 104, 168, .05) 100%), url("../images/banner.png");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to right, black, transparent);
}

.hero::after {
    position: absolute;
    right: -170px;
    bottom: -280px;
    width: 650px;
    height: 650px;
    border: 90px solid rgba(21, 158, 220, .11);
    border-radius: 50%;
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 7px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    backdrop-filter: blur(10px);
}

.hero-label i {
    color: #fff;
}

.hero h1 {
    margin-bottom: 23px;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    color: #65cafa;
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 32px;
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.82;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 27px;
    margin-top: 35px;
}

.hero-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-point i {
    color: #65cafa;
}

/* Statistics */
.stats-wrap {
    position: relative;
    z-index: 5;
    margin-top: -48px;
}

.stats-panel {
    padding: 19px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow);
}

.stat-item {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 14px;
    padding: 9px 20px;
    border-right: 1px solid var(--border);
}

.stat-item.last {
    border-right: 0;
}

.stat-icon {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--navy));
    font-size: 1.63rem;
}

.stat-item strong {
    display: block;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
}

.stat-item small {
    color: var(--navy-dark);
    font-size: 0.92rem;
    font-weight: 500;

}

/* Product profile decorations */
.profile-pattern {
    overflow: hidden;
}

.profile-pattern::before,
.profile-pattern::after {
    position: absolute;
    z-index: 0;
    border: 25px solid rgba(0, 104, 168, .04);
    content: "";
    transform: rotate(45deg);
    pointer-events: none;
}

.profile-pattern::before {
    top: 80px;
    left: -160px;
    width: 320px;
    height: 320px;
}

.profile-pattern::after {
    right: -125px;
    bottom: 60px;
    width: 260px;
    height: 260px;
    border-color: rgba(39, 46, 50, .04);
}

.profile-pattern .container {
    position: relative;
    z-index: 1;
}

/* About */
.about-visual {
    position: relative;
    min-height: 525px;
    padding: 0 45px 45px 0;
}

.about-visual img {
    width: 100%;
    height: 480px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 68%;
    height: 68%;
    border-radius: var(--radius);
    background: linear-gradient(145deg, #d9f0f9, #e9eef1);
    content: "";
}

.experience-card {
    position: absolute;
    right: 0;
    bottom: 17px;
    width: 215px;
    padding: 25px;
    border: 7px solid var(--white);
    border-radius: 19px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--navy));
    box-shadow: var(--shadow);
}

.experience-card strong {
    display: block;
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

.experience-card span {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.48;
}

.feature-list {
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 11px;
    margin-bottom: 11px;
    color: #34444e;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature-list i {
    color: var(--blue);
}

/* Products */
.products {
    background:
        radial-gradient(circle at 7% 18%, rgba(21, 158, 220, .08), transparent 23%),
        radial-gradient(circle at 94% 82%, rgba(5, 47, 79, .06), transparent 25%),
        var(--light);
}

.product-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--white);
    box-shadow: 0 15px 42px rgba(5, 47, 79, .07);
    overflow: hidden;
    transition: 0.38s ease;
}

.product-card:hover {
    border-color: rgba(0, 104, 168, .38);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}



.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.65s ease;
    object-position: center;
}

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-type {
    position: absolute;
    top: 19px;
    left: 19px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 8px;
    color: var(--white);
    background: rgba(3, 30, 51, .84);
    font-size: 0.84rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.product-content {
    position: relative;
    padding: 25px;
}

.product-icon {
    position: absolute;
    top: -29px;
    right: 27px;
    z-index: 3;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
    font-size: 1.18rem;
}

.product-content h3 {
    max-width: 420px;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.22rem;
    font-weight: 800;
}

.product-content p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.72;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 0 0;
    margin: 20px 0 0;
    border-top: 1px solid var(--border);
    list-style: none;
}

.product-list li {
    display: flex;
    gap: 7px;
    color: #46545d;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-list i {
    color: var(--blue);
}

/* Capabilities */
.capability-card {
    position: relative;
    min-height: 430px;
    border-radius: 23px;
    color: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.capability-card>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.capability-card:hover>img {
    transform: scale(1.07);
}

.capability-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    background:
        linear-gradient(to top, rgba(3, 30, 51, .98), rgba(5, 47, 79, .06) 80%);
}

.capability-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 15px;
    background: rgba(255, 255, 255, .12);
    font-size: 1.25rem;
    backdrop-filter: blur(8px);
}

.capability-card h3 {
    margin-bottom: 11px;
    font-size: 1.42rem;
    font-weight: 800;
}

.capability-card p {
    max-width: 460px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 0.78rem;
    line-height: 1.72;
}


/* Quality */
.quality-visual {
    position: relative;
    height: 580px;
    border-radius: 23px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.quality-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-caption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    color: var(--white);
    background: rgba(3, 30, 51, .89);
    backdrop-filter: blur(11px);
}

.quality-caption strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.96rem;
}

.quality-caption span {
    color: #fff;
    font-size: 0.81rem;
    line-height: 1.6;
}

.quality-step {
    display: flex;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.step-number {
    display: grid;
    flex: 0 0 41px;
    width: 41px;
    height: 41px;
    place-items: center;
    border-radius: 11px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blue), var(--navy));
    font-size: 0.64rem;
    font-weight: 800;
}

.quality-step h5 {
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 800;
}

.quality-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.71rem;
    line-height: 1.6;
}

/* Contact */
.contact-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(21, 158, 220, .08), transparent 23%),
        var(--light);
}

.contact-visual {
    position: relative;
    min-height: 620px;
    border-radius: 24px;
    color: var(--white);
    background:
        linear-gradient(to top, rgba(3, 30, 51, .98), rgba(3, 30, 51, .16)),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1000&q=85") center/cover;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-visual-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 38px;
}

.contact-visual-content h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
    font-weight: 800;
}

.contact-visual-content>p {
    color: rgba(255, 255, 255, .68);
    font-size: 0.76rem;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.contact-method i {
    display: grid;
    flex: 0 0 37px;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy);
    background: var(--white);
}

.contact-method strong {
    display: block;
    font-size: 0.69rem;
}

.contact-method span {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: 0.59rem;
}

.form-panel {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.form-panel-title {
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.form-panel-title h3 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
}

.form-panel-title p {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.form-label {
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: var(--border);
    border-radius: 9px;
    font-size: 0.76rem;
    box-shadow: none !important;
}

textarea.form-control {
    min-height: 115px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue);
}

/* Different FAQ design */
.faq-section {
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(3, 30, 51, .98), rgba(0, 72, 115, .92)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1900&q=75") center/cover;
    overflow: hidden;
}

.faq-section::after {
    position: absolute;
    right: -200px;
    bottom: -260px;
    width: 600px;
    height: 600px;
    border: 95px solid rgba(101, 202, 250, .07);
    border-radius: 50%;
    content: "";
}

.faq-section .section-title {
    color: var(--white);
}

.faq-section .section-copy {
    color: rgba(255, 255, 255, .64);
}

.faq-section .section-label {
    border-color: rgba(101, 202, 250, .25);
    color: #65cafa;
    background: rgba(101, 202, 250, .08);
}

.faq-aside {
    position: relative;
    z-index: 1;
    padding-right: 35px;
}

.faq-help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 360px;
    margin-top: 32px;
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
}

.faq-help-card i {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 11px;
    color: var(--navy);
    background: #65cafa;
    font-size: 1rem;
}

.faq-help-card strong {
    display: block;
    font-size: 0.76rem;
}

.faq-help-card span {
    color: rgba(255, 255, 255, .58);
    font-size: 0.65rem;
}

.faq-list {
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
    overflow: hidden;
    backdrop-filter: blur(9px);
}

.faq-question {
    display: grid;
    width: 100%;
    grid-template-columns: 43px 1fr 34px;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 0;
    color: var(--white);
    background: transparent;
    text-align: left;
}

.faq-number {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 11px;
    color: #65cafa;
    background: rgba(101, 202, 250, .11);
    font-size: 0.65rem;
    font-weight: 800;
}

.faq-question strong {
    font-size: 0.78rem;
    font-weight: 700;
}

.faq-toggle {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    transition: 0.3s ease;
}

.faq-question:not(.collapsed) .faq-toggle {
    color: var(--navy);
    background: #65cafa;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 73px;
    color: rgba(255, 255, 255, .63);
    font-size: 0.73rem;
    line-height: 1.7;
}

/* CTA */
.cta {
    padding: 40px 0px;
    background: var(--light);
}

.cta-panel {
    padding: 56px;
    border-radius: 24px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(3, 30, 51, .97), rgba(0, 104, 168, .72)),
        url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1700&q=85") center/cover;
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    max-width: 680px;
    margin-bottom: 14px;
    font-size: clamp(1.55rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.cta-panel p {
    max-width: 640px;
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.72;
}

/* Footer */
footer {
    position: relative;
    padding: 72px 0 24px;
    color: rgba(255, 255, 255, .69);
    background: #172127;
    overflow: hidden;
}

footer::after {
    position: absolute;
    right: -140px;
    bottom: -190px;
    width: 410px;
    height: 410px;
    border: 70px solid rgba(0, 104, 168, .08);
    border-radius: 50%;
    content: "";
}

.footer-logo {
    width: 215px;
    padding: 5px;
    border-radius: 9px;
    background: #F4F0E8;
    object-fit: contain;
}

.footer-copy {
    max-width: 440px;
    margin: 21px 0 15px;
    font-size: 16px;
    line-height: 1.72;
    color: #fff;
}

.footer-slogan {
    color: #fff;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: #fff;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    gap: 11px;
    margin-bottom: 13px;
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
}

.footer-contact i {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 15px;
    color: #fff;
}

/* Floating call and WhatsApp */
.floating-contact {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 1010;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-action {
    position: relative;
    display: flex;
    width: 49px;
    height: 49px;
    align-items: center;
    border-radius: 14px;
    color: var(--white);
    box-shadow: 0 13px 30px rgba(3, 30, 51, .25);
    overflow: hidden;
    transition: width .35s ease, transform .3s ease;
}

.floating-action i {
    display: grid;
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    place-items: center;
    font-size: 1.15rem;
}

.floating-action span {
    padding-right: 17px;
    white-space: nowrap;
    font-size: 0.7rem;
    font-weight: 800;
}

.floating-action.call {
    background: linear-gradient(145deg, var(--blue), var(--blue-dark));
}

.floating-action.whatsapp {
    background: linear-gradient(145deg, #25d366, #169b47);
}

.floating-action:hover {
    width: 135px;
    color: var(--white);
    transform: translateY(-2px);
}

.back-to-top {
    position: fixed;
    right: 21px;
    bottom: 24px;
    z-index: 1010;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 11px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 12px 27px rgba(3, 30, 51, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(13px);
    transition: 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(27px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
    .brand-logo {
        width: 195px;
    }

    .desktop-menu .nav-link {
        padding-right: 6px;
        padding-left: 6px;
    }

    .header-profile-icon {
        display: none;
    }
}

@media (max-width: 991px) {
    section {
        padding: 75px 0;
    }

    .top-message {
        display: none;
    }

    .top-header-inner {
        justify-content: center !important;
    }

    .brand-logo {
        width: 186px;
        height: 61px;
    }

    .hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .stats-panel .col-lg-3:last-child .stat-item {
        border-bottom: 0;
    }

    .about-visual,
    .quality-visual,
    .contact-visual {
        margin-bottom: 35px;
    }

    .faq-aside {
        margin-bottom: 35px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 42px 0;
    }

    .top-header-inner {
        min-height: 40px;
    }

    .top-contact {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .top-contact .mobile-hide {
        display: none;
    }


    .hero {
        min-height: 620px;
        padding: 60px 0;
        text-align: center;
        background:
            linear-gradient(rgba(3, 30, 51, .4), rgba(3, 30, 51, .32)),
            url("../images/banner-mbn.png");
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        margin: auto;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero-actions,
    .hero-points {
        justify-content: center;
    }

    .stats-wrap {
        margin-top: -28px;
    }

    .about-visual {
        min-height: 425px;
        padding: 0 25px 42px 0;
    }

    .about-visual img {
        height: 390px;
    }

    .experience-card {
        width: 180px;
        padding: 20px;
    }

    .product-image {
        height: 235px;
    }

    .product-list {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: 390px;
    }

    .capability-overlay {
        padding: 28px 23px;
    }

    .industry-main {
        min-height: 410px;
        margin-bottom: 18px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-box {
        min-height: 140px;
    }

    .quality-visual {
        height: 470px;
    }

    .contact-visual {
        min-height: 500px;
    }

    .contact-visual-content,
    .form-panel {
        padding: 28px 23px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .faq-question {
        grid-template-columns: 39px 1fr 32px;
        gap: 10px;
        padding: 13px;
    }

    .faq-number {
        width: 39px;
        height: 39px;
    }

    .faq-answer {
        padding: 0 15px 18px 62px;
    }

    .cta-panel {
        padding: 39px 23px;
        text-align: center;
    }

    .floating-contact {
        left: 12px;
        bottom: 15px;
    }

    .floating-action {
        width: 46px;
        height: 46px;
    }

    .floating-action i {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .floating-action:hover {
        width: 46px;
    }

    .floating-action span {
        display: none;
    }

    .back-to-top {
        right: 12px;
        bottom: 15px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 168px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-copy {
        font-size: 0.85rem;
    }


    .about-visual {
        min-height: 380px;
    }

    .about-visual img {
        height: 345px;
    }

    .experience-card {
        width: 168px;
    }
}

/* =========================================
   SIMPLE CAPABILITIES
========================================= */

.simple-capabilities {
    position: relative;
    padding: 85px 0;
    background: #ffffff;
}

/* Heading */
.capabilities-title {
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.capabilities-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 11px;
    border: 1px solid #cce7f2;
    border-radius: 7px;
    color: #0068a8;
    background: #edf8fc;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.capabilities-title h2 {
    margin-bottom: 14px;
    color: #052f4f;
    font-size: clamp(1.75rem, 3.5vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.capabilities-title p {
    max-width: 590px;
    margin: 0 auto;
    color: #6a7881;
    font-size: 0.84rem;
    line-height: 1.75;
}

/* Card */
.simple-capability-card {
    position: relative;
    height: 100%;
    border: 1px solid #dce5e9;
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 15px 42px rgba(5, 47, 79, 0.08);
    overflow: hidden;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.simple-capability-card:hover {
    border-color: rgba(0, 104, 168, 0.4);
    box-shadow: 0 23px 55px rgba(5, 47, 79, 0.14);
    transform: translateY(-6px);
}

/* Image */
.simple-capability-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.simple-capability-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(3, 30, 51, 0.48),
            transparent 55%);
    content: "";
}

.simple-capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.simple-capability-card:hover .simple-capability-image img {
    transform: scale(1.055);
}

/* Floating icon */
.simple-capability-icon {
    position: absolute;
    right: 25px;
    bottom: 20px;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(0, 83, 135, 0.88);
    box-shadow: 0 11px 25px rgba(3, 30, 51, 0.22);
    font-size: 1.23rem;
    backdrop-filter: blur(8px);
}

/* Content */
.simple-capability-content {
    position: relative;
    padding: 20px;
}

.simple-capability-number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: #dce7ec;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1;
}

.simple-capability-content h3 {
    max-width: calc(100% - 65px);
    margin-bottom: 11px;
    color: #052f4f;
    font-size: 1.42rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.simple-capability-content>p {
    max-width: 470px;
    margin-bottom: 21px;
    color: #6a7881;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.7;
}

/* List */
.simple-capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 17px 0 0;
    margin: 0;
    border-top: 1px solid #e2e9ed;
    list-style: none;
}

.simple-capability-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 7px;
    color: #42525c;
    background: #f2f7f9;
    font-size: 0.85rem;
    font-weight: 700;
}

.simple-capability-list i {
    color: #0068a8;
    font-size: 0.73rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .simple-capabilities {
        padding: 72px 0;
    }

    .simple-capability-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .simple-capabilities {
        padding: 60px 0;
    }

    .capabilities-title {
        margin-bottom: 32px;
    }

    .simple-capability-image {
        height: 235px;
    }

    .simple-capability-content {
        padding: 25px 22px;
    }

    .simple-capability-icon {
        right: 20px;
        bottom: 17px;
        width: 49px;
        height: 49px;
    }
}

@media (max-width: 480px) {
    .capabilities-title h2 {
        font-size: 1.65rem;
    }

    .simple-capability-image {
        height: 215px;
    }

    .simple-capability-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .simple-capability-list li {
        width: 100%;
    }
}

/* =========================================
   MODERN FAQ SECTION
========================================= */

.modern-faq {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at 8% 15%,
            rgba(21, 158, 220, 0.08),
            transparent 25%),
        #f4f7f9;
    overflow: hidden;
}

/* Decorative profile outline */
.modern-faq::after {
    position: absolute;
    right: -135px;
    bottom: -140px;
    width: 285px;
    height: 285px;
    border: 27px solid rgba(0, 104, 168, 0.035);
    content: "";
    pointer-events: none;
    transform: rotate(45deg);
}

.modern-faq .container {
    position: relative;
    z-index: 1;
}

/* =========================================
   LEFT INTRODUCTION
========================================= */

.faq-intro {
    border: 1px solid #dbe5e9;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(5, 47, 79, 0.1);
    overflow: hidden;
}

/* Image */
.faq-intro-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.faq-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.faq-intro:hover .faq-intro-image img {
    transform: scale(1.05);
}

.faq-intro-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(3, 30, 51, 0.77),
            rgba(3, 30, 51, 0.08) 68%);
}

/* Floating icon */
.faq-intro-icon {
    position: absolute;
    right: 24px;
    bottom: 20px;
    display: grid;
    width: 51px;
    height: 51px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    color: #ffffff;
    background: rgba(0, 104, 168, 0.88);
    box-shadow: 0 11px 25px rgba(3, 30, 51, 0.22);
    font-size: 1.16rem;
    backdrop-filter: blur(8px);
}

/* Content */
.faq-intro-content {
    padding: 20px;
}

.faq-section-label {
    display: inline-flex;
    margin-bottom: 13px;
    padding: 7px 10px;
    border: 1px solid #cce8f4;
    border-radius: 6px;
    color: #0068a8;
    background: #edf8fc;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-intro-content h2 {
    margin-bottom: 12px;
    color: #052f4f;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.faq-intro-content>p {
    margin-bottom: 23px;
    color: #6a7881;
    font-size: 0.97rem;
    line-height: 1.72;
}

/* Support box */
.faq-support {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    padding: 14px;
    border: 1px solid #dce8ed;
    border-radius: 12px;
    background: #f5f9fb;
}

.faq-support-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(145deg, #087cb9, #004873);
    font-size: 1rem;
}

.faq-support strong {
    display: block;
    margin-bottom: 2px;
    color: #052f4f;
    font-size: 0.88rem;
}

.faq-support small {
    display: block;
    color: #71808a;
    font-size: 0.82rem;
}

/* Contact button */
.faq-contact-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 13px;
    padding: 10px 15px;
    border: 1px solid #0068a8;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #087dbb, #004873);
    box-shadow: 0 11px 25px rgba(0, 104, 168, 0.2);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.faq-contact-button:hover,
.faq-contact-button:focus {
    border-color: #031e33;
    color: #ffffff;
    background: linear-gradient(135deg, #052f4f, #031e33);
    box-shadow: 0 14px 30px rgba(3, 30, 51, 0.25);
    transform: translateY(-2px);
}

.faq-contact-button i {
    transition: transform 0.3s ease;
}

.faq-contact-button:hover i {
    transform: translateX(4px);
}

/* =========================================
   FAQ ACCORDION
========================================= */

.modern-faq-list {
    display: grid;
    gap: 13px;
}

.modern-faq-item {
    border: 1px solid #dce5e9;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(5, 47, 79, 0.055);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.modern-faq-item:hover {
    border-color: rgba(0, 104, 168, 0.34);
    box-shadow: 0 13px 32px rgba(5, 47, 79, 0.09);
    transform: translateY(-2px);
}

/* Question */
.modern-faq-question {
    display: grid;
    width: 100%;
    grid-template-columns: 43px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 13px;
    padding: 15px 17px;
    border: 0;
    color: #052f4f;
    background: #ffffff;
    text-align: left;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.modern-faq-question:not(.collapsed) {
    color: #0068a8;
    background:
        linear-gradient(90deg,
            #edf8fc,
            #ffffff 80%);
}

/* Number */
.modern-faq-number {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 11px;
    color: #0068a8;
    background: #e9f5fa;
    font-size: 0.84rem;
    font-weight: 800;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.modern-faq-question:not(.collapsed) .modern-faq-number {
    color: #ffffff;
    background: #0068a8;
}

/* Question title */
.modern-faq-title {
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.45;
}

/* Plus button */
.modern-faq-toggle {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid #dbe7ec;
    border-radius: 9px;
    color: #0068a8;
    background: #f4f8fa;
    font-size: 0.88rem;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.modern-faq-question:not(.collapsed) .modern-faq-toggle {
    color: #ffffff;
    background: #052f4f;
    transform: rotate(45deg);
}

/* Answer */
.modern-faq-answer {
    position: relative;
    padding: 5px 22px 21px 73px;
    color: #6a7881;
    font-size: 0.83rem;
    line-height: 1.72;
}

.modern-faq-answer::before {
    position: absolute;
    top: 1px;
    bottom: 22px;
    left: 38px;
    width: 2px;
    border-radius: 5px;
    background: #cde9f5;
    content: "";
}

/* Remove Bootstrap focus shadow */
.modern-faq-question:focus {
    outline: 0;
    box-shadow: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .modern-faq {
        padding: 72px 0;
    }

    .faq-intro {
        max-width: 650px;
        margin: 0 auto;
    }

    .faq-intro-image {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .modern-faq {
        padding: 60px 0;
    }

    .faq-intro-image {
        height: 225px;
    }

    .faq-intro-content {
        padding: 25px 22px;
    }

    .modern-faq-question {
        grid-template-columns: 39px minmax(0, 1fr) 32px;
        gap: 10px;
        padding: 13px;
    }

    .modern-faq-number {
        width: 39px;
        height: 39px;
    }

    .modern-faq-toggle {
        width: 32px;
        height: 32px;
    }

    .modern-faq-answer {
        padding: 0 16px 18px 62px;
    }

    .modern-faq-answer::before {
        left: 32px;
    }
}

@media (max-width: 480px) {
    .faq-intro-image {
        height: 200px;
    }

    .faq-intro-content h2 {
        font-size: 1.55rem;
    }

    .modern-faq-question {
        grid-template-columns: 37px minmax(0, 1fr) 30px;
        gap: 9px;
        padding: 12px;
    }

    .modern-faq-number {
        width: 37px;
        height: 37px;
    }

    .modern-faq-toggle {
        width: 30px;
        height: 30px;
    }

    .modern-faq-title {
        font-size: 0.7rem;
    }

    .modern-faq-answer {
        padding-right: 14px;
        padding-left: 57px;
        font-size: 0.69rem;
    }

    .modern-faq-answer::before {
        left: 29px;
    }
}

/* =========================================
   INDUSTRY CARDS SECTION
========================================= */

.industry-card-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(circle at 7% 16%,
            rgba(21, 158, 220, 0.08),
            transparent 24%),
        radial-gradient(circle at 94% 84%,
            rgba(5, 47, 79, 0.06),
            transparent 25%),
        #f4f7f9;
    overflow: hidden;
}

.industry-card-section .container {
    position: relative;
    z-index: 2;
}

/* Decorative background shapes */
.industry-card-decoration {
    position: absolute;
    border: 25px solid rgba(0, 104, 168, 0.035);
    pointer-events: none;
    transform: rotate(45deg);
}

.decoration-left {
    top: 110px;
    left: -165px;
    width: 330px;
    height: 330px;
}

.decoration-right {
    right: -130px;
    bottom: 90px;
    width: 265px;
    height: 265px;
    border-color: rgba(39, 46, 50, 0.035);
}

/* =========================================
   HEADING
========================================= */

.industry-card-heading {
    max-width: 850px;
    margin: 0 auto 44px;
    text-align: center;
}


/* =========================================
   INDIVIDUAL INDUSTRY CARD
========================================= */

.industry-service-card {
    position: relative;
    display: flex;
    min-height: 220px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid #dce5e9;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 11px 32px rgba(5, 47, 79, 0.065);
    overflow: hidden;
    transition:
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

/* Decorative corner shape */
.industry-service-card::before {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 125px;
    height: 125px;
    border: 18px solid rgba(0, 104, 168, 0.045);
    border-radius: 28px;
    content: "";
    transform: rotate(45deg);
    transition:
        border-color 0.35s ease,
        transform 0.35s ease;
}

/* Bottom gradient */
.industry-service-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(90deg,
            #0068a8,
            #22a9e5);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.industry-service-card:hover {
    border-color: rgba(0, 104, 168, 0.42);
    background:
        linear-gradient(145deg,
            #ffffff,
            #f2f9fc);
    box-shadow: 0 20px 47px rgba(5, 47, 79, 0.13);
    transform: translateY(-7px);
}

.industry-service-card:hover::before {
    border-color: rgba(0, 104, 168, 0.09);
    transform: rotate(45deg) scale(1.08);
}

.industry-service-card:hover::after {
    transform: scaleX(1);
}

/* Card number */
.industry-card-number {
    position: absolute;
    top: 20px;
    right: 21px;
    color: #dce7ec;
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1;
}

/* Icon */
.industry-service-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 14px;
    color: #0068a8;
    background: #e8f5fa;
    font-size: 1.45rem;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.industry-service-card:hover .industry-service-icon {
    color: #ffffff;
    background:
        linear-gradient(145deg,
            #087dbb,
            #004873);
    transform: translateY(-3px);
}

/* Category */
.industry-card-category {
    display: block;
    margin-bottom: 7px;
    color: #0068a8;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Card title */
.industry-service-card h3 {
    position: relative;
    z-index: 1;
    max-width: 210px;
    margin: 0;
    color: #052f4f;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

/* Small decorative line */
.industry-card-line {
    width: 27px;
    height: 2px;
    margin-top: 14px;
    border-radius: 10px;
    background: #159edc;
    transition: width 0.35s ease;
}

.industry-service-card:hover .industry-card-line {
    width: 48px;
}

/* =========================================
   BOTTOM CALLOUT
========================================= */

.industry-card-callout {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    padding: 22px 24px;
    border: 1px solid rgba(101, 202, 250, 0.16);
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(circle at 0% 100%,
            rgba(0, 104, 168, 0.35),
            transparent 35%),
        linear-gradient(135deg,
            #073655,
            #031e33);
    box-shadow: 0 17px 42px rgba(3, 30, 51, 0.16);
}

.industry-callout-icon {
    display: grid;
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    place-items: center;
    border: 1px solid rgba(101, 202, 250, 0.32);
    border-radius: 13px;
    color: #65cafa;
    background: rgba(101, 202, 250, 0.08);
    font-size: 1.5rem;
}

.industry-callout-copy {
    flex: 1;
}

.industry-callout-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 800;
}

.industry-callout-copy span {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    line-height: 1.55;
}

.industry-callout-button {
    display: inline-flex;
    min-height: 41px;
    align-items: center;
    gap: 11px;
    padding: 10px 15px;
    border: 1px solid rgba(101, 202, 250, 0.38);
    border-radius: 8px;
    color: #ffffff;
    background:
        linear-gradient(135deg,
            #087dbb,
            #004873);
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    text-transform: uppercase;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.industry-callout-button:hover,
.industry-callout-button:focus {
    border-color: #65cafa;
    color: #ffffff;
    background:
        linear-gradient(135deg,
            #0a6c9e,
            #021a2d);
    transform: translateY(-2px);
}

.industry-callout-button i {
    transition: transform 0.3s ease;
}

.industry-callout-button:hover i {
    transform: translateX(4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {
    .industry-service-card {
        min-height: 210px;
    }
}

@media (max-width: 991px) {
    .industry-card-section {
        padding: 52px 0;
    }

    .industry-card-callout {
        flex-wrap: wrap;
    }

    .industry-callout-copy {
        flex: 1 1 calc(100% - 70px);
    }

    .industry-callout-button {
        margin-left: 65px;
    }
}

@media (max-width: 767px) {
    .industry-card-section {
        padding: 40px 0;
    }

    .industry-card-heading {
        margin-bottom: 34px;
    }

    .industry-service-card {
        min-height: 195px;
        padding: 21px;
    }

    .industry-service-icon {
        margin: 0px auto 12px;
    }

    .industry-service-card {

        text-align: center;
    }

    .industry-service-card h3 {

        max-width: 100%;
    }

    .industry-card-line {
        margin: 10px auto 0px;
    }

}

@media (max-width: 575px) {
    .industry-service-card {
        min-height: 175px;
    }

    .industry-card-callout {
        display: block;
        padding: 22px;
    }

    .industry-callout-icon {
        margin-bottom: 15px;
    }

    .industry-callout-copy {
        margin-bottom: 18px;
    }

    .industry-callout-button {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

/* =========================================
   SIMPLE STRENGTHS
========================================= */

.simple-strengths {
    padding: 85px 0;
    background: #f4f7f9;
}

/* Heading */
.simple-strengths-tag {
    display: inline-block;
    margin-bottom: 13px;
    color: #0068a8;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.simple-strengths-tag::before {
    display: inline-block;
    width: 25px;
    height: 2px;
    margin-right: 9px;
    background: #0068a8;
    vertical-align: middle;
    content: "";
}

.simple-strengths-title {
    max-width: 650px;
    margin: 0;
    color: #052f4f;
    font-size: clamp(1.8rem, 3.4vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.simple-strengths-copy {
    max-width: 490px;
    margin: 0 0 3px auto;
    color: #6a7881;
    font-size: 0.82rem;
    line-height: 1.78;
}

/* Card */
.simple-strength-card {
    position: relative;
    min-height: 220px;
    height: 100%;
    padding: 15px;
    border: 1px solid #dce5e9;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 9px 28px rgba(5, 47, 79, 0.06);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

/* Blue bottom line */
.simple-strength-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg,
            #0068a8,
            #159edc);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.simple-strength-card:hover {
    border-color: rgba(0, 104, 168, 0.4);
    box-shadow: 0 17px 39px rgba(5, 47, 79, 0.11);
    transform: translateY(-5px);
}

.simple-strength-card:hover::after {
    transform: scaleX(1);
}

/* Icon */
.simple-strength-icon {
    display: grid;
    width: 51px;
    height: 51px;
    margin-bottom: 14px;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: linear-gradient(145deg, #087dbb, #004873);
    font-size: 1.13rem;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.simple-strength-card:hover .simple-strength-icon {
    color: #ffffff;
    background: linear-gradient(145deg,
            #087dbb,
            #004873);
    transform: translateY(-3px);
}

/* Content */
.simple-strength-card h3 {
    margin-bottom: 5px;
    color: #052f4f;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.simple-strength-card p {
    margin: 0;
    color: #6a7881;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .simple-strengths {
        padding: 72px 0;
    }

    .simple-strengths-copy {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .simple-strengths {
        padding: 60px 0;
    }

    .simple-strength-card {
        min-height: 205px;
        padding: 14px;
    }

    .section-title {
        font-size: 25px;
    }

    .hero-label {
        padding: 8px 10px;
        font-size: 12px;
        gap: 5px;
    }

    .simple-strength-card {
        text-align: center;
    }

    .simple-strength-icon {
        margin: 0px auto 11px;

    }

}

@media (max-width: 575px) {
    .simple-strengths-title {
        font-size: 1.7rem;
    }

    .simple-strength-card {
        min-height: auto;
    }
}



/* =========================================================
   HEADER FIXES AND SIMPLE PRODUCTS DROPDOWN
========================================================= */

/* Fix the incomplete rule in the existing CSS */
.section-title {
    letter-spacing: -0.035em;
    line-height: 1.17;
}

.main-nav {
    overflow: visible;
}

.desktop-menu {
    overflow: visible;
}

/* Desktop dropdown */
.simple-product-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.desktop-menu .product-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
    font-family: inherit;
}

/* Remove Bootstrap caret and existing underline */
.desktop-menu .product-dropdown-toggle::after {
    display: none;
}

.product-dropdown-arrow {
    color: var(--blue);
    font-size: 0.62rem;
    transition: transform 0.3s ease;
}

.product-dropdown-toggle.show .product-dropdown-arrow,
.simple-product-dropdown:hover .product-dropdown-arrow {
    transform: rotate(180deg);
}

.simple-product-menu.dropdown-menu {
    top: calc(100% - 13px) !important;
    left: 50% !important;
    width: 355px;
    min-width: 355px;
    padding: 9px;
    margin: 0;
    border: 1px solid rgba(5, 47, 79, 0.11);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 22px 48px rgba(3, 30, 51, 0.18);
    transform: translateX(-50%) !important;
}

.simple-product-menu::before {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(5, 47, 79, 0.11);
    border-left: 1px solid rgba(5, 47, 79, 0.11);
    background: #ffffff;
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.simple-product-menu li+li {
    margin-top: 5px;
}

.simple-product-link {
    display: grid;
    grid-template-columns: 43px 1fr;
    align-items: center;
    gap: 11px;
    padding: 12px;
    border-radius: 10px;
    color: var(--text);
    white-space: normal;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.simple-product-link:hover,
.simple-product-link:focus {
    color: var(--blue);
    background: #edf8fc;
    transform: translateX(3px);
}

.simple-product-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
    font-size: 0.95rem;
}

.simple-product-link strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 0.89rem;
    font-weight: 700;
    line-height: 1.4;
}

.simple-product-link small {
    display: block;
    color: var(--steel);
    font-size: 0.6rem;
    line-height: 1.45;
}

/* Optional desktop hover */
@media (min-width: 992px) and (hover: hover) {
    .simple-product-dropdown:hover>.dropdown-menu {
        display: block;
    }
}

/* Mobile dropdown */
.mobile-product-dropdown {
    border-bottom: 1px solid var(--border);
}

.mobile-product-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 14px 3px;
    border: 0;
    color: var(--charcoal);
    background: transparent;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: left;
}

.mobile-product-button>i {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 8px;
    color: var(--blue);
    background: #edf7fb;
    font-size: 0.62rem;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.mobile-product-button:not(.collapsed) {
    color: var(--blue);
}

.mobile-product-button:not(.collapsed)>i {
    color: #ffffff;
    background: var(--blue);
    transform: rotate(180deg);
}

.mobile-product-submenu {
    padding: 3px 0 12px 12px;
}

.mobile-product-submenu a {
    display: grid;
    grid-template-columns: 37px 1fr;
    align-items: center;
    justify-content: initial;
    gap: 10px;
    padding: 10px;
    margin-bottom: 6px;
    border: 1px solid #e1e9ed;
    border-radius: 10px;
    color: var(--text);
    background: #f7fafb;
}

.mobile-product-submenu a::after {
    display: none;
}

.mobile-product-submenu a:hover {
    padding-left: 10px;
    color: var(--blue);
    border-color: rgba(0, 104, 168, 0.25);
    background: #edf8fc;
}

.mobile-product-submenu a>i {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 9px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
    font-size: 0.8rem;
}

.mobile-product-submenu strong {
    display: block;
    color: var(--navy);
    font-size: 0.66rem;
    font-weight: 800;
}

.mobile-product-submenu small {
    display: block;
    margin-top: 2px;
    color: var(--steel);
    font-size: 0.56rem;
}

/* =========================================================
   SHARED INNER PAGE DESIGN
========================================================= */

.inner-page {
    background: #ffffff;
}

.inner-banner {
    position: relative;
    display: flex;
    min-height: 310px;
    align-items: center;
    padding: 58px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg,
            rgba(3, 30, 51, 0.90) 0%,
            rgba(3, 30, 51, 0.50) 52%,
            rgba(3, 30, 51, 0.20) 100%),
        var(--inner-banner-image, url("../images/banner-inner.webp")) center/cover no-repeat;
    overflow: hidden;
}

.inner-banner.compact-banner {
    min-height: 310px;
}

.inner-banner::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(21, 158, 220, 0.11),
            transparent 50%);
    content: "";
}

.inner-banner::after {
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 450px;
    height: 450px;
    border: 68px solid rgba(21, 158, 220, 0.1);
    border-radius: 50%;
    content: "";
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.inner-banner-content {
    max-width: 760px;
}

.inner-banner-label,
.inner-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.inner-banner-label {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #72d1fa;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.inner-section-label {
    border: 1px solid #cae7f3;
    color: var(--blue);
    background: #edf8fc;
}

.inner-banner h1 {
    max-width: 780px;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.22;
}

.inner-banner p {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size:16px;
    line-height: 1.75;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.92rem;
    font-weight: 600;
}

.inner-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.inner-breadcrumb a:hover {
    color: #72d1fa;
}

.inner-breadcrumb i {
    color: #72d1fa;
    font-size: 0.88rem;
}

.inner-section-title {
    max-width: 800px;
    margin-bottom: 17px;
    color: var(--navy);
    font-size: clamp(1.52rem, 3.2vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.23;
}

.inner-section-copy {
    margin-bottom: 13px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.8;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page-overview {
    background:
        radial-gradient(circle at 7% 20%,
            rgba(21, 158, 220, 0.07),
            transparent 24%),
        #ffffff;
}

.about-page-image {
    position: relative;
    min-height: 515px;
    padding: 0 38px 38px 0;
}

.about-page-image::after {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 72%;
    height: 72%;
    border-radius: 20px;
    background: linear-gradient(145deg, #dceff7, #edf2f4);
    content: "";
}

.about-page-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 485px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-page-experience {
    position: absolute;
    right: 0;
    bottom: 17px;
    z-index: 2;
    width: 190px;
    padding: 22px;
    border: 6px solid #ffffff;
    border-radius: 17px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--blue), var(--navy-dark));
    box-shadow: 0 16px 37px rgba(3, 30, 51, 0.2);
}

.about-page-experience strong {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.about-page-experience span {
    display: block;
    margin-top: 7px;
    font-size: 0.71rem;
    font-weight: 700;
    line-height: 1.5;
}

/* Founder */
.about-promoter {
    padding-top: 20px;
    background: #ffffff;
}

.promoter-panel {
    position: relative;
    padding: 38px;
    border-radius: 21px;
    color: #ffffff;
    background:
        linear-gradient(110deg,
            rgba(3, 30, 51, 0.98),
            rgba(0, 104, 168, 0.88)),
        url("../images/manufacturing.webp") center/cover;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.promoter-panel::after {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 285px;
    height: 285px;
    border: 48px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.promoter-heading,
.promoter-copy {
    position: relative;
    z-index: 1;
}

.promoter-icon {
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.promoter-heading>span:not(.promoter-icon) {
    display: block;
    margin-bottom: 5px;
    color: #74d3fb;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promoter-heading h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 800;
}

.promoter-copy {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.promoter-copy p {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    line-height: 1.8;
}

.promoter-copy p:last-child {
    margin-bottom: 0;
}

/* Business cards */
.about-business {
    background: var(--light);
}

.about-business-card {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #ffffff;
    box-shadow: 0 13px 37px rgba(5, 47, 79, 0.07);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.about-business-card:hover {
    border-color: rgba(0, 104, 168, 0.32);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.about-business-image {
    height: 270px;
    overflow: hidden;
}

.about-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-business-card:hover .about-business-image img {
    transform: scale(1.055);
}

.about-business-content {
    position: relative;
    padding: 28px;
}

.about-business-icon {
    position: absolute;
    top: -29px;
    right: 25px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 5px solid #ffffff;
    border-radius: 15px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--blue-bright), var(--blue-dark));
    font-size: 1.1rem;
}

.about-business-content h3 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.about-business-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.75;
}

/* Vision and mission */
.about-vision {
    background: #ffffff;
}

.vision-panel,
.mission-panel {
    height: 100%;
    min-height: 310px;
    padding: 34px;
    border-radius: 20px;
}

.vision-panel {
    color: #ffffff;
    background:
        linear-gradient(145deg, var(--blue), var(--navy-dark));
    box-shadow: 0 18px 43px rgba(3, 30, 51, 0.2);
}

.vision-panel>i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 21px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.vision-panel>span {
    display: block;
    margin-bottom: 8px;
    color: #72d1fa;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.vision-panel h2 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
}

.mission-panel {
    border: 1px solid #cee6f0;
    background: #edf8fc;
}

.mission-panel ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    padding: 19px 0 0;
    margin: 0;
    border-top: 1px solid #cce1e9;
    list-style: none;
}

.mission-panel li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #41515b;
    font-size: 0.83rem;
    font-weight: 600;
    line-height: 1.55;
}

.mission-panel li i {
    flex: 0 0 auto;
    color: var(--blue);
}

/* =========================================================
   IMAGE-ONLY GALLERY
========================================================= */

.gallery-page {
    background: var(--light);
}

.image-only-gallery {
    padding: 48px 0;
    background:
        radial-gradient(circle at 7% 20%,
            rgba(21, 158, 220, 0.08),
            transparent 24%),
        var(--light);
}

.image-only-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 235px;
    gap: 14px;
}

.image-only-item {
    position: relative;
    display: block;
    grid-column: span 4;
    border-radius: 15px;
    background: var(--navy-dark);
    box-shadow: 0 12px 30px rgba(5, 47, 79, 0.1);
    cursor: zoom-in;
    overflow: hidden;
}

.image-only-item.gallery-tall {
    grid-row: span 2;
}

.image-only-item.gallery-wide {
    grid-column: span 8;
}

.image-only-item::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(3, 30, 51, 0.18);
    content: "";
    opacity: 0;
    transition: opacity 0.35s ease;
}

.image-only-item::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 13px;
    color: #ffffff;
    background: rgba(0, 104, 168, 0.9);
    font-family: "bootstrap-icons";
    font-size: 1rem;
    content: "\F14C";
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.86);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    backdrop-filter: blur(7px);
}

.image-only-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 0.4s ease,
        transform 0.6s ease;
}

.image-only-item:hover img {
    filter: brightness(0.78);
    transform: scale(1.055);
}

.image-only-item:hover::before,
.image-only-item:hover::after {
    opacity: 1;
}

.image-only-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Fancybox */

.fancybox__container {
    --fancybox-bg: rgba(2, 20, 34, 0.97);
    z-index: 2000;
}

.fancybox__caption {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
}

.f-button {
    border-radius: 9px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.f-button:hover {
    color: #ffffff;
    background: var(--blue);
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-section {
    background:
        radial-gradient(circle at 8% 15%,
            rgba(21, 158, 220, 0.08),
            transparent 24%),
        var(--light);
}

.contact-page-information {
    position: relative;
    height: 100%;
    min-height: 585px;
    padding: 34px;
    border-radius: 21px;
    color: #ffffff;
    background:
        linear-gradient(145deg,
            rgba(3, 30, 51, 0.98),
            rgba(0, 104, 168, 0.89)),
        url("../images/manufacturing.webp") center/cover;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-page-information::after {
    position: absolute;
    right: -110px;
    bottom: -145px;
    width: 340px;
    height: 340px;
    border: 55px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
}

.contact-page-information>* {
    position: relative;
    z-index: 1;
}

.contact-page-information .inner-section-label {
    border-color: rgba(101, 202, 250, 0.22);
    color: #72d1fa;
    background: rgba(101, 202, 250, 0.08);
}

.contact-page-information h2 {
    margin-bottom: 11px;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.contact-page-information>p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.83rem;
    line-height: 1.75;
}

.contact-info-list {
    margin-top: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: #ffffff;
}

.contact-info-item:hover {
    color: #ffffff;
}

.contact-info-icon {
    display: grid;
    flex: 0 0 41px;
    width: 41px;
    height: 41px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-item small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.77rem;
    font-weight: 500;
    text-transform: uppercase;
}

.contact-info-item strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.6;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.contact-call-button,
.contact-whatsapp-button {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.contact-call-button {
    background: var(--blue);
}

.contact-whatsapp-button {
    background: #20b15a;
}

.contact-call-button:hover,
.contact-whatsapp-button:hover {
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(3, 30, 51, 0.2);
    transform: translateY(-2px);
}

/* Contact form */
.contact-page-form {
    height: 100%;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 16px 43px rgba(5, 47, 79, 0.09);
}

.contact-form-heading {
    padding-bottom: 19px;
    margin-bottom: 23px;
    border-bottom: 1px solid var(--border);
}

.contact-form-heading>span {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 800;
}

.contact-form-heading p {
    margin: 0;
    color: var(--steel);
    font-size: 0.83rem;
}

.contact-page-form .form-label {
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
}

.contact-page-form .form-control,
.contact-page-form .form-select {
    min-height: 51px;
    padding: 11px 13px;
    border: 1px solid #d8e3e7;
    border-radius: 9px;
    color: var(--text);
    background-color: #f9fbfc;
    font-size: 0.78rem;
    box-shadow: none;
    font-weight: 500;

}

.contact-page-form textarea.form-control {
    min-height: 125px;
    resize: vertical;
}

.contact-page-form .form-control:focus,
.contact-page-form .form-select:focus {
    border-color: var(--blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 104, 168, 0.08);
}

.contact-page-form .btn-brand {
    min-width: 175px;
}

/* =========================================================
   INNER PAGES RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .inner-banner {
        min-height: 330px;
        background-position: 62% center;
    }

    .inner-banner.compact-banner {
        min-height: 290px;
    }

    .about-page-image {
        margin-bottom: 25px;
    }

    .promoter-copy {
        padding-top: 22px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
    }

    .image-only-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 230px;
    }

    .image-only-item,
    .image-only-item.gallery-wide {
        grid-column: auto;
    }

    .contact-page-information {
        min-height: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {

    .inner-banner,
    .inner-banner.compact-banner {
        min-height: 275px;
        padding: 57px 0;
        text-align: center;
    }

    .inner-banner-content {
        margin: 0 auto;
    }

    .inner-banner h1 {
        font-size: 1.6rem;
    }

    .inner-banner p {
        margin-right: auto;
        margin-left: auto;
        font-size: 0.92rem;
    }

    .inner-breadcrumb {
        justify-content: center;
    }

    .about-page-image {
        min-height: 410px;
        padding: 0 23px 34px 0;
    }

    .about-page-image img {
        height: 390px;
    }

    .about-page-experience {
        width: 165px;
        padding: 18px;
    }

    .about-page-experience strong {
        font-size: 1.8rem;
    }

    .promoter-panel,
    .vision-panel,
    .mission-panel {
        padding: 27px 23px;
    }

    .about-business-image {
        height: 235px;
    }

    .about-business-content {
        padding: 24px;
    }

    .mission-panel ul {
        grid-template-columns: 1fr;
    }

    .image-only-gallery {
        padding: 35px 0;
    }

    .image-only-grid {
        grid-auto-rows: 205px;
        gap: 10px;
    }

    .contact-page-information,
    .contact-page-form {
        padding: 27px 22px;
    }
}

@media (max-width: 575px) {
    .simple-product-menu.dropdown-menu {
        width: 320px;
        min-width: 320px;
    }

    .inner-banner h1 {
        font-size: 1.52rem;
    }

    .about-page-image {
        min-height: 355px;
        padding-right: 15px;
        padding-bottom: 27px;
    }

    .about-page-image img {
        height: 338px;
    }

    .about-page-experience {
        right: 0;
        bottom: 10px;
        width: 150px;
    }

    .vision-panel,
    .mission-panel {
        min-height: auto;
    }

    .vision-panel h2 {
        font-size: 1.2rem;
    }

    .image-only-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .image-only-item.gallery-tall {
        grid-row: auto;
    }

    .contact-quick-actions {
        grid-template-columns: 1fr;
    }

    .contact-page-form .btn-brand {
        width: 100%;
    }
}

@media (hover: none) {
    .image-only-item::after {
        width: 42px;
        height: 42px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


/* =========================================================
   COMPLETE PRODUCT DETAIL PAGES
========================================================= */

.product-detail-page {
    background: #ffffff;
}

/* Shared section heading */
.product-section-heading {
    max-width: 770px;
    margin: 0 auto 40px;
    text-align: center;
}

.product-section-heading .inner-section-title {
    margin-bottom: 14px;
}

.product-section-heading>p {
    max-width: 750px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-detail-section {
    padding: 78px 0;
    background:
        radial-gradient(circle at 5% 15%,
            rgba(21, 158, 220, 0.08),
            transparent 25%),
        radial-gradient(circle at 96% 90%,
            rgba(5, 47, 79, 0.07),
            transparent 25%),
        var(--light);
}

.product-detail-card {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(5, 47, 79, 0.11);
    overflow: hidden;
}

/* Product image */
.product-detail-image {
    position: relative;
    min-height: 570px;
    height: 100%;
    background: var(--navy-dark);
    overflow: hidden;
}

.product-detail-image::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(3, 30, 51, 0.76),
            transparent 58%);
    content: "";
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-detail-card:hover .product-detail-image img {
    transform: scale(1.045);
}

.product-detail-number {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 1;
}

.product-detail-image-label {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    color: #ffffff;
    background: rgba(3, 30, 51, 0.84);
    font-size: 0.65rem;
    font-weight: 800;
    backdrop-filter: blur(9px);
}

/* Product content */
.product-detail-content {
    display: flex;
    min-height: 570px;
    flex-direction: column;
    justify-content: center;
    padding: 44px;
}

.product-detail-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-detail-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(145deg,
            var(--blue-bright),
            var(--blue-dark));
    box-shadow: 0 10px 23px rgba(0, 104, 168, 0.2);
    font-size: 1.05rem;
}

.product-detail-category {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-detail-content h2 {
    max-width: 510px;
    margin-bottom: 15px;
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.17;
}

.product-detail-description {
    max-width: 535px;
    margin-bottom: 23px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

.product-range-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 19px;
    border-top: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
}

.product-range-heading i {
    color: var(--blue);
    font-size: 0.9rem;
}

/* Product range */
.product-range-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 17px;
}

.product-range-item {
    display: flex;
    min-height: 75px;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #dfe8eb;
    border-radius: 10px;
    background: #f8fafb;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.product-range-item:hover {
    border-color: rgba(0, 104, 168, 0.28);
    background: #edf8fc;
    transform: translateY(-3px);
}

.product-range-item>span {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    color: var(--blue);
    background: #e1f1f7;
    font-size: 0.85rem;
}

.product-range-item h3 {
    margin: 0;
    color: var(--navy);
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.45;
}

/* Actions */
.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 27px;
    margin-top: 25px;
}

.product-detail-actions .btn {
    font-size: 0.8rem;
}

.product-call-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 0.87rem;
    font-weight: 700;
}

.product-call-link i {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 9px;
    color: var(--blue);
    background: #e8f5fa;
}

.product-call-link:hover {
    color: var(--blue);
}

/* UPVC variation */
.upvc-detail-page .product-detail-icon,
.upvc-detail-page .product-range-item>span {
    color: #ffffff;
    background:
        linear-gradient(145deg,
            var(--navy),
            var(--blue));
}

/* =========================================================
   PRODUCT BENEFITS
========================================================= */

.product-benefits-section {
    padding: 78px 0;
    background: #ffffff;
}

.product-benefit-card {
    position: relative;
    min-height: 245px;
    height: 100%;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 11px 30px rgba(5, 47, 79, 0.06);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.product-benefit-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(90deg,
            var(--blue),
            var(--blue-bright));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-benefit-card::after {
    position: absolute;
    right: -47px;
    bottom: -57px;
    width: 125px;
    height: 125px;
    border: 19px solid rgba(0, 104, 168, 0.035);
    border-radius: 50%;
    content: "";
}

.product-benefit-card:hover {
    border-color: rgba(0, 104, 168, 0.35);
    box-shadow: 0 18px 40px rgba(5, 47, 79, 0.11);
    transform: translateY(-6px);
}

.product-benefit-card:hover::before {
    transform: scaleX(1);
}

.product-benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #cad7dc;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-benefit-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 13px;
    color: var(--blue);
    background: #e8f5fa;
    font-size: 1.1rem;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.product-benefit-card:hover .product-benefit-icon {
    color: #ffffff;
    background:
        linear-gradient(145deg,
            var(--blue-bright),
            var(--blue-dark));
    transform: translateY(-3px);
}

.product-benefit-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 0.91rem;
    font-weight: 800;
    line-height: 1.4;
}

.product-benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 0.81rem;
    line-height: 1.7;
}

/* =========================================================
   PRODUCT GALLERY
========================================================= */

.product-gallery-section {
    padding: 78px 0;
    background:
        radial-gradient(circle at 6% 20%,
            rgba(21, 158, 220, 0.08),
            transparent 25%),
        var(--light);
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(14, 2fr);
    grid-auto-rows: 225px;
    gap: 21px;
}

.product-gallery-item {
    position: relative;
    display: block;
    grid-column: span 4;
    border-radius: 15px;
    background: var(--navy-dark);
    box-shadow: 0 12px 30px rgba(5, 47, 79, 0.1);
    cursor: zoom-in;
    overflow: hidden;
}

.product-gallery-large {
    grid-column: span 6;
    grid-row: span 2;
}

.product-gallery-wide {
    grid-column: span 6;
}

.product-gallery-item::after {
    position: absolute;
    inset: 0;
    background: rgba(3, 30, 51, 0.2);
    content: "";
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        filter 0.4s ease,
        transform 0.6s ease;
}

.product-gallery-item>span {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(0, 104, 168, 0.9);
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.85);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    backdrop-filter: blur(8px);
}

.product-gallery-item:hover img {
    filter: brightness(0.78);
    transform: scale(1.055);
}

.product-gallery-item:hover::after,
.product-gallery-item:hover>span {
    opacity: 1;
}

.product-gallery-item:hover>span {
    transform: translate(-50%, -50%) scale(1);
}

/* =========================================================
   OTHER PRODUCT LINK
========================================================= */

.other-product-link {
    display: grid;
    max-width: 620px;
    grid-template-columns: 48px 1fr 38px;
    align-items: center;
    gap: 13px;
    padding: 16px;
    margin: 30px auto 0;
    border: 1px solid var(--border);
    border-radius: 13px;
    color: var(--text);
    background: #ffffff;
    box-shadow: 0 11px 28px rgba(5, 47, 79, 0.07);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.other-product-link:hover {
    color: var(--text);
    border-color: rgba(0, 104, 168, 0.32);
    box-shadow: 0 17px 37px rgba(5, 47, 79, 0.12);
    transform: translateY(-4px);
}

.other-product-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 12px;
    color: #ffffff;
    background:
        linear-gradient(145deg,
            var(--blue-bright),
            var(--blue-dark));
    font-size: 1rem;
}

.other-product-link small {
    display: block;
    margin-bottom: 3px;
    color: var(--blue);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.other-product-link strong {
    display: block;
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
}

.other-product-link>i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 9px;
    color: var(--blue);
    background: #edf8fc;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.other-product-link:hover>i {
    color: #ffffff;
    background: var(--blue);
    transform: translateX(3px);
}

/* Fancybox */
.fancybox__container {
    --fancybox-bg: rgba(2, 20, 34, 0.97);
    z-index: 2000;
}

.fancybox__caption {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
}

/* =========================================================
   RESPONSIVE PRODUCT PAGES
========================================================= */

@media (max-width: 991px) {

    .product-detail-section,
    .product-benefits-section,
    .product-gallery-section {
        padding: 68px 0;
    }

    .product-detail-image,
    .product-detail-image img {
        min-height: 430px;
    }

    .product-detail-content {
        min-height: auto;
        padding: 38px;
    }

    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 225px;
    }

    .product-gallery-item,
    .product-gallery-large,
    .product-gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .product-gallery-large {
        grid-row: span 2;
    }
}

@media (max-width: 767px) {

    .product-detail-section,
    .product-benefits-section,
    .product-gallery-section {
        padding: 45px 0;
    }

    .product-section-heading {
        margin-bottom: 32px;
    }

    .product-detail-card {
        border-radius: 17px;
    }

    .product-detail-image,
    .product-detail-image img {
        min-height: 335px;
    }

    .product-detail-content {
        padding: 30px 23px;
    }

    .product-detail-content h2 {
        font-size: 1.55rem;
    }

    .product-range-grid {
        grid-template-columns: 1fr;
    }

    .product-benefit-card {
        min-height: 220px;
        text-align: center;
    }

    .product-benefit-icon {
        margin-right: auto;
        margin-left: auto;
    }

    .product-gallery-grid {
        grid-auto-rows: 205px;
        gap: 10px;
    }
}

@media (max-width: 575px) {

    .product-detail-image,
    .product-detail-image img {
        min-height: 280px;
    }

    .product-detail-number {
        top: 16px;
        right: 16px;
        font-size: 1.7rem;
    }

    .product-detail-image-label {
        bottom: 15px;
        left: 15px;
        padding: 8px 10px;
        font-size: 0.58rem;
    }

    .product-detail-description {
        font-size: 0.77rem;
    }

    .product-detail-actions {
        display: block;
    }

    .product-detail-actions .btn {
        width: 100%;
        margin-bottom: 31px;
    }

    .product-call-link {
        justify-content: center;
    }

    .product-benefit-card {
        min-height: auto;
    }

    .product-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 225px;
    }

    .product-gallery-large {
        grid-row: auto;
    }

    .other-product-link {
        grid-template-columns: 43px 1fr 34px;
        padding: 13px;
    }

    .other-product-icon {
        width: 43px;
        height: 43px;
    }

    .other-product-link strong {
        font-size: 0.68rem;
    }
}

@media (hover: none) {
    .product-gallery-item>span {
        width: 42px;
        height: 42px;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}



/* =========================================================
   ABOUT PAGE — KEY STRENGTHS
========================================================= */

.about-strengths-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at 6% 15%,
            rgba(21, 158, 220, 0.08),
            transparent 25%),
        radial-gradient(circle at 95% 90%,
            rgba(5, 47, 79, 0.06),
            transparent 25%),
        var(--light);
    overflow: hidden;
}

/* Section heading */
.about-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.about-section-heading .inner-section-title {
    margin-bottom: 0;
}

/* Strength card */
.about-strength-card {
    position: relative;
    min-height: 235px;
    height: 100%;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 11px 30px rgba(5, 47, 79, 0.06);
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

/* Bottom accent */
.about-strength-card::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background:
        linear-gradient(90deg,
            var(--blue),
            var(--blue-bright));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Decorative circle */
.about-strength-card::after {
    position: absolute;
    right: -48px;
    bottom: -58px;
    width: 130px;
    height: 130px;
    border: 20px solid rgba(0, 104, 168, 0.035);
    border-radius: 50%;
    content: "";
    transition:
        border-color 0.3s ease,
        transform 0.4s ease;
}

.about-strength-card:hover {
    border-color: rgba(0, 104, 168, 0.35);
    box-shadow: 0 18px 42px rgba(5, 47, 79, 0.12);
    transform: translateY(-6px);
}

.about-strength-card:hover::before {
    transform: scaleX(1);
}

.about-strength-card:hover::after {
    border-color: rgba(0, 104, 168, 0.07);
    transform: scale(1.08);
}

/* Number */
.about-strength-number {
    position: absolute;
    top: 19px;
    right: 19px;
    color: #cad6dc;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.about-strength-card:hover .about-strength-number {
    color: var(--blue);
}

/* Icon */
.about-strength-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
    place-items: center;
    border-radius: 13px;
    color: var(--blue);
    background: #e8f5fa;
    font-size: 1.1rem;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.about-strength-card:hover .about-strength-icon {
    color: #ffffff;
    background:
        linear-gradient(145deg,
            var(--blue-bright),
            var(--blue-dark));
    box-shadow: 0 11px 24px rgba(0, 104, 168, 0.21);
    transform: translateY(-3px);
}

/* Card content */
.about-strength-card h3 {
    position: relative;
    z-index: 1;
    max-width: 200px;
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.42;
}

.about-strength-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

/* =========================================================
   ABOUT PAGE — OUR COMMITMENT
========================================================= */

.about-commitment-section {
    padding: 75px 0;
    background: #ffffff;
}

.about-commitment-panel {
    position: relative;
    border-radius: 23px;
    color: #ffffff;
    background:
        linear-gradient(115deg,
            rgba(3, 30, 51, 0.98),
            rgba(0, 72, 115, 0.93)),
        url("../images/about.png") center/cover;
    box-shadow: 0 24px 58px rgba(3, 30, 51, 0.2);
    overflow: hidden;
}

/* Decorative circle */
.about-commitment-panel::before {
    position: absolute;
    top: -145px;
    right: -130px;
    width: 410px;
    height: 410px;
    border: 65px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    content: "";
}

/* Decorative grid */
.about-commitment-panel::after {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.2) 1px,
            transparent 1px);
    background-size: 55px 55px;
    content: "";
    pointer-events: none;
}

/* Commitment heading */
.commitment-heading {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 430px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(3, 30, 51, 0.25);
}

.commitment-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 15px;
    color: #72d1fa;
    background: rgba(255, 255, 255, 0.09);
    font-size: 1.25rem;
    backdrop-filter: blur(8px);
}

.commitment-label {
    display: block;
    margin-bottom: 10px;
    color: #72d1fa;
    font-size: 0.87rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.commitment-heading h2 {
    max-width: 340px;
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.25;
}

/* Commitment content */
.commitment-content {
    position: relative;
    z-index: 2;
    padding: 45px;
}

.commitment-content p {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.84rem;
    line-height: 1.82;
}

.commitment-content .commitment-intro {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.75;
}

/* Commitment quote */
.commitment-quote {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 19px;
    margin: 24px 0 0;
    border: 1px solid rgba(114, 209, 250, 0.24);
    border-radius: 13px;
    background: rgba(114, 209, 250, 0.08);
    backdrop-filter: blur(9px);
}

.commitment-quote-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 11px;
    color: var(--navy-dark);
    background: #72d1fa;
    font-size: 1.1rem;
}

.commitment-quote strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .about-strengths-section {
        padding: 68px 0;
    }

    .about-commitment-section {
        padding: 65px 0;
    }

    .commitment-heading {
        min-height: auto;
        padding: 37px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .commitment-heading h2 {
        max-width: 600px;
    }

    .commitment-content {
        padding: 37px;
    }
}

@media (max-width: 767px) {
    .about-strengths-section {
        padding: 45px 0;
    }

    .about-section-heading {
        margin-bottom: 32px;
    }

    .about-strength-card {
        min-height: 220px;
        padding: 21px;
        text-align: center;
    }

    .about-strength-icon {
        margin-right: auto;
        margin-left: auto;
    }

    .about-strength-card h3 {
        max-width: 100%;
    }

    .about-commitment-section {
        padding: 45px 0;
    }

    .about-commitment-panel {
        border-radius: 18px;
    }

    .commitment-heading,
    .commitment-content {
        padding: 28px 23px;
    }

    .commitment-icon {
        width: 52px;
        height: 52px;
    }

    .commitment-heading h2 {
        font-size: 1.55rem;
    }
}

@media (max-width: 575px) {
    .about-strength-card {
        min-height: auto;
    }

    .commitment-quote {
        align-items: flex-start;
    }

    .commitment-quote strong {
        font-size: 0.88rem;
    }
}


/* =========================================================
   APPLICATIONS AND TECHNICAL SPECIFICATIONS
========================================================= */

.product-technical-section {
    padding: 68px 0;
    background: #ffffff;
}

.product-technical-panel {
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 52px rgba(5, 47, 79, 0.1);
    overflow: hidden;
}

/* Content */
.product-technical-content {
    height: 100%;
    padding: 42px;
}

.product-technical-content h2 {
    max-width: 650px;
    margin-bottom: 13px;
    color: var(--navy);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.product-technical-intro {
    max-width: 650px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.78;
}

/* Application grid */
.product-application-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 29px;
}

.product-application-item {
    display: grid;
    min-height: 90px;
    grid-template-columns: 35px 1fr;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border: 1px solid #dee8ec;
    border-radius: 10px;
    background: #f8fafb;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.product-application-item:hover {
    border-color: rgba(0, 104, 168, 0.28);
    background: #edf8fc;
    transform: translateY(-3px);
}

.product-application-number {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 9px;
    color: #ffffff;
    background:
        linear-gradient(145deg,
            var(--blue-bright),
            var(--blue-dark));
    font-size: 0.72rem;
    font-weight: 700;
}

.product-application-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
}

.product-application-item small {
    display: block;
    color: var(--steel);
    font-size: 0.81rem;
    line-height: 1.55;
}

/* Table heading */
.technical-table-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
}

.technical-table-heading>span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    color: var(--blue);
    background: #e8f5fa;
    font-size: 1.1rem;
}

.technical-table-heading h3 {
    margin: 0;
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 800;
}

/* Table */
.technical-table-wrap {
    border: 1px solid #d9e4e8;
    border-radius: 11px;
    overflow-x: auto;
}

.product-technical-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
}

.product-technical-table th,
.product-technical-table td {
    padding: 13px 15px;
    border-right: 1px solid #d9e4e8;
    border-bottom: 1px solid #d9e4e8;
    font-size: 0.81rem;
    line-height: 1.55;
    text-align: left;
}

.product-technical-table th:last-child,
.product-technical-table td:last-child {
    border-right: 0;
}

.product-technical-table tbody tr:last-child td {
    border-bottom: 0;
}

.product-technical-table thead th {
    color: #ffffff;
    background:
        linear-gradient(135deg,
            var(--blue),
            var(--blue-dark));
    font-size: 0.87rem;
    font-weight: 800;
}

.product-technical-table thead th:first-child {
    width: 36%;
}

.product-technical-table tbody td:first-child {
    color: var(--navy);
    background: #f4f8fa;
    font-weight: 800;
}

.product-technical-table tbody td:last-child {
    color: var(--muted);
    background: #ffffff;
}

.product-technical-table tbody tr:hover td {
    background: #edf8fc;
}

/* Enquiry link */
.technical-enquiry-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 800;
}

.technical-enquiry-link i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--blue);
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.technical-enquiry-link:hover {
    color: var(--blue-dark);
}

.technical-enquiry-link:hover i {
    transform: translateX(4px);
}

/* Technical image */
.product-technical-visual {
    position: relative;
    min-height: 100%;
    height: 100%;
    padding: 30px;
    background:
        radial-gradient(circle at 70% 35%,
            rgba(21, 158, 220, 0.25),
            transparent 38%),
        var(--navy-dark);
    overflow: hidden;
}

.product-technical-visual::before {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 230px;
    height: 230px;
    border: 35px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.product-technical-visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 35%;
    background:
        linear-gradient(to top,
            rgba(3, 30, 51, 0.75),
            transparent);
    content: "";
}

.product-technical-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 650px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.product-technical-panel:hover .product-technical-visual img {
    transform: scale(1.035);
}

.technical-image-label {
    position: absolute;
    right: 47px;
    bottom: 46px;
    left: 47px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #ffffff;
    background: rgba(3, 30, 51, 0.82);
    font-size: 0.67rem;
    font-weight: 800;
    backdrop-filter: blur(9px);
}

.technical-image-label i {
    color: #72d1fa;
    font-size: 0.95rem;
}

/* UPVC colour variation */
.upvc-detail-page .product-application-number,
.upvc-detail-page .product-technical-table thead th {
    background:
        linear-gradient(135deg,
            var(--navy),
            var(--blue));
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
    .product-technical-section {
        padding: 58px 0;
    }

    .product-technical-visual {
        min-height: 470px;
    }

    .product-technical-visual img {
        min-height: 410px;
    }
}

@media (max-width: 767px) {
    .product-technical-section {
        padding: 45px 0;
    }

    .product-technical-panel {
        border-radius: 17px;
    }

    .product-technical-content {
        padding: 28px 22px;
    }

    .product-technical-content h2 {
        font-size: 1.5rem;
    }

    .product-application-list {
        grid-template-columns: 1fr;
    }

    .product-technical-visual {
        min-height: 390px;
        padding: 20px;
    }

    .product-technical-visual img {
        min-height: 350px;
    }

    .technical-image-label {
        right: 34px;
        bottom: 34px;
        left: 34px;
    }
}

@media (max-width: 575px) {
    .product-technical-content {
        padding: 25px 18px;
    }

    .product-technical-visual {
        min-height: 320px;
        padding: 15px;
    }

    .product-technical-visual img {
        min-height: 290px;
    }

    .technical-image-label {
        right: 26px;
        bottom: 26px;
        left: 26px;
        padding: 10px 12px;
        font-size: 0.6rem;
    }
}