/* ==========================================================================
   Conmet International LLP — style.css
   Global styles for all pages (header, footer, components, page sections).
   ========================================================================== */

:root {
    --blue: #1a8cff;
    --blue-2: #0d6efd;
    --blue-deep: #0b63d6;
    --footer-blue: #1583e0;
    --ink: #1f2a37;
    --heading: #20242b;
    --muted: #6c757d;
    --copper: #c8672c;
    --light: #f2f5f8;
    --line: #e6ebf1;
}
* {
    box-sizing: border-box;
}
html,
body {
    overflow-x: clip;
    max-width: 100%;
}
body {
    font-family: "Roboto", sans-serif;
    color: var(--ink);
    line-height: 1.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
    color: var(--heading);
    font-weight: 700;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.section {
    padding: 80px 0;
}
.eyebrow {
    color: var(--blue);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
    padding-top: 6px;
    margin-bottom: 10px;
}
.eyebrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--blue);
}
.sec-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.text-muted-2 {
    color: var(--muted);
}

/* Buttons */
.btn-quote {
    background: var(--blue);
    color: #fff;
    border-radius: 30px;
    padding: 9px 22px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
}
.btn-quote:hover {
    background: var(--blue-deep);
    color: #fff;
}
.btn-pill {
    background: var(--blue-2);
    color: #fff;
    border-radius: 30px;
    padding: 11px 26px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.25s;
}
.btn-pill:hover {
    background: var(--blue-deep);
    color: #fff;
}
.btn-dark-pill {
    background: #0d1522;
    color: #fff;
    border-radius: 30px;
    padding: 11px 26px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.25s;
}
.btn-dark-pill:hover {
    background: #000;
    color: #fff;
}
.btn-outline-read {
    border: 1px solid #d3dae2;
    color: var(--ink);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
}
.btn-outline-read:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ===== Top bar ===== */
.topbar {
    background: var(--blue);
    color: #fff;
    font-size: 0.82rem;
}
.topbar a {
    color: #fff;
    opacity: 0.95;
}
.topbar .info span {
    margin-right: 22px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar .socials a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    margin-left: 6px;
    font-size: 0.72rem;
    transition: 0.25s;
}
.topbar .socials a:hover {
    background: #fff;
    color: var(--blue);
}

/* ===== Header / Nav ===== */
.site-nav {
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 10px 0px;
}
.nav-logo img {
    height: 70px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu > li {
    position: relative;
}
.nav-menu .nav-link {
    color: var(--heading);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color 0.2s;
}
.nav-menu .nav-link i {
    font-size: 0.7rem;
}
.nav-menu .nav-link.active,
.nav-menu .nav-link:hover {
    color: var(--blue);
}
.nav-menu .nav-link.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--blue);
}
/* Dropdown */
.nav-submenu {
    position: absolute;
    top: 150%;
    left: 0;
    min-width: 235px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.22s;
    z-index: 100;
}
.nav-dropdown:hover > .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-submenu li {
    position: relative;
}
.nav-submenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--heading);
    transition: 0.18s;
}
.nav-submenu li a:hover {
    background: var(--light);
    color: var(--blue);
}
/* third level - opens to the right */
.nav-submenu .has-children > a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.62rem;
    opacity: 0.55;
}
.nav-submenu-2 {
    position: absolute;
    top: -8px;
    left: 100%;
    min-width: 245px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: 0.22s;
    z-index: 110;
}
.nav-submenu .has-children:hover > .nav-submenu-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.nav-submenu-2 li a {
    display: block;
}
/* flip to left if it would overflow the right edge */
.nav-submenu-2.flip-left {
    left: auto;
    right: 100%;
    transform: translateX(-10px);
}
.nav-submenu .has-children:hover > .nav-submenu-2.flip-left {
    transform: translateX(0);
}
.nav-quote {
    flex: none;
}
/* Hamburger */
.nav-toggler {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}
.nav-toggler span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--heading);
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.2s;
}
/* Offcanvas mobile menu */
.offcanvas {
    width: 290px;
}
.offcanvas-body .nav-link {
    color: var(--heading);
    font-weight: 500;
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
}
.offcanvas-body .nav-link.active,
.offcanvas-body .nav-link:hover {
    color: var(--blue);
}

/* --- mobile multi-level menu --- */
.offcanvas-body .navbar-nav {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex-direction: column;
}
.offcanvas-body .nav-link {
    display: block;
}
.mob-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.mob-toggle i {
    font-size: 0.75rem;
    transition: transform 0.25s;
    color: var(--blue);
}
.mob-toggle:not(.collapsed) i {
    transform: rotate(180deg);
}
.mob-level-2 {
    padding-left: 14px;
    border-left: 2px solid var(--line);
    margin: 2px 0 2px 4px;
}
.mob-level-2 > .nav-link {
    font-size: 0.9rem;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
}
.mob-level-3 {
    padding-left: 14px;
    border-left: 2px solid #e8eef5;
    margin: 2px 0 6px 4px;
}
.mob-level-3 > .nav-link {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 8px 4px;
    border-bottom: none;
    font-weight: 400;
}
.mob-level-3 > .nav-link:hover {
    color: var(--blue);
}
@media (max-width: 991px) {
    .nav-menu,
    .nav-quote {
        display: none;
    }
    .nav-toggler {
        display: block;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: linear-gradient(120deg, #e9edf1 0%, #dfe5ea 45%, #cfd6dd 100%);
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(233, 237, 241, 0.96) 0%,
        rgba(233, 237, 241, 0.75) 38%,
        rgba(233, 237, 241, 0.15) 60%,
        rgba(233, 237, 241, 0) 78%
    );
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1px;
    margin-bottom: 0;
}
.hero h1 .l1 {
    color: #2b3540;
    display: block;
}
.hero h1 .l2 {
    color: var(--copper);
    display: block;
}
.hero .divider {
    width: 70px;
    height: 3px;
    background: var(--copper);
    margin: 18px 0 14px;
}
.hero .subtitle {
    color: #3d4753;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 32px;
}
.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.hero-feature {
    text-align: center;
    width: 88px;
}
.hero-feature i {
    font-size: 1.5rem;
    color: #3d4753;
    margin-bottom: 8px;
}
.hero-feature .t {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #3d4753;
    text-transform: uppercase;
    line-height: 1.3;
}
.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center left;
}
.hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(233, 237, 241, 1) 0%,
        rgba(233, 237, 241, 0.2) 22%,
        rgba(233, 237, 241, 0) 45%
    );
}
.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}
.hero-arrow:hover {
    background: var(--blue);
    color: #fff;
}
.hero-arrow.prev {
    left: 14px;
}
.hero-arrow.next {
    right: 14px;
}

/* ===== About / Who We Are ===== */
.about-img {
    border-radius: 6px;
    overflow: hidden;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about p {
    color: #55606c;
    font-size: 1.05rem;
}
.ceo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}
.ceo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}
.ceo .name {
    font-weight: 700;
    color: var(--heading);
    margin: 0;
    font-size: 1rem;
}
.ceo .role {
    color: var(--muted);
    font-size: 0.85rem;
}

/* ===== Products ===== */
.products {
    background: var(--light);
}
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 6px 24px rgba(20, 40, 70, 0.05);
    transition: 0.3s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.12);
    border-color: #e3e9f0;
}
.product-thumb {
    width: 100%;
    height: 210px;
    overflow: hidden;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.product-card:hover .product-thumb img {
    transform: scale(1.06);
}
.product-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.product-card p {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0 0 18px;
}
.product-card .read-more {
    margin-top: auto;
    align-self: flex-start;
    color: var(--blue);
    font-weight: 500;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.product-card .read-more:hover {
    gap: 12px;
    color: var(--blue-deep);
}
/* carousel controls */
#prodCarousel .carousel-control-prev,
#prodCarousel .carousel-control-next {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    opacity: 1;
}
#prodCarousel {
    position: relative;
}
#prodCarousel .carousel-control-prev {
    left: -10px;
}
#prodCarousel .carousel-control-next {
    right: -10px;
}
@media (max-width: 767px) {
    #prodCarousel .carousel-control-prev {
        left: 6px;
    }
    #prodCarousel .carousel-control-next {
        right: 6px;
    }
}
#prodCarousel .carousel-control-prev-icon,
#prodCarousel .carousel-control-next-icon {
    filter: none;
    width: 16px;
    height: 16px;
    background-image: none;
}
#prodCarousel .carousel-control-prev-icon::before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--blue);
}
#prodCarousel .carousel-control-next-icon::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--blue);
}
.prod-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}
.prod-indicators button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #c7d2de;
    transition: 0.25s;
    padding: 0;
}
.prod-indicators button.active {
    background: var(--blue);
    width: 26px;
    border-radius: 5px;
}

/* ===== Why Choose Us ===== */
.why-section {
    overflow: hidden;
    margin-bottom: 50px;
}
.why-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 50px 0;
    overflow: hidden;
    margin-left: -40px;
    margin-top: -30px;
}
.why-content {
    padding: 78px 56px 78px 54px;
    max-width: 900px;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 44px;
    row-gap: 0;
    margin-top: 26px;
}
/* each item: vertical line on its left, content pushed right of it */
.why-item {
    position: relative;
    padding: 36px 8px 40px 46px;
}
.why-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}
/* number circle straddling the vertical line */
.why-item .num {
    position: absolute;
    left: -22px;
    top: 36px;
    color: var(--blue);
    font-weight: 700;
    font-size: 0.82rem;
    background: #fff;
    border: 1px solid #e3e8ee;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(20, 40, 70, 0.06);
    z-index: 2;
}
.why-head {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 22px;
}
.why-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    padding-top: 6px;
}
.why-head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--line);
}
.why-item p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

/* ===== Stats ===== */
.stats {
    background: linear-gradient(120deg, #0b63d6, #1a8cff);
    color: #fff;
}
.stat .num {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}
.stat .lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 6px;
}

/* ===== Blog ===== */
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
article.vo-blog-box {
  
}
.vo-blog-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.vo-blog-box-descp {
    padding: 2rem;
}

.blog-box-vd{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}
.blog-card:hover {
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.1);
    transform: translateY(-5px);
}
.blog-thumb {
    height: 200px;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.blog-card:hover .blog-thumb img {
    transform: scale(1.07);
}
.blog-body {
    padding: 22px;
}
.blog-meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.blog-meta i {
    color: var(--blue);
    margin-right: 5px;
}
.blog-body h3 {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(120deg, #0b2a4a, #123a63);
    color: #fff;
}
.cta h2 {
    color: #fff;
    font-size: 2rem;
}
.cta p {
    color: #c5d3e2;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--footer-blue);
    color: #eaf4ff;
    padding: 64px 0 0;
}
.footer .brand-white {
    background: #fff;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
}
.footer .brand-white img {
    height: 90px;
}
.footer p {
    color: #dcecfb;
    font-size: 0.88rem;
}
.footer h5 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer .f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .f-links li {
    margin-bottom: 11px;
}
.footer .f-links a {
    color: #e2f0ff;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}
.footer .f-links a i {
    font-size: 0.7rem;
}
.footer .f-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    color: #e2f0ff;
}
.footer .contact-item i {
    margin-top: 4px;
}
.footer .social-row a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: 0.25s;
}
.footer .social-row a:hover {
    background: #fff;
    color: var(--footer-blue);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding: 18px 0;
    font-size: 0.82rem;
    color: #dcecfb;
}
.footer-bottom a {
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero-img {
        width: 100%;
        opacity: 0.5;
    }
    .hero-overlay {
        background: linear-gradient(
            100deg,
            rgba(233, 237, 241, 0.97) 0%,
            rgba(233, 237, 241, 0.85) 100%
        );
    }
    .navbar .nav-link.active::after {
        display: none;
    }
    .why-img {
        min-height: 320px;
    }
    .why-content {
        padding: 56px 24px;
    }
}
@media (max-width: 767px) {
    .section {
        padding: 56px 0;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero-slide {
        min-height: 480px;
    }
    .hero-wave {
        display: none;
    }
    .sec-title {
        font-size: 1.7rem;
    }
    .topbar .info span {
        margin-right: 12px;
        font-size: 0.72rem;
    }
    .hero-features {
        gap: 18px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-grid .why-item {
        border-right: none !important;
        border-bottom: 1px solid var(--line) !important;
        padding: 28px 6px;
    }
    .why-grid .why-item:last-child {
        border-bottom: none !important;
    }
    .why-content {
        padding: 48px 20px;
    }
}
@media (max-width: 575px) {
    .hero-feature {
        width: 70px;
    }
    .stat {
        margin-bottom: 26px;
    }
}

/* ===== Inner page banner ===== */
.page-banner {
    position: relative;
    background: linear-gradient(120deg, #0b2a4a, #123a63);
    color: #fff;
    padding: 70px 0 64px;
    overflow: hidden;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.5' opacity='0.06'/></svg>");
}
.page-banner h1 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 900;
    margin: 0 0 10px;
    position: relative;
}
.breadcrumbs {
    position: relative;
    font-size: 0.9rem;
    color: #c5d3e2;
}
.breadcrumbs a {
    color: #8fc0ff;
}
.breadcrumbs a:hover {
    color: #fff;
}
.breadcrumbs .sep {
    margin: 0 8px;
    opacity: 0.6;
}

/* ===== About page ===== */
.about-lead .about-visual {
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    border-radius: 12px;
    padding: 36px;
    color: #fff;
    height: 100%;
}
.about-lead .about-visual .stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.about-lead .about-visual .stat-row:first-of-type {
    border-top: none;
}
.about-lead .about-visual .stat-row .n {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    min-width: 70px;
}
.about-lead .about-visual .stat-row .t {
    font-size: 0.9rem;
    color: #e2eefb;
}
.value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px 26px;
    height: 100%;
    transition: 0.3s;
}
.value-card:hover {
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}
.value-card .ic {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.value-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}
.mv-card {
    background: var(--light);
    border-radius: 12px;
    padding: 34px 30px;
    height: 100%;
}
.mv-card .ic {
    font-size: 1.8rem;
    color: var(--blue);
    margin-bottom: 16px;
}
.mv-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.mv-card p {
    color: var(--muted);
    margin: 0;
}
.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}
.team-card:hover {
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.1);
    transform: translateY(-5px);
}
.team-card .ph {
    height: 230px;
    background-size: cover;
    background-position: center;
}
.team-card .info {
    padding: 20px;
}
.team-card h5 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}
.team-card .role {
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== About v2 ===== */
.ab-intro-img {
    position: relative;
}
.ab-intro-img .main-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(11, 42, 74, 0.18);
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
}
.ab-intro-img .exp-badge {
    position: absolute;
    right: -14px;
    bottom: -24px;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 18px 40px rgba(13, 110, 214, 0.35);
    text-align: center;
}
.ab-intro-img .exp-badge .n {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}
.ab-intro-img .exp-badge .t {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
    color: #e3eefb;
}
.ab-intro-img .accent-shape {
    position: absolute;
    left: -22px;
    top: -22px;
    width: 120px;
    height: 120px;
    border: 5px solid rgba(26, 140, 255, 0.18);
    border-radius: 16px;
    z-index: -1;
}
.ab-lead-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
}
.ab-lead-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.94rem;
    color: #4b5560;
}
.ab-lead-list li i {
    color: var(--blue);
    margin-top: 4px;
}
.sign-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.sign-row .sign-name {
    font-family: "Roboto";
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--heading);
}
.sign-row .sign-role {
    font-size: 0.82rem;
    color: var(--muted);
}

/* stats band */
.stats-band {
    background: linear-gradient(120deg, #0b2a4a, #123a63);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/></svg>");
}
.stat-b {
    text-align: center;
    position: relative;
    padding: 12px 6px;
}
.stat-b .ic {
    font-size: 1.5rem;
    color: #4a90d9;
    margin-bottom: 10px;
}
.stat-b .n {
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1;
}
.stat-b .l {
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #c5d3e2;
    margin-top: 6px;
}

/* mission/vision/approach */
.mva-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 36px 30px;
    height: 100%;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.mva-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0b63d6, #1a8cff);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}
.mva-card:hover {
    box-shadow: 0 20px 46px rgba(20, 40, 70, 0.12);
    transform: translateY(-6px);
}
.mva-card:hover::after {
    transform: scaleX(1);
}
.mva-card .ic {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}
.mva-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.mva-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.94rem;
}

/* why-conmet split */
.wc-img {
    border-radius: 16px;
    overflow: hidden;
    min-height: 440px;
    height: 100%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px rgba(11, 42, 74, 0.16);
}
.wc-check {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
}
.wc-check li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.wc-check li .ci {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 0.9rem;
}
.wc-check li h5 {
    font-size: 1.02rem;
    margin: 0 0 4px;
}
.wc-check li p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

/* capabilities strip */
.cap-item {
    text-align: center;
    padding: 26px 16px;
    border-radius: 12px;
    transition: 0.3s;
}
.cap-item:hover {
    background: #fff;
    box-shadow: 0 14px 36px rgba(20, 40, 70, 0.08);
}
.cap-item .ic {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}
.cap-item h5 {
    font-size: 1rem;
    margin: 0;
}

/* ===== Contact page ===== */
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    transition: 0.3s;
    text-align: center;
}
.contact-card:hover {
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.1);
    transform: translateY(-5px);
    border-color: transparent;
}
.contact-card .ic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 18px;
}
.contact-card h5 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.contact-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}
.contact-card a {
    color: var(--muted);
}
.contact-card a:hover {
    color: var(--blue);
}
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 38px;
}
.contact-form label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--heading);
}
.contact-form .form-control {
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 0.92rem;
}
.contact-form .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.12);
}
.contact-side {
    background: linear-gradient(135deg, #0b2a4a, #123a63);
    color: #fff;
    border-radius: 14px;
    padding: 38px;
    height: 100%;
}
.contact-side h3 {
    color: #fff;
}
.contact-side .ci {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    font-size: 0.92rem;
    color: #dbe6f2;
}
.contact-side .ci i {
    color: #8fc0ff;
    margin-top: 4px;
}
.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    line-height: 0;
}
.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* ===== Blog listing / details ===== */
.post-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
}
.post-card:hover {
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.1);
    transform: translateY(-5px);
}
.post-thumb {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.post-card:hover .post-thumb img {
    transform: scale(1.06);
}
.post-thumb .cat {
    position: absolute;
    left: 14px;
    top: 14px;
    background: var(--blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}
.post-body {
    padding: 22px;
}
.post-meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.post-meta i {
    color: var(--blue);
    margin-right: 5px;
}
.post-body h3 {
    font-size: 1.1rem;
    line-height: 1.45;
    margin-bottom: 14px;
}
.post-body h3 a {
    color: var(--heading);
}
.post-body h3 a:hover {
    color: var(--blue);
}
.sidebar-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 26px;
}
.sidebar-box h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}
.sidebar-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--blue);
}
.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.recent-post img {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex: none;
}
.recent-post .rp-t {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}
.recent-post .rp-t a {
    color: var(--heading);
}
.recent-post .rp-t a:hover {
    color: var(--blue);
}
.recent-post .rp-d {
    font-size: 0.74rem;
    color: var(--muted);
}
.cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.cat-list li {
    border-bottom: 1px solid var(--line);
}
.cat-list li:last-child {
    border-bottom: none;
}
.cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--ink);
    font-size: 0.9rem;
}
.cat-list a:hover {
    color: var(--blue);
}
.tag-cloud a {
    display: inline-block;
    background: var(--light);
    color: var(--ink);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    margin: 0 6px 8px 0;
    transition: 0.2s;
}
.tag-cloud a:hover {
    background: var(--blue);
    color: #fff;
}
.article-body h2 {
    font-size: 1.6rem;
    margin: 34px 0 14px;
}
.article-body h3 {
    font-size: 1.25rem;
    margin: 26px 0 12px;
}
.article-body p {
    color: #4b5560;
    margin-bottom: 18px;
}
.article-body img {
    margin: 0px !important;
    padding: 0px !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.article-body blockquote {
    border-left: 4px solid var(--blue);
    background: var(--light);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    color: var(--heading);
    font-style: italic;
    margin: 24px 0;
}
.article-body ul {
    color: #4b5560;
    margin-bottom: 18px;
}
.article-body ul li {
    margin-bottom: 8px;
}
.share-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light);
    color: var(--heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: 0.2s;
}
.share-row a:hover {
    background: var(--blue);
    color: #fff;
}

@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    .map-wrap iframe {
        height: 320px;
    }
    .ab-intro-img {
        margin-bottom: 44px;
    }
    .ab-intro-img .exp-badge {
        right: 14px;
        padding: 16px 20px;
    }
    .ab-intro-img .exp-badge .n {
        font-size: 2rem;
    }
    .stat-b .n {
        font-size: 2.1rem;
    }
}

/* ===== Inner page banner ===== */

/* ===== Products listing ===== */
.prodx-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}
.prodx-card:hover {
    box-shadow: 0 18px 44px rgba(20, 40, 70, 0.12);
    transform: translateY(-6px);
    border-color: transparent;
}
.prodx-thumb {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}
.prodx-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s;
}
.prodx-card:hover .prodx-thumb img {
    transform: scale(1.07);
}
.prodx-thumb .tag {
    position: absolute;
    left: 14px;
    top: 14px;
    background: var(--blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 13px;
    border-radius: 20px;
}
.prodx-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.prodx-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.prodx-body p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0 0 18px;
}
.prodx-body .actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    align-items: center;
}
.prodx-body .view-link {
    color: var(--blue);
    font-weight: 500;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: 0.2s;
}
.prodx-body .view-link:hover {
    gap: 11px;
}
.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 42px;
}
.cat-pills button {
    border: 1px solid #dbe2ea;
    background: #fff;
    color: var(--heading);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}
.cat-pills button.active,
.cat-pills button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ===== Product details ===== */
.gallery-main {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1/1;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.gallery-thumbs button {
    border: 2px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
    aspect-ratio: 1/1;
    transition: 0.2s;
}
.gallery-thumbs button.active {
    border-color: var(--blue);
}
.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pd-info .badge-soft {
    display: inline-block;
    background: #e8f2ff;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.pd-info h1 {
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 14px;
}
.pd-info .lead-p {
    color: #4b5560;
    font-size: 1rem;
    margin-bottom: 22px;
}
.pd-quick {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}
.pd-quick li {
    display: flex;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}
.pd-quick li:last-child {
    border-bottom: none;
}
.pd-quick li i {
    color: var(--blue);
    margin-top: 4px;
}
.pd-quick li b {
    min-width: 130px;
    color: var(--heading);
}
.pd-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}
.spec-table th,
.spec-table td {
    padding: 13px 18px;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--line);
}
.spec-table th {
    background: var(--light);
    width: 38%;
    color: var(--heading);
    font-weight: 600;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
    border-bottom: none;
}
.pd-section h2 {
    font-size: 1.5rem;
    margin: 0 0 14px;
}
.pd-section h3 {
    font-size: 1.15rem;
    margin: 22px 0 10px;
}
.pd-section p {
    color: #4b5560;
    margin-bottom: 16px;
}
.app-grid .app-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: 0.3s;
}
.app-grid .app-item:hover {
    box-shadow: 0 14px 34px rgba(20, 40, 70, 0.1);
    transform: translateY(-4px);
}
.app-grid .app-item .ic {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.app-grid .app-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.app-grid .app-item p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}
.pd-side {
    position: sticky;
    top: 96px;
}
.pd-side .box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 22px;
}
.pd-side .box h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}
.pd-side .box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--blue);
}
.pd-side .prodlist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pd-side .prodlist li {
    border-bottom: 1px solid var(--line);
}
.pd-side .prodlist li:last-child {
    border-bottom: none;
}
.pd-side .prodlist a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    color: var(--ink);
    font-size: 0.9rem;
    transition: 0.2s;
}
.pd-side .prodlist a:hover {
    color: var(--blue);
    padding-left: 4px;
}
.pd-side .helpbox {
    background: linear-gradient(135deg, #0b2a4a, #123a63);
    color: #fff;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}
.pd-side .helpbox i {
    font-size: 1.8rem;
    color: #4a90d9;
    margin-bottom: 12px;
}
.pd-side .helpbox h4 {
    color: #fff;
    margin-bottom: 8px;
}
.pd-side .helpbox p {
    color: #c5d3e2;
    font-size: 0.88rem;
    margin-bottom: 18px;
}
.pd-side .helpbox a {
    display: inline-flex;
}

@media (max-width: 991px) {
    .pd-side {
        position: static;
    }
}
@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    .pd-info h1 {
        font-size: 1.7rem;
    }
    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Inner page banner ===== */

/* ===== Products listing ===== */

/* ===== Product details (B2B) ===== */
.gallery-main {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 4/3;
}
.gallery-main .pd-tagpill {
    position: absolute;
    left: 16px;
    top: 16px;
    background: rgba(11, 42, 74, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 4px;
    text-transform: uppercase;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}
.gallery-thumbs button {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: none;
    aspect-ratio: 1/1;
    transition: 0.2s;
}
.gallery-thumbs button:hover {
    border-color: #9cc4f0;
}
.gallery-thumbs button.active {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue);
}

.pd-info .eyebrow {
    margin-bottom: 12px;
}
.pd-info .lead-p {
    color: #4b5560;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
}
.pd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.pd-badges .pb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 15px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--heading);
}
.pd-badges .pb i {
    color: var(--blue);
}

/* key attributes data card */
.attr-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 26px;
}
.attr-card .ac-head {
    background: var(--light);
    padding: 14px 20px;
    font-weight: 700;
    color: var(--heading);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 10px;
}
.attr-card .ac-head i {
    color: var(--blue);
}
.attr-row {
    display: flex;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}
.attr-row:last-child {
    border-bottom: none;
}
.attr-row .k {
    width: 44%;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 9px;
}
.attr-row .k i {
    color: var(--blue);
    width: 15px;
    text-align: center;
    font-size: 0.85rem;
}
.attr-row .v {
    width: 56%;
    color: var(--heading);
    font-weight: 500;
}
.pd-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.pd-cta-row .ln {
    font-size: 0.86rem;
    color: var(--muted);
}
.pd-cta-row .ln a {
    color: var(--blue);
    font-weight: 600;
}

/* section headings for content */
.pd-section {
    margin-bottom: 14px;
}
.pd-h {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
}
.pd-h .bar {
    width: 5px;
    height: 26px;
    background: var(--blue);
    border-radius: 3px;
}
.pd-h h2 {
    font-size: 1.5rem;
    margin: 0;
}
.pd-section p {
    color: #4b5560;
    margin-bottom: 16px;
    line-height: 1.8;
}
.pd-section h3 {
    font-size: 1.15rem;
    margin: 24px 0 10px;
}
.callout {
    border-left: 4px solid var(--blue);
    background: var(--light);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    color: var(--heading);
    margin: 22px 0;
    font-size: 0.96rem;
}

/* tables */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin: 6px 0 8px;
}
.spec-table caption {
    caption-side: top;
    text-align: left;
    font-weight: 700;
    color: var(--heading);
    padding: 0 0 10px;
    font-size: 1rem;
}
.spec-table th,
.spec-table td {
    padding: 13px 18px;
    text-align: left;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--line);
}
.spec-table thead th {
    background: #0b2a4a;
    color: #fff;
    font-weight: 600;
    border-bottom: none;
}
.spec-table tbody th {
    background: var(--light);
    width: 40%;
    color: var(--heading);
    font-weight: 600;
}
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td {
    border-bottom: none;
}
.spec-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 6px;
}

/* industries chips */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 6px;
}
.ind-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: 0.25s;
}
.ind-item:hover {
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(20, 40, 70, 0.1);
}
.ind-item .ic {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 12px;
}
.ind-item span {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--heading);
}

/* application list */
.app-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}
.app-list li {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.app-list li:last-child {
    border-bottom: none;
}
.app-list li .ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 1.05rem;
}
.app-list li h4 {
    font-size: 1.02rem;
    margin: 0 0 4px;
}
.app-list li p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* sidebar */
.pd-side .box h4 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}
.pd-side .prodlist a.on {
    color: var(--blue);
    font-weight: 600;
}
.datasheet {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px dashed #b9cbe0;
    border-radius: 10px;
    padding: 16px 18px;
    transition: 0.2s;
    cursor: pointer;
}
.datasheet:hover {
    background: var(--light);
    border-color: var(--blue);
}
.datasheet .ic {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f2ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex: none;
}
.datasheet .dt b {
    display: block;
    font-size: 0.92rem;
    color: var(--heading);
}
.datasheet .dt span {
    font-size: 0.78rem;
    color: var(--muted);
}
.pd-side .enquiry {
    background: linear-gradient(135deg, #0b2a4a, #123a63);
    color: #fff;
    border-radius: 12px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}
.pd-side .enquiry::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='50' height='50'><path d='M0 25h50M25 0v50' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/></svg>");
}
.pd-side .enquiry > * {
    position: relative;
}
.pd-side .enquiry i.big {
    font-size: 1.7rem;
    color: #4a90d9;
    margin-bottom: 12px;
}
.pd-side .enquiry h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.15rem;
}
.pd-side .enquiry p {
    color: #c5d3e2;
    font-size: 0.88rem;
    margin-bottom: 18px;
}
.pd-side .enquiry .ecall {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    margin-top: 14px;
    font-size: 0.95rem;
}
.pd-side .enquiry .ecall i {
    color: #4a90d9;
}

/* related */
.rel-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}
.rel-card:hover {
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.12);
    transform: translateY(-5px);
}
.rel-card .rt {
    height: 170px;
    overflow: hidden;
}
.rel-card .rt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.rel-card:hover .rt img {
    transform: scale(1.07);
}
.rel-card .rb {
    padding: 18px 20px;
}
.rel-card .rb h5 {
    font-size: 1rem;
    margin: 0 0 6px;
}
.rel-card .rb a.rl {
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rel-card .rb a.rl:hover {
    gap: 10px;
}

@media (max-width: 991px) {
    .pd-side {
        position: static;
    }
}
@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    .pd-info h1 {
        font-size: 1.7rem;
    }
}


/* Product Details */


/* ===== Product details ===== */
.gallery-main{border:1px solid var(--line);border-radius:14px;overflow:hidden;background:#fff;aspect-ratio:1/1}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:14px}
.gallery-thumbs button{border:2px solid var(--line);border-radius:10px;overflow:hidden;padding:0;cursor:pointer;background:none;aspect-ratio:1/1;transition:.2s}
.gallery-thumbs button.active{border-color:var(--blue)}
.gallery-thumbs img{width:100%;height:100%;object-fit:cover;display:block}
.pd-info .badge-soft{display:inline-block;background:#e8f2ff;color:var(--blue);font-size:.78rem;font-weight:500;padding:5px 14px;border-radius:20px;margin-bottom:14px}
.pd-info h1{font-size:2.1rem;font-weight:900;margin-bottom:14px}
.pd-info .lead-p{color:#4b5560;font-size:1rem;margin-bottom:22px}
.pd-quick{list-style:none;padding:0;margin:0 0 26px}
.pd-quick li{display:flex;gap:12px;padding:11px 0;border-bottom:1px solid var(--line);font-size:.92rem}
.pd-quick li:last-child{border-bottom:none}
.pd-quick li i{color:var(--blue);margin-top:4px}
.pd-quick li b{min-width:130px;color:var(--heading)}
.pd-cta-row{display:flex;gap:12px;flex-wrap:wrap}
.spec-table{width:100%;border-collapse:collapse;border:1px solid var(--line);border-radius:10px;overflow:hidden}
.spec-table th,.spec-table td{padding:13px 18px;text-align:left;font-size:.92rem;border-bottom:1px solid var(--line)}
.spec-table th{background:var(--light);width:38%;color:var(--heading);font-weight:600}
.spec-table tr:last-child th,.spec-table tr:last-child td{border-bottom:none}
.pd-section h2{font-size:1.5rem;margin:0 0 14px}
.pd-section h3{font-size:1.15rem;margin:22px 0 10px}
.pd-section p{color:#4b5560;margin-bottom:16px}
.app-grid .app-item{background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px;height:100%;transition:.3s}
.app-grid .app-item:hover{box-shadow:0 14px 34px rgba(20,40,70,.1);transform:translateY(-4px)}
.app-grid .app-item .ic{width:52px;height:52px;border-radius:12px;background:linear-gradient(135deg,#0b63d6,#1a8cff);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:16px}
.app-grid .app-item h4{font-size:1.05rem;margin-bottom:8px}
.app-grid .app-item p{font-size:.88rem;color:var(--muted);margin:0}
.pd-side{position:sticky;top:96px}
.pd-side .box{background:#fff;border:1px solid var(--line);border-radius:12px;padding:24px;margin-bottom:22px}
.pd-side .box h4{font-size:1.1rem;margin-bottom:16px;position:relative;padding-bottom:12px}
.pd-side .box h4::after{content:"";position:absolute;left:0;bottom:0;width:40px;height:2px;background:var(--blue)}
.pd-side .prodlist{list-style:none;margin:0;padding:0}
.pd-side .prodlist li{border-bottom:1px solid var(--line)}
.pd-side .prodlist li:last-child{border-bottom:none}
.pd-side .prodlist a{display:flex;justify-content:space-between;align-items:center;padding:11px 0;color:var(--ink);font-size:.9rem;transition:.2s}
.pd-side .prodlist a:hover{color:var(--blue);padding-left:4px}
.pd-side .helpbox{background:linear-gradient(135deg,#0b2a4a,#123a63);color:#fff;border-radius:12px;padding:28px;text-align:center}
.pd-side .helpbox i{font-size:1.8rem;color:#4a90d9;margin-bottom:12px}
.pd-side .helpbox h4{color:#fff;margin-bottom:8px}
.pd-side .helpbox p{color:#c5d3e2;font-size:.88rem;margin-bottom:18px}
.pd-side .helpbox a{display:inline-flex}

@media(max-width:991px){ .pd-side{position:static} }
@media(max-width:767px){
  .page-banner h1{font-size:2rem}
  .pd-info h1{font-size:1.7rem}
  .gallery-thumbs{grid-template-columns:repeat(4,1fr)}
}

/* ===== Inner page banner ===== */

/* ===== Products listing ===== */

/* ===== Product details (B2B) ===== */
.gallery-main{position:relative;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#fff;aspect-ratio:4/3}
.gallery-main .pd-tagpill{position:absolute;left:16px;top:16px;background:rgba(11,42,74,.9);color:#fff;font-size:.72rem;font-weight:500;letter-spacing:.5px;padding:6px 14px;border-radius:4px;text-transform:uppercase}
.gallery-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:12px}
.gallery-thumbs button{border:1px solid var(--line);border-radius:8px;overflow:hidden;padding:0;cursor:pointer;background:none;aspect-ratio:1/1;transition:.2s}
.gallery-thumbs button:hover{border-color:#9cc4f0}
.gallery-thumbs button.active{border-color:var(--blue);box-shadow:0 0 0 1px var(--blue)}

.pd-info .eyebrow{margin-bottom:12px}
.pd-info .lead-p{color:#4b5560;font-size:1rem;line-height:1.75;margin-bottom:24px}
.pd-badges{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:26px}
.pd-badges .pb{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--line);border-radius:6px;padding:8px 15px;font-size:.82rem;font-weight:500;color:var(--heading)}
.pd-badges .pb i{color:var(--blue)}

/* key attributes data card */
.attr-card{border:1px solid var(--line);border-radius:12px;overflow:hidden;margin-bottom:26px}
.attr-card .ac-head{background:var(--light);padding:14px 20px;font-weight:700;color:var(--heading);font-size:.95rem;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:10px}
.attr-card .ac-head i{color:var(--blue)}
.attr-row{display:flex;padding:13px 20px;border-bottom:1px solid var(--line);font-size:.9rem}
.attr-row:last-child{border-bottom:none}
.attr-row .k{width:44%;color:var(--muted);display:flex;align-items:center;gap:9px}
.attr-row .k i{color:var(--blue);width:15px;text-align:center;font-size:.85rem}
.attr-row .v{width:56%;color:var(--heading);font-weight:500}
.pd-cta-row{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.pd-cta-row .ln{font-size:.86rem;color:var(--muted)}
.pd-cta-row .ln a{color:var(--blue);font-weight:600}

/* section headings for content */
.pd-section{margin-bottom:14px}
.pd-h{display:flex;align-items:center;gap:12px;margin:0 0 18px}
.pd-h .bar{width:5px;height:26px;background:var(--blue);border-radius:3px}
.pd-h h2{font-size:1.5rem;margin:0}
.pd-section p{color:#4b5560;margin-bottom:16px;line-height:1.8}
.pd-section h3{font-size:1.15rem;margin:24px 0 10px}
.callout{border-left:4px solid var(--blue);background:var(--light);padding:20px 24px;border-radius:0 8px 8px 0;color:var(--heading);margin:22px 0;font-size:.96rem}

/* tables */
.spec-table{width:100%;border-collapse:collapse;border:1px solid var(--line);border-radius:10px;overflow:hidden;margin:6px 0 8px}
.spec-table caption{caption-side:top;text-align:left;font-weight:700;color:var(--heading);padding:0 0 10px;font-size:1rem}
.spec-table th,.spec-table td{padding:13px 18px;text-align:left;font-size:.9rem;border-bottom:1px solid var(--line)}
.spec-table thead th{background:#0b2a4a;color:#fff;font-weight:600;border-bottom:none}
.spec-table tbody th{background:var(--light);width:40%;color:var(--heading);font-weight:600}
.spec-table tbody tr:last-child th,.spec-table tbody tr:last-child td{border-bottom:none}
.spec-note{font-size:.82rem;color:var(--muted);margin-top:6px}

/* industries chips */
.ind-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:14px;margin-top:6px}
.ind-item{border:1px solid var(--line);border-radius:10px;padding:20px 16px;text-align:center;transition:.25s}
.ind-item:hover{border-color:transparent;box-shadow:0 12px 30px rgba(20,40,70,.1)}
.ind-item .ic{width:52px;height:52px;border-radius:12px;background:var(--light);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin:0 auto 12px}
.ind-item span{font-size:.86rem;font-weight:600;color:var(--heading)}

/* application list */
.app-list{list-style:none;padding:0;margin:6px 0 0}
.app-list li{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}
.app-list li:last-child{border-bottom:none}
.app-list li .ic{width:44px;height:44px;border-radius:10px;background:linear-gradient(135deg,#0b63d6,#1a8cff);color:#fff;display:flex;align-items:center;justify-content:center;flex:none;font-size:1.05rem}
.app-list li h4{font-size:1.02rem;margin:0 0 4px}
.app-list li p{margin:0;color:var(--muted);font-size:.9rem}

/* sidebar */
.pd-side .box h4{font-size:1.05rem;margin-bottom:16px;position:relative;padding-bottom:12px}
.pd-side .prodlist a.on{color:var(--blue);font-weight:600}
.datasheet{display:flex;align-items:center;gap:14px;border:1px dashed #b9cbe0;border-radius:10px;padding:16px 18px;transition:.2s;cursor:pointer}
.datasheet:hover{background:var(--light);border-color:var(--blue)}
.datasheet .ic{width:44px;height:44px;border-radius:10px;background:#e8f2ff;color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex:none}
.datasheet .dt b{display:block;font-size:.92rem;color:var(--heading)}
.datasheet .dt span{font-size:.78rem;color:var(--muted)}
.pd-side .enquiry{background:linear-gradient(135deg,#0b2a4a,#123a63);color:#fff;border-radius:12px;padding:28px 26px;position:relative;overflow:hidden}
.pd-side .enquiry::before{content:"";position:absolute;inset:0;background-image:url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'50\' height=\'50\'><path d=\'M0 25h50M25 0v50\' stroke=\'%23ffffff\' stroke-width=\'0.5\' opacity=\'0.05\'/></svg>')}
.pd-side .enquiry>*{position:relative}
.pd-side .enquiry i.big{font-size:1.7rem;color:#4a90d9;margin-bottom:12px}
.pd-side .enquiry h4{color:#fff;margin-bottom:8px;font-size:1.15rem}
.pd-side .enquiry p{color:#c5d3e2;font-size:.88rem;margin-bottom:18px}
.pd-side .enquiry .ecall{display:flex;align-items:center;gap:10px;color:#fff;font-weight:600;margin-top:14px;font-size:.95rem}
.pd-side .enquiry .ecall i{color:#4a90d9}

/* related */
.rel-card{background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden;transition:.3s;height:100%}
.rel-card:hover{box-shadow:0 16px 40px rgba(20,40,70,.12);transform:translateY(-5px)}
.rel-card .rt{height:170px;overflow:hidden}
.rel-card .rt img{width:100%;height:100%;object-fit:cover;transition:.4s}
.rel-card:hover .rt img{transform:scale(1.07)}
.rel-card .rb{padding:18px 20px}
.rel-card .rb h5{font-size:1rem;margin:0 0 6px}
.rel-card .rb a.rl{color:var(--blue);font-size:.84rem;font-weight:500;display:inline-flex;align-items:center;gap:6px}
.rel-card .rb a.rl:hover{gap:10px}

@media(max-width:991px){ .pd-side{position:static} }
@media(max-width:767px){
  .page-banner h1{font-size:2rem}
  .pd-info h1{font-size:1.7rem}
}

/* ===== Product details — professional upgrade ===== */
/* in-page sticky sub-nav */
.pd-jump{position:sticky;top:74px;z-index:20;background:#fff;border-bottom:1px solid var(--line);margin-bottom:36px}
.pd-jump ul{display:flex;gap:4px;list-style:none;margin:0;padding:0;overflow-x:auto;-webkit-overflow-scrolling:touch}
.pd-jump a{display:block;white-space:nowrap;padding:16px 20px;font-size:.9rem;font-weight:600;color:var(--muted);border-bottom:3px solid transparent;transition:.2s}
.pd-jump a:hover{color:var(--blue)}
.pd-jump a.active{color:var(--blue);border-bottom-color:var(--blue)}

/* overview with side image */
.pd-overview-img{border-radius:14px;overflow:hidden;height:100%;min-height:280px;background-size:cover;background-position:center;box-shadow:0 16px 40px rgba(20,40,70,.1)}

/* applications — image cards */
.appx-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:22px}
.appx-card{background:#fff;border:1px solid var(--line);border-radius:14px;overflow:hidden;transition:.3s}
.appx-card:hover{box-shadow:0 18px 44px rgba(20,40,70,.13);transform:translateY(-5px);border-color:transparent}
.appx-card .ah{height:56px;background:linear-gradient(135deg,#0b2a4a,#123a63);position:relative}
.appx-card .ah .ic{position:absolute;left:22px;bottom:-24px;width:52px;height:52px;border-radius:12px;background:linear-gradient(135deg,#0b63d6,#1a8cff);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1.2rem;box-shadow:0 8px 20px rgba(13,110,214,.35)}
.appx-card .ab{padding:34px 22px 24px}
.appx-card .ab h4{font-size:1.08rem;margin:0 0 8px}
.appx-card .ab p{font-size:.88rem;color:var(--muted);margin:0}

/* advantages band */
.adv-band{background:linear-gradient(120deg,#0b2a4a,#123a63);border-radius:16px;padding:44px 40px;color:#fff;position:relative;overflow:hidden}
.adv-band::before{content:"";position:absolute;inset:0;background-image:url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'54\' height=\'54\'><path d=\'M0 27h54M27 0v54\' stroke=\'%23ffffff\' stroke-width=\'0.5\' opacity=\'0.05\'/></svg>')}
.adv-band>*{position:relative}
.adv-band h2{color:#fff}
.adv-item{display:flex;gap:16px;align-items:flex-start;padding:16px 0}
.adv-item .ic{width:48px;height:48px;border-radius:12px;background:rgba(255,255,255,.1);color:#4a90d9;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex:none}
.adv-item h5{color:#fff;font-size:1.05rem;margin:0 0 4px}
.adv-item p{color:#c5d3e2;font-size:.88rem;margin:0}

/* why-choose mini strip */
.wc-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
.wc-box{text-align:center;padding:26px 18px;border:1px solid var(--line);border-radius:14px;transition:.3s}
.wc-box:hover{box-shadow:0 14px 34px rgba(20,40,70,.1);border-color:transparent;transform:translateY(-4px)}
.wc-box .ic{width:60px;height:60px;border-radius:50%;background:var(--light);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin:0 auto 14px}
.wc-box h5{font-size:1rem;margin:0 0 6px}
.wc-box p{font-size:.85rem;color:var(--muted);margin:0}

/* faq accordion (reuse simple) */
.pd-faq .fq{border:1px solid var(--line);border-radius:12px;margin-bottom:12px;overflow:hidden}
.pd-faq .fq-q{padding:18px 22px;font-weight:600;color:var(--heading);cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-size:.96rem}
.pd-faq .fq-q i{color:var(--blue);transition:.3s}
.pd-faq .fq.open .fq-q i{transform:rotate(180deg)}
.pd-faq .fq-a{max-height:0;overflow:hidden;transition:max-height .3s ease;color:var(--muted);font-size:.9rem}
.pd-faq .fq-a .in{padding:0 22px 18px}
.pd-faq .fq.open .fq-a{max-height:240px}

@media(max-width:767px){
  .pd-jump{top:64px}
  .adv-band{padding:32px 22px}
}


/* ===== Inner page banner ===== */

/* ===== About page ===== */

/* ===== Contact page ===== */

/* ===== Blog listing / details ===== */

@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    .map-wrap iframe {
        height: 320px;
    }
}

/* ===== Inner page banner ===== */

/* ===== About page ===== */

/* ===== Contact page ===== */

/* ===== Blog listing / details ===== */

@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    .map-wrap iframe {
        height: 320px;
    }
}

/* ===== Inner page banner ===== */

/* ===== About page ===== */

/* ===== Contact page ===== */
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0b63d6, #1a8cff);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}
.contact-card:hover {
    box-shadow: 0 18px 44px rgba(20, 40, 70, 0.12);
    transform: translateY(-6px);
    border-color: transparent;
}
.contact-card:hover::after {
    transform: scaleX(1);
}
.contact-card .ic {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b63d6, #1a8cff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 18px;
    box-shadow: 0 10px 24px rgba(13, 110, 214, 0.28);
}
.contact-card .lbl {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-card h5 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}
.contact-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}
.contact-card a {
    color: var(--muted);
    transition: 0.2s;
}

.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 42px;
    box-shadow: 0 20px 50px rgba(20, 40, 70, 0.06);
}
.contact-form label {
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--heading);
}
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dbe2ea;
    border-radius: 9px;
    padding: 12px 15px;
    font-size: 0.92rem;
    background-color: #fbfcfd;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 140, 255, 0.12);
    background: #fff;
}
.contact-form .btn-pill {
    padding: 13px 30px;
}
#formMsg {
    background: #eafaf1;
    border: 1px solid #b7e4c7;
    color: #0b7a3b;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.9rem;
}

/* dark info panel that overlaps the map */
.contact-side {
    background: linear-gradient(135deg, #0b2a4a, #123a63);
    color: #fff;
    border-radius: 16px;
    padding: 42px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11, 42, 74, 0.2);
}
.contact-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/></svg>");
}
.contact-side > * {
    position: relative;
}
.contact-side h3 {
    color: #fff;
    font-size: 1.5rem;
}
.contact-side .ci {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    font-size: 1rem;
    color: #dbe6f2;
    align-items: flex-start;
}
.contact-side .ci .cic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    color: #8fc0ff;
    font-size: 1rem;
}
.contact-side .ci .ct b {
    display: block;
    color: #fff;
    font-size: 0.82rem;
    margin-bottom: 2px;
    font-weight: 600;
}
.contact-side .ci a {
    color: #dbe6f2;
}
.contact-side .ci a:hover {
    color: #fff;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    line-height: 0;
    box-shadow: 0 16px 40px rgba(20, 40, 70, 0.08);
}
.map-wrap iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

/* FAQ */
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-q {
    padding: 18px 22px;
    font-weight: 600;
    color: var(--heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98rem;
    transition: 0.2s;
}
.faq-q:hover {
    color: var(--blue);
}
.faq-q i {
    transition: 0.3s;
    color: var(--blue);
}
.faq-item.open .faq-q i {
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--muted);
    font-size: 0.9rem;
}
.faq-a .inner {
    padding: 0 22px 20px;
}
.faq-item.open .faq-a {
    max-height: 220px;
}

/* ===== Blog listing / details ===== */

@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 2rem;
    }
    .map-wrap iframe {
        height: 320px;
    }
}

/* Whatsapp */

.whatsapp {
  content: '';
  width: 70px;
  height: 70px;
  line-height: 50px;
  position: fixed;
  bottom: 25px;
  left: 1%;
  font-size: 17px;
  z-index: 2;
  color: #fff;
  text-align: center;
  cursor: pointer
}
.whatsapp:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25) 0, rgba(0, 0, 0, 0) 80%)
}
.whatsapp img {
  width: 50px
}
.vibrate-2 {
  -webkit-animation: vibrate-2 1.5s ease-in-out 0s infinite alternate;
  animation: vibrate-2 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s
}
@-webkit-keyframes vibrate-2 {
  0% {
    bottom: 25px
  }
  50% {
    bottom: 40px
  }
  100% {
    bottom: 25px
  }
}
@keyframes vibrate-2 {
  0% {
    bottom: 25px
  }
  50% {
    bottom: 40px
  }
  100% {
    bottom: 25px
  }
}

/* success Message css */

.custom-success-alert {
    background: #eaf7ee;
    border: 1px solid #b7e4c7;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    padding: 15px 18px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 0.4s ease-in-out;
}

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.success-icon {
    color: #28a745;
    font-size: 22px;
    margin-top: 2px;
}

.success-text strong {
    display: block;
    font-size: 16px;
    color: #155724;
    margin-bottom: 3px;
}

.success-text p {
    margin: 0;
    font-size: 14px;
    color: #2d6a4f;
}

/* Close button (clean & minimal) */
.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}
