/* Certify Solutions - Main Styles */
:root {
    --primary: #0056b3;
    --primary-dark: #003d80;
    --primary-light: #e8f2fc;
    --accent: #0077cc;
    --top-bar: #0a2d5c;
    --footer-bg: #061a33;
    --text-dark: #1a2b42;
    --text-muted: #5a6b7d;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 50, 120, 0.08);
    --radius: 8px;
    /* Base scale (15px root — thoda bada, pehle 14px tha) */
    --fs-body: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.8125rem;
}

html {
    font-size: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-body);
    color: var(--text-dark);
    line-height: 1.55;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

/* Top Bar */
.top-bar {
    background: var(--top-bar);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: var(--fs-xs);
}

.top-bar-contact li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact a,
.top-bar-social a {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-contact a:hover,
.top-bar-social a:hover {
    color: #fff;
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social .follow-text {
    margin-right: 4px;
    opacity: 0.85;
}

.top-bar-social a {
    font-size: 0.9rem;
}

/* Navbar */
.main-navbar {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
    overflow: visible;
    z-index: 1030;
}

.site-logo {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
}

.site-logo-footer {
    height: 70px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.main-navbar .nav-link,
.main-navbar .dropdown-item {
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--fs-sm);
    padding: 7px 12px !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active,
.main-navbar .dropdown-item.active {
    color: var(--primary);
    font-weight: 600;
}

/* Dropdown: header bottom se chipka, hover par band na ho */
.main-navbar .navbar-collapse,
.main-navbar .navbar-nav {
    overflow: visible;
}

.main-navbar .bmg-nav-dropdown {
    position: relative;
}

.main-navbar .bmg-nav-dropdown > .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
}

.main-navbar .bmg-dropdown-menu {
    --bs-dropdown-spacer: 0;
    margin-top: 0 !important;
    border-top: 1px solid #e8eef5;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 10px 24px rgba(0, 50, 120, 0.12);
    min-width: 200px;
    padding: 0.35rem 0;
}

.main-navbar .bmg-dropdown-menu .dropdown-item {
    padding: 0.45rem 1rem !important;
}

/* Invisible bridge: parent → submenu tak mouse gap par menu na band ho */
.main-navbar .bmg-dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

@media (min-width: 992px) {
    .main-navbar .bmg-nav-dropdown > .bmg-dropdown-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 1050;
    }

    .main-navbar .bmg-nav-dropdown:hover > .bmg-dropdown-menu,
    .main-navbar .bmg-nav-dropdown:focus-within > .bmg-dropdown-menu {
        display: block;
    }

    .main-navbar .bmg-nav-dropdown:hover > .dropdown-toggle,
    .main-navbar .bmg-nav-dropdown:focus-within > .dropdown-toggle {
        color: var(--primary);
    }
}

@media (max-width: 991.98px) {
    .main-navbar .bmg-dropdown-menu {
        position: static !important;
        float: none;
        border: none;
        box-shadow: none;
        margin-left: 0.75rem !important;
        padding-left: 0;
    }

    .main-navbar .bmg-dropdown-menu::before {
        display: none;
    }

    .main-navbar .bmg-dropdown-menu.show {
        display: block;
    }
}

.header-actions {
    margin-top: 12px;
}

@media (min-width: 992px) {
    .header-actions {
        margin-top: 0;
    }
}

.btn-header {
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 6px;
    font-size: var(--fs-xs);
    white-space: nowrap;
}

.btn-header.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-header.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-header.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-header.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e3effa 50%, #f8fbff 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230056b3' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 2vw, 1.05rem);
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 28px;
    font-size: var(--fs-sm);
}

.hero-buttons .btn-lg {
    font-size: var(--fs-sm);
    padding: 0.5rem 1.1rem;
}

.hero-certificate-wrap {
    position: relative;
    padding: 20px;
}

.hero-certificate {
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0, 50, 120, 0.2));
    border-radius: 4px;
}

.certificate-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cert-frame {
    background: linear-gradient(145deg, #fff9e6, #fff);
    border: 8px solid #c9a227;
    border-radius: 4px;
    padding: 32px 40px;
    max-width: 380px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
}

.cert-header {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #8b6914;
    margin-bottom: 16px;
}

.cert-body h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin: 12px 0;
}

.cert-org {
    font-weight: 600;
    color: var(--text-dark);
}

.cert-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.cert-seal {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.8;
}

/* Trusted by Industry Leaders (marquee) */
.trusted-clients-marquee {
    background: var(--white);
    padding: 50px 0 45px;
    border-top: 1px solid #e8eef5;
    border-bottom: 1px solid #e8eef5;
    overflow: hidden;
}

.trusted-clients-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trusted-clients-header h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.trusted-clients-header .highlight-leaders {
    color: var(--accent);
}

.trusted-clients-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.marquee-wrap {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 8px;
}

.marquee-item img {
    max-height: 52px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Standard Names module (certification standards list) */
.standard-names-section {
    padding: 60px 0;
    background: var(--white);
}

.standard-name-card {
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: var(--radius);
    padding: 18px 16px;
    background: var(--primary-light);
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.standard-name-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.standard-name-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.standard-name-card__title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0 0 6px;
    line-height: 1.35;
}

.standard-name-card__type {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Welcome message — text left, image right (below Trusted by Industry Leaders) */
.welcome-section {
    padding: 60px 0;
    background: var(--primary-light);
}

.welcome-section__title {
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.welcome-section__content {
    color: var(--text-dark);
    font-size: var(--fs-sm);
    line-height: 1.75;
}

.welcome-section__content p {
    margin-bottom: 1rem;
}

.welcome-section__content p:last-child {
    margin-bottom: 0;
}

.welcome-section__link {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.welcome-section__image-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 86, 179, 0.1);
    text-align: center;
}

.welcome-section__image {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

@media (max-width: 991.98px) {
    .welcome-section {
        padding: 48px 0;
    }

    .welcome-section__media {
        margin-top: 8px;
    }
}
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.3s, opacity 0.3s;
}

.marquee-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Inner page banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 48px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: clamp(1.5rem, 3.2vw, 1.9rem);
    font-weight: 700;
    margin: 0;
}

.page-banner-sub {
    margin: 12px auto 0;
    max-width: 720px;
    opacity: 0.9;
    font-size: var(--fs-sm);
}

.page-content-section {
    padding: 50px 0 70px;
}

.page-content-section--contact {
    padding-top: 40px;
}

/* Contact Us page */
.contact-page__grid {
    align-items: stretch;
}

.contact-page__form-col {
    min-width: 0;
}

/* Desktop: form + aside equal height; map fills space above details */
@media (min-width: 992px) {
    .contact-page__form-col,
    .contact-page__aside {
        display: flex;
        flex-direction: column;
    }

    .contact-page__form-col .contact-card--form {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

    .contact-aside-stack {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-height: 100%;
        width: 100%;
    }
}

/* Right column: map on top, contact details below */
.contact-page__aside {
    flex-direction: column;
    min-width: 0;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 8px;
}

.contact-card__intro {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin: 0 0 22px;
    line-height: 1.65;
}

.contact-form .form-label {
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--text-dark);
}

.contact-form .form-control {
    border-radius: var(--radius);
    border-color: rgba(0, 86, 179, 0.2);
    font-size: var(--fs-sm);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.12);
}

.contact-muted {
    font-weight: 400;
    color: var(--text-muted);
    font-size: var(--fs-xs);
}

.contact-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.contact-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: var(--fs-sm);
    font-weight: 500;
}

.contact-alert--success {
    background: #e8f7ee;
    color: #0d5c2e;
    border: 1px solid #b8e6c8;
}

.contact-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.contact-info-list {
    display: grid;
    gap: 18px;
    margin: 0;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-item a {
    display: block;
    color: var(--primary);
    font-weight: 500;
    font-size: var(--fs-sm);
}

.contact-info-item a:hover {
    color: var(--primary-dark);
}

.contact-info-item p {
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-wa-cta {
    margin: 20px 0 0;
}

.contact-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.12);
    box-shadow: var(--shadow);
    background: var(--primary-light);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Desktop: map grows to fill aside; details card at bottom */
@media (min-width: 992px) {
    .contact-map-wrap--side {
        flex: 1 1 0;
        width: 100%;
        min-height: 220px;
        height: auto;
    }

    .contact-page__aside .contact-card--info {
        flex: 0 0 auto;
        height: auto;
    }
}

.contact-map-wrap--side {
    width: 100%;
    min-height: 280px;
}

.contact-page__aside .contact-card--info {
    flex-shrink: 0;
}

/* Mobile: map on top, before the form */
.contact-map-wrap--top {
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

@media (max-width: 991.98px) {
    .contact-card {
        padding: 22px 18px;
    }
}

/* Verify Certificate page */
.page-content-section--verify {
    padding-top: 40px;
}

.verify-page__intro {
    max-width: 820px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--text-muted);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

.verify-page__options-label {
    text-align: center;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin: 0 0 14px;
}

.verify-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.verify-tabs__btn {
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    font-size: var(--fs-sm);
    padding: 12px 22px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.verify-tabs__btn:hover {
    background: var(--primary-light);
}

.verify-tabs__btn--active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.25);
}

.verify-tabs__btn--active:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.verify-panel {
    display: none;
    max-width: 560px;
    margin: 0 auto;
}

.verify-panel--active {
    display: block;
}

.verify-card {
    background: var(--white);
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.verify-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 20px;
    text-align: center;
}

.verify-form .form-label {
    font-weight: 500;
    font-size: var(--fs-sm);
}

.verify-result {
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
}

.verify-result--success {
    background: #e8f7ee;
    border-color: #b8e6c8;
    color: #0d5c2e;
}

.verify-result--warning {
    background: #fff8e6;
    border-color: #f5dfa3;
    color: #7a5a00;
}

.verify-result--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.verify-result__message {
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.verify-result__body {
    margin-top: 16px;
    overflow-x: auto;
}

.verify-result-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
    background: var(--white);
}

.verify-result-table th,
.verify-result-table td {
    border: 1px solid rgba(0, 86, 179, 0.15);
    padding: 10px 12px;
    text-align: left;
}

.verify-result-table th {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.verify-result-multi .verify-result-table {
    margin-bottom: 20px;
}

.verify-result-multi .verify-result-table:last-child {
    margin-bottom: 0;
}

.page-cms-content {
    font-size: var(--fs-body);
    line-height: 1.75;
    color: var(--text-dark);
}

.page-cms-content img {
    max-width: 100%;
    height: auto;
}

.page-cms-content h2,
.page-cms-content h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* CMS page + sidebar (Admin → Pages → Show Sidebar) */
.page-content-layout--with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 32px;
    align-items: start;
}

.page-content-layout--with-sidebar .page-cms-content {
    min-width: 0;
}

.dsw-sidebar {
    border: 1px solid rgba(0, 86, 179, 0.12);
    border-radius: var(--radius);
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.dsw-sidebar__block + .dsw-sidebar__block {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 86, 179, 0.1);
}

.dsw-sidebar__eyebrow {
    margin: 0 0 4px;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.dsw-sidebar__title {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.dsw-sidebar__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.dsw-sidebar__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 6px;
    background: var(--primary-light);
    color: var(--text-dark);
    font-size: var(--fs-sm);
    line-height: 1.35;
}

.dsw-sidebar__link::before {
    content: "›";
    color: var(--primary);
    font-weight: 700;
}

.dsw-sidebar__link:hover,
.dsw-sidebar__link:focus-visible {
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--primary);
}

.dsw-sidebar__sub .dsw-sidebar__link,
.dsw-sidebar__link--sub {
    margin-left: 8px;
    font-size: var(--fs-xs);
    background: #fff;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.dsw-sidebar__link--current {
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(0, 86, 179, 0.2);
}

.dsw-sidebar__line {
    margin: 0 0 8px;
    font-size: var(--fs-sm);
}

.dsw-sidebar__line a {
    color: var(--text-dark);
}

.dsw-sidebar__line a:hover {
    color: var(--primary);
}

.dsw-sidebar__block--accent {
    border-radius: var(--radius);
    background: var(--primary-light);
    padding: 12px;
    border-top: none;
}

.dsw-sidebar__cta {
    margin: 12px 0 0;
}

.dsw-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-align: center;
}

.dsw-btn--primary {
    background: var(--primary);
    color: var(--white);
}

.dsw-btn--primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.dsw-sidebar__btn {
    width: 100%;
}

@media (max-width: 991px) {
    .page-content-layout--with-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: clamp(1.35rem, 2.8vw, 1.7rem);
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title .text-accent {
    color: var(--accent);
}

.bg-light {
    background: #f5f9fc !important;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid #e8eef5;
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 86, 179, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border: 1px solid #dce8f5;
    border-radius: var(--radius);
    padding: 32px 20px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card h4 {
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-card p {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin: 0;
}

.btn-view-all {
    padding: 14px 40px;
    font-weight: 600;
    border-radius: 6px;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process-step {
    flex: 1 1 160px;
    max-width: 200px;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.process-icon-wrap {
    position: relative;
    margin-bottom: 16px;
}

.process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.process-num {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.process-connector {
    flex: 0 0 40px;
    height: 2px;
    margin-top: 36px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 6px, transparent 6px, transparent 12px);
    opacity: 0.4;
    align-self: flex-start;
}

.process-step h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.45;
}

/* Industries */
.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid #e8eef5;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color 0.2s, background 0.2s;
}

.industry-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.industry-item i {
    font-size: 1.25rem;
    color: var(--primary);
    width: 28px;
    text-align: center;
}

/* Testimonial */
.testimonial-card {
    background: var(--white);
    border: 1px solid #e8eef5;
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    position: relative;
    min-height: 280px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: -20px;
}

.quote-icon i {
    color: #c5daf0;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-slides {
    position: relative;
    min-height: 180px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #c5daf0;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.testimonial-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    padding: 36px 0;
    color: #fff;
}

.cta-icon {
    font-size: 2.5rem;
    opacity: 0.95;
    flex-shrink: 0;
}

.cta-content p {
    font-size: var(--fs-body);
}

.btn-cta {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    color: var(--primary) !important;
}

.btn-cta:hover {
    background: #f0f7ff !important;
}

/* Footer */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-about {
    font-size: var(--fs-xs);
    line-height: 1.65;
    opacity: 0.85;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-heading {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--fs-xs);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0.85;
}

.footer-contact i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-bottom .divider {
    margin: 0 10px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 991px) {
    .process-connector {
        display: none;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 50px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 8px;
    }
}
