*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --orange: #FC501D;
        --dark: #111111;
        --text: #797E88;
        --white: #ffffff;
        --bg: #F8F8F8;
        --border: #EBEBEB;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    body { font-family: var(--font); background: var(--bg); color: var(--dark); }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ─── PAGE BANNER ─── */
    .page-banner {
        position: relative;
        height: 480px;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
    }
    .page-banner__bg {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover; z-index: 0;
    }
    .page-banner__overlay {
        position: absolute; inset: 0;
        background: rgba(10, 14, 28, 0.75);
        z-index: 1;
    }
    .page-banner__content {
        position: relative; z-index: 2;
        text-align: center; padding: 0 20px;
    }
    .page-banner__title {
        font-size: clamp(40px, 5.5vw, 72px);
        font-weight: 800; color: #fff;
        letter-spacing: -1px; line-height: 1.1;
        margin-bottom: 16px;
    }
    .page-breadcrumb {
        display: flex; align-items: center; justify-content: center;
        gap: 10px; font-size: 17px; font-weight: 500;
        color: rgba(255,255,255,0.8);
    }
    .page-breadcrumb a { color: var(--orange); font-weight: 600; }
    .page-breadcrumb .sep { opacity: 0.7; font-size: 13px; }

    /* ─── MAIN LAYOUT ─── */
    .blog-wrap {
        max-width: 1280px;
        margin: 80px auto;
        padding: 0 40px;
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 50px;
        align-items: start;
    }

    /* ════════ MAIN CONTENT ════════ */
    .blog-main {}

    .blog-featured-img {
        width: 100%; height: 460px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 32px;
    }

    .blog-meta {
        display: flex; align-items: center;
        gap: 22px; margin-bottom: 20px; flex-wrap: wrap;
    }
    .meta-item {
        display: flex; align-items: center;
        gap: 7px; font-size: 13.5px;
        color: var(--text); font-weight: 500;
    }
    .meta-item i { color: var(--orange); font-size: 13px; }
    .meta-item a { color: var(--text); transition: color .2s; }
    .meta-item a:hover { color: var(--orange); }

    .blog-title {
        font-size: clamp(26px, 3vw, 38px);
        font-weight: 800; color: var(--dark);
        line-height: 1.2; margin-bottom: 26px;
    }

    .blog-body p {
        font-size: 15.5px; color: var(--text);
        line-height: 1.9; margin-bottom: 22px;
    }
    .blog-body h3 {
        font-size: 23px; font-weight: 800;
        color: var(--dark); margin: 36px 0 16px;
    }

    /* Blockquote */
    .blog-quote {
        background: #fff9f7;
        border-left: 4px solid var(--orange);
        border-radius: 0 14px 14px 0;
        padding: 26px 30px; margin: 34px 0;
    }
    .blog-quote p {
        font-size: 15.5px; color: var(--dark);
        font-style: italic; font-weight: 500;
        line-height: 1.75; margin: 0;
    }
    .blog-quote .quote-author {
        display: flex; align-items: center;
        gap: 8px; margin-top: 14px;
        font-size: 13.5px; font-weight: 700;
        color: var(--orange);
    }
    .blog-quote .quote-author::before { content: '—'; }

    /* Two images row */
    .blog-img-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px; margin: 34px 0;
    }
    .blog-img-row img {
        width: 100%; height: 230px;
        object-fit: cover; border-radius: 14px;
        transition: transform .4s ease;
    }
    .blog-img-row img:hover { transform: scale(1.03); }

    /* Tag & Share */
    .tag-share-row {
        display: flex; align-items: center;
        justify-content: space-between;
        flex-wrap: wrap; gap: 16px;
        padding: 24px 0; margin-top: 40px;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .tags-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
    .tags-wrap span { font-size: 13px; font-weight: 700; color: var(--dark); }
    .tag-pill {
        background: #fff; border: 1.5px solid var(--border);
        padding: 6px 18px; border-radius: 50px;
        font-size: 13px; font-weight: 500; color: var(--text);
        transition: all .2s;
    }
    .tag-pill:hover { border-color: var(--orange); color: var(--orange); }
    .share-wrap { display: flex; align-items: center; gap: 10px; }
    .share-wrap span { font-size: 13px; font-weight: 700; color: var(--dark); }
    .share-icon {
        width: 36px; height: 36px; border-radius: 50%;
        background: #fff; border: 1.5px solid var(--border);
        display: flex; align-items: center; justify-content: center;
        font-size: 13px; color: var(--text);
        transition: all .2s;
    }
    .share-icon:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

    /* ─── LEAVE REPLY ─── */
    .reply-section { margin-top: 55px; }
    .reply-section h3 {
        font-size: 26px; font-weight: 800;
        color: var(--dark); margin-bottom: 10px;
    }
    .reply-section .sub-badge {
        display: flex; align-items: center;
        gap: 10px; margin-bottom: 28px;
    }
    .reply-section .sub-badge span {
        font-size: 15px; color: var(--text);
    }
    .reply-section .sub-badge::before {
        content: '';
        display: block; width: 30px; height: 2px;
        background: var(--orange); border-radius: 2px;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px; margin-bottom: 16px;
    }
    .form-field {
        width: 100%; padding: 14px 18px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-family: var(--font);
        font-size: 14.5px; color: var(--dark);
        background: #fff; outline: none;
        transition: border-color .2s, box-shadow .2s;
    }
    .form-field:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 3px rgba(252,80,29,.08);
    }
    .form-field::placeholder { color: #bbb; }
    textarea.form-field {
        height: 150px; resize: vertical;
        margin-bottom: 16px;
    }
    .btn-submit {
        background: var(--orange); color: #fff;
        font-family: var(--font);
        font-size: 15px; font-weight: 700;
        padding: 15px 40px; border-radius: 50px;
        border: none; cursor: pointer;
        display: inline-flex; align-items: center; gap: 10px;
        transition: background .2s, transform .2s;
        width: 100%; justify-content: center;
    }
    .btn-submit:hover { background: #d93e00; transform: translateY(-2px); }

    /* ════════ SIDEBAR ════════ */
    .blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

    .sidebar-card {
        background: #fff;
        border-radius: 16px;
        padding: 28px;
        border: 1px solid var(--border);
        box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }
    .sidebar-card h4 {
        font-size: 17px; font-weight: 800;
        color: var(--dark); margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 2px solid var(--border);
        position: relative;
    }
    .sidebar-card h4::after {
        content: ''; position: absolute;
        bottom: -2px; left: 0;
        width: 40px; height: 2px;
        background: var(--orange);
    }

    /* Search */
    .search-box { position: relative; }
    .search-box input {
        width: 100%; padding: 13px 50px 13px 18px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-family: var(--font); font-size: 14px;
        outline: none; background: var(--bg);
        transition: border-color .2s;
    }
    .search-box input:focus { border-color: var(--orange); }
    .search-box button {
        position: absolute; right: 8px; top: 50%;
        transform: translateY(-50%);
        width: 36px; height: 36px;
        border-radius: 8px;
        background: var(--orange); border: none;
        cursor: pointer; display: flex;
        align-items: center; justify-content: center;
        color: #fff; font-size: 13px;
        transition: background .2s;
    }
    .search-box button:hover { background: #d93e00; }

    /* Categories */
    .cat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .cat-list li a {
        display: flex; align-items: center; justify-content: space-between;
        padding: 12px 16px; border-radius: 10px;
        background: var(--bg);
        font-size: 14.5px; font-weight: 600; color: var(--dark);
        border: 1px solid transparent;
        transition: all .2s;
    }
    .cat-list li a:hover { background: #fff3ef; border-color: rgba(252,80,29,.2); color: var(--orange); }
    .cat-list li a i { color: var(--orange); font-size: 12px; }

    /* Recent Posts */
    .recent-post-item {
        display: flex; align-items: flex-start;
        gap: 14px; padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
    .recent-thumb {
        width: 72px; height: 66px;
        border-radius: 10px; object-fit: cover; flex-shrink: 0;
    }
    .recent-date { font-size: 12px; color: var(--text); margin-bottom: 5px; }
    .recent-date i { color: var(--orange); margin-right: 4px; }
    .recent-info a {
        font-size: 14px; font-weight: 700;
        color: var(--dark); line-height: 1.4;
        transition: color .2s;
    }
    .recent-info a:hover { color: var(--orange); }

    /* Tags cloud */
    .tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-btn {
        padding: 8px 18px; border-radius: 50px;
        border: 1.5px solid var(--border);
        background: #fff; font-family: var(--font);
        font-size: 13px; font-weight: 600;
        color: var(--text); cursor: pointer;
        transition: all .2s;
    }
    .tag-btn:hover, .tag-btn.active {
        background: var(--orange); color: #fff;
        border-color: var(--orange);
    }

    /* ─── SIDEBAR BOTTOM BANNER ─── */
    .sidebar-cta {
        background: linear-gradient(145deg, #FC501D 0%, #e03a0a 100%);
        border-radius: 16px; padding: 34px 26px;
        text-align: center;
        position: relative; overflow: hidden;
    }
    .sidebar-cta::before {
        content: '';
        position: absolute; top: -30px; right: -30px;
        width: 120px; height: 120px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
    }
    .sidebar-cta::after {
        content: '';
        position: absolute; bottom: -20px; left: -20px;
        width: 80px; height: 80px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }
    .sidebar-cta .cta-icon {
        width: 56px; height: 56px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%; display: flex;
        align-items: center; justify-content: center;
        margin: 0 auto 16px; font-size: 22px; color: #fff;
    }
    .sidebar-cta h4 {
        font-size: 20px; font-weight: 800;
        color: #fff; margin-bottom: 10px;
        border: none; padding: 0;
    }
    .sidebar-cta h4::after { display: none; }
    .sidebar-cta p {
        font-size: 14px; color: rgba(255,255,255,0.8);
        line-height: 1.7; margin-bottom: 20px;
    }
    .sidebar-cta a {
        display: inline-flex; align-items: center; gap: 8px;
        background: #fff; color: var(--orange);
        padding: 11px 26px; border-radius: 50px;
        font-size: 14px; font-weight: 800;
        transition: transform .2s;
    }
    .sidebar-cta a:hover { transform: translateY(-2px); }

    /* ─── RELATED POSTS ─── */
    .related-posts-section { margin-top: 60px; }
    .section-badge {
        display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
    }
    .section-badge span {
        font-size: 16px; font-weight: 700;
        letter-spacing: 1.5px; color: var(--orange);
        text-transform: uppercase;
    }
    .section-badge::before {
        content: '';
        display: block; width: 30px; height: 2px;
        background: var(--orange); border-radius: 2px;
    }
    .section-badge::after {
        content: '';
        display: block; width: 18px; height: 2px;
        background: var(--orange); border-radius: 2px;
    }
    .related-posts-section h3 {
        font-size: 28px; font-weight: 800;
        color: var(--dark); margin-bottom: 28px;
    }
    .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .related-card {
        background: #fff; border-radius: 16px;
        overflow: hidden; border: 1px solid var(--border);
        transition: transform .3s, box-shadow .3s;
    }
    .related-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(252,80,29,0.12);
    }
    .related-card img {
        width: 100%; height: 180px; object-fit: cover;
        transition: transform .4s ease;
    }
    .related-card:hover img { transform: scale(1.05); }
    .related-card-body { padding: 18px 20px; }
    .related-card-date {
        font-size: 12px; color: var(--text);
        margin-bottom: 8px;
    }
    .related-card-date i { color: var(--orange); margin-right: 4px; }
    .related-card-body a {
        font-size: 15px; font-weight: 700;
        color: var(--dark); line-height: 1.45;
        display: block; margin-bottom: 10px;
        transition: color .2s;
    }
    .related-card-body a:hover { color: var(--orange); }
    .read-more-link {
        display: inline-flex; align-items: center; gap: 6px;
        font-size: 13px; font-weight: 700;
        color: var(--orange);
    }
    .read-more-link i { font-size: 11px; transition: transform .2s; }
    .related-card:hover .read-more-link i { transform: translateX(3px); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
        .blog-wrap { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
        .blog-wrap { margin: 50px auto; padding: 0 20px; }
        .page-banner { height: 300px; }
        .blog-featured-img { height: 260px; }
        .form-row { grid-template-columns: 1fr; }
        .blog-img-row { grid-template-columns: 1fr; }
        .related-grid { grid-template-columns: 1fr; }
    }

     *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --orange: #FC501D;
        --orange-dark: #d93e00;
        --yellow: #ECB719;
        --dark: #111111;
        --text: #797E88;
        --muted: #797E88;
        --white: #ffffff;
        --bg: #F8F8F8;
        --card-bg: #ffffff;
        --border: #e8e8e8;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    body {
        font-family: var(--font);
        background: var(--bg);
    }

    /* ─── BANNER ─── */
    .blog-banner {
        position: relative;
        width: 100%;
        height: 590px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .blog-banner__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        z-index: 0;
    }
    .blog-banner__overlay {
        position: absolute;
        inset: 0;
        background: rgba(20, 28, 45, 0.68);
        z-index: 1;
    }
    .blog-banner__content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 20px;
    }
    .blog-banner__title {
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    .blog-banner__breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 500;
        color: #ffffff;
    }
    .blog-banner__breadcrumb a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 600;
        transition: opacity 0.2s;
    }
    .blog-banner__breadcrumb a:hover { opacity: 0.8; }
    .blog-banner__breadcrumb .sep { color: #ffffff; font-size: 13px; opacity: 0.85; }

    @media (max-width: 768px) {
        .blog-banner { height: 300px; }
        .blog-banner__title { font-size: 38px; }
        .blog-banner__breadcrumb { font-size: 14px; }
    }
    @media (max-width: 480px) {
        .blog-banner { height: 260px; }
        .blog-banner__title { font-size: 30px; }
    }

    /* ─── BLOG SECTION ─── */
    .blog-section {
        padding: 90px 0 100px;
        background: var(--bg);
    }
    .blog-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .blog-layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 50px;
        align-items: start;
    }

    /* ─── SECTION BADGE ─── */
    .section-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }
    .section-badge h5 {
        color: var(--orange);
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 1.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font);
        margin: 0;
    }
    .section-heading {
        font-size: clamp(24px, 2vw, 40px);
        font-weight: 700;
        color: var(--dark);
        line-height: 1.18;
        margin-bottom: 40px;
        font-family: var(--font);
    }

    /* ─── BLOG CARDS GRID 2x2 ─── */
    .blog-cards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .blog-card {
        background: var(--card-bg);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(252, 80, 29, 0.14);
    }
    .blog-card__img-wrap {
        width: 100%;
        height: 220px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }
    .blog-card__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.5s ease;
    }
    .blog-card:hover .blog-card__img-wrap img { transform: scale(1.05); }
    .blog-card__body {
        padding: 24px 24px 28px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .blog-card__category {
        font-size: 13px;
        font-weight: 600;
        color: var(--orange);
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        font-family: var(--font);
    }
    .blog-card__title {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1.35;
        margin-bottom: 14px;
        font-family: var(--font);
        flex: 1;
    }
    .blog-card__title a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }
    .blog-card__title a:hover { color: var(--orange); }
    .blog-card__title a.orange { color: var(--orange); }
    .blog-card__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--border);
    }
    .blog-card__date {
        font-size: 13px;
        color: var(--muted);
        font-family: var(--font);
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .blog-card__date i { font-size: 13px; color: var(--orange); }
    .blog-card__read {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        font-family: var(--font);
        transition: color 0.2s, gap 0.2s;
    }
    .blog-card__read:hover { color: var(--orange); gap: 10px; }
    .blog-card__read svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }
    .blog-card__read:hover svg { transform: translateX(3px); }

    /* ─── PAGINATION ─── */
    .blog-pagination {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 50px;
        flex-wrap: wrap;
    }
    .pg-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1.5px solid var(--border);
        background: var(--card-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        cursor: pointer;
        font-family: var(--font);
        text-decoration: none;
        transition: all 0.2s;
    }
    .pg-btn:hover, .pg-btn.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }
    .pg-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ─── SIDEBAR ─── */
    .blog-sidebar {
        display: flex;
        flex-direction: column;
        gap: 28px;
        position: sticky;
        top: 100px;
    }
    .sidebar-widget {
        background: var(--card-bg);
        border-radius: 20px;
        padding: 28px 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .sidebar-widget__title {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        font-family: var(--font);
        margin-bottom: 20px;
        padding-bottom: 14px;
        border-bottom: 2px solid var(--orange);
    }

    /* Search */
    .sidebar-search {
        display: flex;
        align-items: center;
        border: 1.5px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition: border-color 0.2s;
    }
    .sidebar-search:focus-within { border-color: var(--orange); }
    .sidebar-search input {
        flex: 1;
        border: none;
        outline: none;
        padding: 12px 16px;
        font-size: 14px;
        font-family: var(--font);
        color: var(--dark);
        background: transparent;
    }
    .sidebar-search input::placeholder { color: var(--muted); }
    .sidebar-search button {
        width: 46px;
        height: 46px;
        background: var(--orange);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
        flex-shrink: 0;
    }
    .sidebar-search button:hover { background: var(--orange-dark); }
    .sidebar-search button svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* Latest News */
    .latest-news-list { display: flex; flex-direction: column; gap: 18px; }
    .latest-news-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        text-decoration: none;
        transition: opacity 0.2s;
    }
    .latest-news-item:hover { opacity: 0.8; }
    .lni-img { width: 72px; height: 62px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
    .lni-body { flex: 1; }
    .lni-date { font-size: 12px; color: var(--muted); font-family: var(--font); margin-bottom: 4px; display: block; }
    .lni-title { font-size: 13.5px; font-weight: 600; color: var(--dark); font-family: var(--font); line-height: 1.4; transition: color 0.2s; }
    .latest-news-item:hover .lni-title { color: var(--orange); }

    /* Categories */
    .categories-list { display: flex; flex-direction: column; gap: 0; }
    .category-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
    }
    .category-item:last-child { border-bottom: none; }
    .category-item span { font-size: 14.5px; font-weight: 500; color: var(--dark); font-family: var(--font); transition: color 0.2s; }
    .category-item:hover span { color: var(--orange); }
    .category-count {
        font-size: 13px;
        font-weight: 600;
        color: var(--muted);
        background: var(--bg);
        padding: 2px 10px;
        border-radius: 20px;
        font-family: var(--font);
        transition: background 0.2s, color 0.2s;
    }
    .category-item:hover .category-count { background: var(--orange); color: #fff; }

    /* Tags */
    .tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-pill {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 50px;
        border: 1.5px solid var(--border);
        font-size: 13px;
        font-weight: 500;
        color: var(--dark);
        font-family: var(--font);
        text-decoration: none;
        transition: all 0.2s;
    }
    .tag-pill:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
        .blog-layout { grid-template-columns: 1fr 300px; gap: 36px; }
    }
    @media (max-width: 900px) {
        .blog-layout { grid-template-columns: 1fr; }
        .blog-sidebar { position: static; }
    }
    @media (max-width: 640px) {
        .blog-cards-grid { grid-template-columns: 1fr; }
        .blog-container { padding: 0 20px; }
        .blog-section { padding: 60px 0; }
    }
     *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --orange: #FC501D;
        --orange-dark: #d93e00;
        --yellow: #ECB719;
        --dark: #111111;
        --muted: #797E88;
        --white: #ffffff;
        --bg: #F0EDE8;
        --card-bg: #ffffff;
        --border: #e4e0da;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    body { font-family: var(--font); background: var(--bg); }

    /* ─── BANNER ─── */
    .svc-banner {
        position: relative;
        width: 100%;
        height: 590px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .svc-banner__bg {
        position: absolute; inset: 0; width: 100%; height: 100%;
        object-fit: cover; object-position: center; display: block; z-index: 0;
    }
    .svc-banner__overlay {
        position: absolute; inset: 0;
        background: rgba(20, 28, 45, 0.68); z-index: 1;
    }
    .svc-banner__content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
    .svc-banner__title {
        font-size: clamp(36px, 6vw, 72px); font-weight: 800; color: #fff;
        letter-spacing: -0.5px; line-height: 1.1; margin-bottom: 16px;
    }
    .svc-banner__breadcrumb {
        display: flex; align-items: center; justify-content: center;
        gap: 10px; font-size: 20px; font-weight: 500; color: #fff;
    }
    .svc-banner__breadcrumb a { color: var(--orange); text-decoration: none; font-weight: 600; transition: opacity .2s; }
    .svc-banner__breadcrumb a:hover { opacity: .8; }
    .svc-banner__breadcrumb .sep { color: #fff; font-size: 13px; opacity: .85; }
    @media (max-width: 768px) { .svc-banner { height: 300px; } .svc-banner__title { font-size: 38px; } }
    @media (max-width: 480px) { .svc-banner { height: 260px; } .svc-banner__title { font-size: 30px; } }

    /* ─── SERVICES SECTION ─── */
    .services-page-section {
        background: var(--bg);
        padding: 90px 0 100px;
    }
    .svc-wrap {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* Section header */
    .section-badge {
        display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
    }
    .section-badge h5 {
        color: var(--orange); font-size: 18px; font-weight: 700;
        letter-spacing: 1.5px; display: flex; align-items: center;
        gap: 10px; font-family: var(--font); margin: 0;
    }
    .section-heading {
        font-size: clamp(28px, 3vw, 46px); font-weight: 700; color: var(--dark);
        line-height: 1.15; margin-bottom: 56px; font-family: var(--font);
        max-width: 600px;
    }

    /* ─── CARDS GRID ─── */
    .svc-cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* ─── SINGLE CARD ─── */
    .svc-card {
        background: var(--card-bg);
        border-radius: 20px;
        padding: 32px 28px 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        cursor: pointer;
    }
    .svc-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(252, 80, 29, 0.13);
    }

    /* Top row: title + arrow btn */
    .svc-card__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 22px;
    }
    .svc-card__title {
        font-size: 22px;
        font-weight: 700;
        color: var(--dark);
        font-family: var(--font);
        line-height: 1.25;
        flex: 1;
        transition: color 0.2s;
    }
    .svc-card:hover .svc-card__title { color: var(--orange); }

    /* Arrow button */
    .svc-card__arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f0ede8;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        text-decoration: none;
        transition: background 0.25s, transform 0.25s;
    }
    .svc-card__arrow svg {
        width: 16px; height: 16px;
        stroke: var(--dark); fill: none;
        stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
        transition: stroke 0.2s, transform 0.2s;
    }
    .svc-card:hover .svc-card__arrow {
        background: var(--orange);
        transform: rotate(0deg);
    }
    .svc-card:hover .svc-card__arrow svg {
        stroke: #fff;
        transform: rotate(45deg);
    }

    /* Divider */
    .svc-card__divider {
        width: 100%;
        height: 1px;
        background: var(--border);
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    /* Description */
    .svc-card__desc {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 28px;
        flex: 1;
        font-family: var(--font);
    }

    /* Image — sits at bottom, slightly inset with rounded top corners */
    .svc-card__img-wrap {
        width: 100%;
        border-radius: 14px 14px 0 0;
        overflow: hidden;
        flex-shrink: 0;
        margin: 0 -0px;
    }
    .svc-card__img-wrap img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }
    .svc-card:hover .svc-card__img-wrap img { transform: scale(1.05); }

    /* ─── ROW 2: only 2 wider cards ─── */
    .svc-cards-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 24px;
    }
    .svc-cards-grid-2 .svc-card__img-wrap img { height: 260px; }
    .svc-cards-grid-2 .svc-card__title { font-size: 24px; }

    /* ─── ROW 3: full-width featured card ─── */
    .svc-card-featured {
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--card-bg);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 2px 16px rgba(0,0,0,0.05);
        transition: transform 0.35s ease, box-shadow 0.35s ease;
        cursor: pointer;
    }
    .svc-card-featured:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(252, 80, 29, 0.13);
    }
    .svc-card-featured__body {
        padding: 48px 48px 48px 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .svc-card-featured__top {
        display: flex; align-items: flex-start;
        justify-content: space-between; gap: 16px; margin-bottom: 22px;
    }
    .svc-card-featured__title {
        font-size: 28px; font-weight: 700; color: var(--dark);
        font-family: var(--font); line-height: 1.2; flex: 1;
        transition: color 0.2s;
    }
    .svc-card-featured:hover .svc-card-featured__title { color: var(--orange); }
    .svc-card-featured__divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 20px; }
    .svc-card-featured__desc {
        font-size: 15px; color: var(--muted); line-height: 1.8;
        font-family: var(--font); margin-bottom: 32px;
    }
    .svc-card-featured__list {
        display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; margin: 0;
    }
    .svc-card-featured__list li {
        display: flex; align-items: center; gap: 10px;
        font-size: 14.5px; font-weight: 500; color: var(--dark); font-family: var(--font);
    }
    .svc-card-featured__list li::before {
        content: '';
        width: 8px; height: 8px; border-radius: 50%;
        background: var(--orange); flex-shrink: 0;
    }
    .svc-card-featured__img {
        width: 100%; height: 100%; object-fit: cover; display: block;
        transition: transform 0.6s ease;
    }
    .svc-card-featured:hover .svc-card-featured__img { transform: scale(1.04); }
    .svc-card-featured__img-wrap { overflow: hidden; }

    /* ─── CTA STRIP ─── */
    .svc-cta-strip {
        background: var(--orange);
        border-radius: 20px;
        padding: 50px 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        margin-top: 60px;
        flex-wrap: wrap;
    }
    .svc-cta-strip__left h3 {
        font-size: clamp(22px, 2.5vw, 34px);
        font-weight: 700;
        color: #fff;
        font-family: var(--font);
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .svc-cta-strip__left p {
        font-size: 15px;
        color: rgba(255,255,255,0.8);
        font-family: var(--font);
        line-height: 1.6;
    }
    .svc-cta-strip__btns {
        display: flex; align-items: center; gap: 14px; flex-wrap: wrap; flex-shrink: 0;
    }
    .btn-white {
        display: inline-flex; align-items: center; gap: 8px;
        height: 52px; padding: 0 30px;
        background: #fff; color: var(--orange);
        font-size: 14px; font-weight: 700; font-family: var(--font);
        border-radius: 50px; border: none; cursor: pointer;
        text-decoration: none; transition: background .2s, transform .2s;
        letter-spacing: 0.2px;
    }
    .btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
    .btn-white svg { width: 16px; height: 16px; stroke: var(--orange); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
    .btn-outline-white {
        display: inline-flex; align-items: center; gap: 8px;
        height: 52px; padding: 0 30px;
        background: transparent; color: #fff;
        font-size: 14px; font-weight: 700; font-family: var(--font);
        border-radius: 50px; border: 2px solid rgba(255,255,255,0.5);
        cursor: pointer; text-decoration: none;
        transition: border-color .2s, transform .2s;
    }
    .btn-outline-white:hover { border-color: #fff; transform: translateY(-2px); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
        .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
        .svc-cards-grid, .svc-cards-grid-2 { grid-template-columns: 1fr; }
        .svc-card-featured { grid-template-columns: 1fr; }
        .svc-card-featured__img-wrap { height: 260px; }
        .svc-card-featured__body { padding: 32px 28px; }
        .svc-cta-strip { padding: 36px 28px; flex-direction: column; }
    }
    @media (max-width: 480px) {
        .svc-wrap { padding: 0 20px; }
        .services-page-section { padding: 60px 0; }
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
    --orange: #FC501D;
    --orange-dark: #d93e00;
    --dark: #111111;
    --muted: #797E88;
    --white: #ffffff;
    --bg: #F0EDE8;
    --border: #e4e0da;
    --font: 'Plus Jakarta Sans', sans-serif;
}
 
/* ─── CTA STRIP ─── */
.cta-strip {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
}
.cta-strip__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    z-index: 0;
}
.cta-strip__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 28, 0.72);
    z-index: 1;
}
.cta-strip__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-strip__text h2 {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 800;
    color: #fff;
    font-family: var(--font);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 540px;
}
.cta-strip__text p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font);
    line-height: 1.6;
}
.cta-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 34px;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}
.cta-strip__btn:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-strip__btn svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none;
    stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
 
/* ─── CONTACT SECTION ─── */
.contact-section {
    background: var(--bg);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
/* subtle dot pattern bg */
.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(252,80,29,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}
.contact-wrap {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: start;
}
 
/* ── LEFT COL ── */
.contact-left {}
.contact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.contact-badge span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-family: var(--font);
}
.contact-badge-line {
    width: 36px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    display: inline-block;
}
.contact-heading {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font);
    line-height: 1.15;
    margin-bottom: 16px;
}
.contact-desc {
    font-size: 15px;
    color: var(--muted);
    font-family: var(--font);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 540px;
}
 
/* Info grid — 2x2 */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    margin-bottom: 36px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(252,80,29,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-icon svg {
    width: 18px; height: 18px;
    stroke: var(--orange); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-info-body {}
.contact-info-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    font-family: var(--font);
    margin-bottom: 5px;
}
.contact-info-val {
    font-size: 13.5px;
    color: var(--muted);
    font-family: var(--font);
    line-height: 1.6;
}
.contact-info-val a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.contact-info-val a:hover { color: var(--orange); }
 
/* Social icons */
.contact-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
}
.contact-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}
.contact-social a svg {
    width: 15px; height: 15px;
    stroke: var(--dark); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke .2s;
}
.contact-social a:hover svg { stroke: #fff; }
 
/* Map */
.contact-map-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.contact-map-wrap iframe {
    width: 100%;
    height: 260px;
    display: block;
    border: none;
}
 
/* ── RIGHT COL — FORM ── */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}
.contact-form-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font);
    margin-bottom: 7px;
}
.form-label span { color: var(--orange); }
.form-input,
.form-textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 13px 20px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--dark);
    background: #fafafa;
    outline: none;
    transition: border-color .2s, background .2s;
    display: block;
}
.form-textarea {
    border-radius: 16px;
    resize: vertical;
    min-height: 120px;
    padding: 14px 20px;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #bbb; }
.form-input:focus,
.form-textarea:focus {
    border-color: var(--orange);
    background: #fff;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 34px;
    background: var(--orange);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    transition: background .2s, transform .2s;
    letter-spacing: 0.2px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }
.form-submit svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none;
    stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
 
/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-card { position: static; }
}
@media (max-width: 640px) {
    .contact-wrap { padding: 0 20px; }
    .contact-section { padding: 60px 0; }
    .contact-info-grid { grid-template-columns: 1fr; gap: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-strip__inner { padding: 40px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
    .contact-form-card { padding: 28px 20px 32px; }
}


  *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --orange: #FA5301;
        --dark: #111111;
        --muted: #666;
        --white: #fff;
        --font: 'Plus Jakarta Sans', sans-serif;
    }

    body {
        font-family: var(--font);
        background: #fff;
    }

    /* ══════════════════════════════
   ABOUT SECTION
══════════════════════════════ */
    .about-section {
        padding: 100px 0;
        background: #fff;
        overflow: hidden;
    }

    .about-wrap {
        max-width: 80%;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    /* ── LEFT IMAGE COL ── */
    .about-img-col {
        position: relative;
    }

    .about-main-img {
        width: 100%;
        height: 580px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

    .about-stat-badge {
        position: absolute;
        bottom: 32px;
        left: 32px;
        background: var(--orange);
        border-radius: 16px;
        padding: 28px 32px;
        min-width: 200px;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .about-stat-badge__num {
        font-size: 52px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        margin-bottom: 8px;
        letter-spacing: -1px;
    }

    .about-stat-badge__label {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.3;
    }

    /* ── RIGHT CONTENT COL ── */
    .about-content-col {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* badge row */
    .about-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .about-badge__txt {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--orange);
    }

    .about-badge__line {
        width: 36px;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
    }

    /* heading */
    .about-heading {
        font-size: clamp(28px, 2.6vw, 44px);
        font-weight: 800;
        color: var(--dark);
        line-height: 1.15;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
        white-space: nowrap;
    }

    @media(max-width:1200px) {
        .about-heading {
            white-space: normal;
            font-size: clamp(28px, 3vw, 40px);
        }
    }

    /* desc */
    .about-desc {
        font-size: 15.5px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 32px;
    }

    /* ── TABS ── */
    .about-tabs {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .about-tab {
        padding: 12px 28px;
        border-radius: 50px;
        font-family: var(--font);
        font-size: 14.5px;
        font-weight: 700;
        cursor: pointer;
        border: 1.5px solid #ddd;
        background: #fff;
        color: var(--dark);
        transition: all 0.25s ease;
        outline: none;
    }

    .about-tab:hover {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
        transform: translateY(-2px);
    }

    .about-tab.active {
        background: var(--orange);
        border-color: var(--orange);
        color: #fff;
    }

    /* ── DIVIDER ── */
    .about-divider {
        width: 100%;
        height: 1px;
        background: #e8e8e8;
        margin: 28px 0;
    }

    /* ── TAB CONTENT ── */
    .tab-content-wrap {
        display: none;
    }

    .tab-content-wrap.active {
        display: flex;
        align-items: flex-start;
        gap: 24px;
    }

    .tab-inner-img {
        width: 200px;
        height: 160px;
        object-fit: cover;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .tab-text p {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .tab-text p:last-child {
        margin-bottom: 0;
    }

    /* ── CTA ROW ── */
    .about-cta-row {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 32px;
        flex-wrap: wrap;
    }

    .btn-know-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        padding: 16px 36px;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.25s, transform 0.2s;
        letter-spacing: 0.2px;
    }

    .btn-know-more:hover {
        background: #d94600;
        transform: translateY(-2px);
        color: #fff;
    }

    .btn-know-more svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }

    .btn-know-more:hover svg {
        transform: translateX(3px);
    }

    /* call block */
    .call-block {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .call-icon-wrap {
        width: 52px;
        height: 52px;
        background: var(--dark);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .call-icon-wrap svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .call-info p {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 3px;
        font-weight: 500;
    }

    .call-info a {
        font-size: 16px;
        font-weight: 800;
        color: var(--dark);
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: color 0.2s;
    }

    .call-info a:hover {
        color: var(--orange);
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
        .about-wrap {
            grid-template-columns: 1fr;
            gap: 48px;
            max-width: 90%;
        }

        .about-main-img {
            height: 420px;
        }
    }

    @media(max-width:600px) {
        .about-section {
            padding: 60px 0;
        }

        .about-wrap {
            max-width: 95%;
        }

        .about-main-img {
            height: 300px;
        }

        .about-stat-badge {
            bottom: 16px;
            left: 16px;
            padding: 20px 22px;
        }

        .about-stat-badge__num {
            font-size: 40px;
        }

        .tab-content-wrap.active {
            flex-direction: column;
        }

        .tab-inner-img {
            width: 100%;
            height: 200px;
        }

        .about-cta-row {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    [data-aos] {
        pointer-events: none;
    }

    [data-aos].aos-animate {
        pointer-events: auto;
    }

    .commit-section {
        padding: 80px 0 100px;
        background: #fff;
        overflow: hidden;
    }

    .commit-wrap {
        max-width: 80%;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ── TOP ROW: badge+heading left, button right ── */
    .commit-top {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 48px;
        gap: 24px;
    }

    .commit-top-left {}

    /* badge */
    .commit-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .commit-badge__txt {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--orange);
    }

    .commit-badge__line {
        width: 36px;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
    }

    /* heading */
    .commit-heading {
        font-size: clamp(28px, 2.6vw, 44px);
        font-weight: 800;
        color: var(--dark);
        line-height: 1.15;
        letter-spacing: -0.5px;
        max-width: 560px;
        white-space: nowrap;
    }

    @media(max-width:1100px) {
        .commit-heading {
            white-space: normal;
            font-size: clamp(26px, 3vw, 38px);
        }
    }

    /* know more btn */
    .btn-know-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--orange);
        color: #fff;
        font-family: var(--font);
        font-size: 15px;
        font-weight: 700;
        padding: 16px 36px;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.25s, transform 0.2s;
        white-space: nowrap;
        flex-shrink: 0;
        align-self: center;
    }

    .btn-know-more:hover {
        background: #d94600;
        transform: translateY(-2px);
    }

    .btn-know-more svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }

    .btn-know-more:hover svg {
        transform: translateX(3px);
    }

    /* ── BOTTOM ROW: image left, cards grid right ── */
    .commit-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: start;
    }

    /* ── LEFT: image + badge ── */
    .commit-img-col {
        position: relative;
    }

    .commit-main-img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

    /* satisfied customers badge */
    .commit-satisfied {
        position: absolute;
        bottom: 28px;
        left: 28px;
        background: var(--orange);
        border-radius: 16px;
        padding: 18px 24px;
        min-width: 220px;
    }

    .satisfied-avatars {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .satisfied-avatars .avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2.5px solid #fff;
        object-fit: cover;
        margin-left: -10px;
        background: #ddd;
        overflow: hidden;
        flex-shrink: 0;
    }

    .satisfied-avatars .avatar:first-child {
        margin-left: 0;
    }

    .avatar-count {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #fff;
        border: 2.5px solid #fff;
        margin-left: -10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 800;
        color: var(--orange);
        flex-shrink: 0;
    }

    .satisfied-text {
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.2px;
    }

    .satisfied-text span {
        font-size: 18px;
        font-weight: 800;
    }

    /* ── RIGHT: 2×2 cards grid ── */
    .commit-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .commit-card {
        background: #F8F8F8;
        border-radius: 16px;
        padding: 32px 28px;
        transition: transform 0.25s, box-shadow 0.25s;
    }

    .commit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .commit-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        color: var(--orange);
    }

    .commit-card__icon svg {
        width: 52px;
        height: 52px;
        stroke: var(--orange);
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .commit-card__title {
        font-size: 17px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .commit-card__desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.75;
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
        .commit-wrap {
            max-width: 90%;
        }

        .commit-bottom {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .commit-main-img {
            height: 380px;
        }
    }

    @media(max-width:640px) {
        .commit-section {
            padding: 60px 0;
        }

        .commit-wrap {
            max-width: 95%;
        }

        .commit-top {
            flex-direction: column;
            align-items: flex-start;
        }

        .commit-cards {
            grid-template-columns: 1fr;
        }

        .commit-main-img {
            height: 280px;
        }

        .commit-satisfied {
            bottom: 16px;
            left: 16px;
            padding: 14px 18px;
        }
    }

    /* ══════════════════════════════
   SELECTED PROJECTS CAROUSEL SECTION

══════════════════════════════ */
    .sp-section {
        padding: 80px 0 100px;
        background: #fff;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .sp-header {
        text-align: center;
        margin-bottom: 52px;
    }

    .sp-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .sp-badge-line {
        width: 40px;
        height: 2px;
        background: #FA5301;
        border-radius: 2px;
    }

    .sp-badge-txt {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #FA5301;
    }

    .sp-heading {
        font-size: clamp(28px, 3.2vw, 46px);
        font-weight: 700;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    /* ── TRACK ── */
    .sp-track-wrap {
        overflow: hidden;
        width: 100%;
        cursor: grab;
        user-select: none;
    }

    .sp-track-wrap:active {
        cursor: grabbing;
    }

    .sp-track {
        display: flex;
        gap: 20px;
        will-change: transform;
    }

    /* ── CARD ── */
    .sp-card {
        flex: 0 0 300px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        height: 400px;
        background: #111;
        text-decoration: none;
    }

    .sp-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease, filter 0.4s ease;
        filter: brightness(0.55);
    }

    .sp-card:hover img {
        transform: scale(1.05);
        filter: brightness(0.38);
    }

    /* gradient overlay */
    .sp-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 55%);
        pointer-events: none;
    }

    .sp-card-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px 24px;
        z-index: 2;
    }

    .sp-card-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .sp-card-sub {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.72);
    }

    /* ── HOVER ARROW ── */
    .sp-arrow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #FA5301;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), opacity 0.25s;
        opacity: 0;
        z-index: 3;
        text-decoration: none;
        flex-shrink: 0;
    }

    .sp-arrow svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .sp-card:hover .sp-arrow {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
        .sp-section {
            padding: 60px 0 70px;
        }

        .sp-card {
            flex: 0 0 240px;
            height: 320px;
        }
    }

    .testi-section {
        padding: 0;
        background: #fff;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .testi-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 520px;
    }

    /* ── LEFT IMAGE ── */
    .testi-img-col {
        position: relative;
        overflow: hidden;
    }

    .testi-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* ── RIGHT CONTENT ── */
    .testi-content-col {
        background: #F5F3EE;
        padding: 56px 52px 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    /* badge */
    .testi-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .testi-badge__line {
        width: 36px;
        height: 2px;
        background: #FA5301;
        border-radius: 2px;
    }

    .testi-badge__txt {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #FA5301;
    }

    /* heading */
    .testi-heading {
        font-size: clamp(26px, 3vw, 42px);
        font-weight: 800;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 36px;
    }

    /* ── SLIDE WRAPPER ── */
    .testi-slides-wrap {
        position: relative;
        flex: 1;
        overflow: hidden;
        min-height: 200px;
    }

    .testi-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(60px);
        transition: all 0.45s cubic-bezier(.4, 0, .2, 1);
        pointer-events: none;
    }

    .testi-slide.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        position: relative;
    }

    /* quote icon */
    .testi-quote-icon {
        margin-bottom: 20px;
    }

    .testi-quote-icon svg {
        width: 44px;
        height: 36px;
        fill: #FA5301;
    }

    /* slide text */
    .testi-slide-text {
        font-size: 16px;
        color: #444;
        line-height: 1.8;
        margin-bottom: 28px;
        font-style: italic;
    }

    /* author row */
    .testi-author-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }

    .testi-author {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .testi-author-img {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .testi-author-name {
        font-size: 16px;
        font-weight: 800;
        color: #111;
        margin-bottom: 2px;
    }

    .testi-author-role {
        font-size: 13px;
        color: #888;
        font-weight: 500;
    }

    /* arrows */
    .testi-arrows {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .testi-arrow-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1.5px solid #FA5301;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
        outline: none;
    }

    .testi-arrow-btn:hover {
        background: #FA5301;
        transform: scale(1.05);
    }

    .testi-arrow-btn:hover svg {
        stroke: #fff;
    }

    .testi-arrow-btn svg {
        width: 18px;
        height: 18px;
        stroke: #FA5301;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.2s;
    }

    /* ── BOTTOM STATS ── */
    .testi-stats {
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .testi-stats-num {
        font-size: 72px;
        font-weight: 800;
        color: #CCCAC4;
        line-height: 1;
        letter-spacing: -2px;
        user-select: none;
    }

    .testi-stats-plus {
        font-size: 42px;
        font-weight: 800;
        color: #111;
        line-height: 1;
        margin-left: -8px;
        margin-right: 4px;
    }

    .testi-stats-text {
        font-size: 14px;
        color: #888;
        line-height: 1.5;
        max-width: 180px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        .testi-wrap {
            grid-template-columns: 1fr;
        }

        .testi-img-col {
            height: 340px;
        }

        .testi-content-col {
            padding: 40px 28px 36px;
        }
    }

    @media (max-width: 480px) {
        .testi-content-col {
            padding: 32px 20px 28px;
        }

        .testi-stats-num {
            font-size: 52px;
        }
    }

    .sp-section {
        padding: 80px 0 100px;
        background: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    .sp-header {
        text-align: center;
        margin-bottom: 52px;
    }

    .sp-badge-icon {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #FA5301;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    /* ORANGE ICON FIX */
    .sp-badge-icon img {
        width: 22px;
        height: 22px;
        filter: invert(40%) sepia(100%) saturate(800%) hue-rotate(5deg) brightness(105%);
    }

    .sp-heading {
        font-size: clamp(28px, 3.2vw, 46px);
        font-weight: 800;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .sp-track {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding-left: 40px;
    }

    .sp-card {
        flex: 0 0 340px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        background: #111;
        text-decoration: none;
        display: block;
    }

    .sp-card:nth-child(odd) {
        height: 460px;
        margin-top: 0;
    }

    .sp-card:nth-child(even) {
        height: 400px;
        margin-top: 60px;
    }

    .sp-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.62);
    }

    /* ORANGE INFO BOX */
    .sp-card-info {
        position: absolute;
        bottom: 18px;
        left: 16px;
        right: 16px;
        background: #FA5301;
        border-radius: 14px;
        padding: 20px 22px;
    }

    .sp-card-title {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .sp-card-sub {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.85);
        letter-spacing: 2px;
        text-transform: uppercase;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .sp-section {
            padding: 60px 0 70px;
        }

        .sp-track {
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
            gap: 20px;
        }

        .sp-card {
            flex: 0 0 auto !important;
            width: 100% !important;
            height: 300px !important;
            margin-top: 0 !important;
        }
    }


    .am-section {
        padding: 80px 0 100px;
        background: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    .am-header {
        text-align: center;
        margin-bottom: 52px;
    }

    .am-badge-icon {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #FA5301;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .am-badge-icon img {
        width: 22px;
        height: 22px;
        filter: invert(40%) sepia(100%) saturate(800%) hue-rotate(5deg) brightness(105%);
    }

    .am-heading {
        font-size: clamp(28px, 3.2vw, 46px);
        font-weight: 800;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    /* ── GRID WRAPPER ── */
    .am-wrap {
        max-width: 88%;
        margin: 0 auto;
    }

    /* ROW 1: big left (2col) + small right + small right */
    /* ROW 2: small + small + big right (2col) */
    .am-row {
        display: grid;
        gap: 16px;
        margin-bottom: 16px;
    }

    .am-row-1 {
        grid-template-columns: 2fr 1fr 1fr;
        height: 340px;
    }

    .am-row-2 {
        grid-template-columns: 1fr 1fr 2fr;
        height: 340px;
    }

    /* ── CARD ── */
    .am-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: #111;
        cursor: pointer;
        height: 100%;
    }

    .am-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.60);
        transition: transform 0.5s ease, filter 0.4s ease;
    }

    .am-item:hover img {
        transform: scale(1.06);
        filter: brightness(0.38);
    }

    /* gradient overlay */
    .am-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.0) 55%);
        pointer-events: none;
        z-index: 1;
    }

    /* label */
    .am-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 18px 20px;
        z-index: 2;
    }

    .am-label-tag {
        display: inline-flex;
        align-items: center;
        background: #FA5301;
        border-radius: 50px;
        padding: 4px 14px;
        font-size: 10px;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .am-label-name {
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    /* responsive */
    @media (max-width: 900px) {

        .am-row-1,
        .am-row-2 {
            grid-template-columns: 1fr 1fr;
            height: auto;
        }

        .am-item {
            height: 240px;
        }
    }

    @media (max-width: 560px) {
        .am-section {
            padding: 60px 0 70px;
        }

        .am-wrap {
            max-width: 94%;
        }

        .am-row-1,
        .am-row-2 {
            grid-template-columns: 1fr;
            height: auto;
        }

        .am-item {
            height: 220px;
        }
    }

    .blog-section {
        padding: 80px 0 100px;
        background: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    /* ── HEADER ── */
    .blog-header {
        text-align: center;
        margin-bottom: 56px;
    }

    .blog-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .blog-badge-line {
        width: 36px;
        height: 2px;
        background: #FA5301;
        border-radius: 2px;
    }

    .blog-badge-txt {
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #FA5301;
    }

    .blog-heading {
        font-size: clamp(30px, 3.5vw, 52px);
        font-weight: 700;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    /* ── CARDS GRID ── */
    .blog-grid {
        max-width: 88%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* ── SINGLE CARD ── */
    .blog-card {
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }

    .blog-card-img {
        width: 100%;
        height: 300px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 24px;
        background: #ddd;
    }

    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-card-img img {
        transform: scale(1.05);
    }

    /* category */
    .blog-card-cat {
        font-size: 14px;
        font-weight: 600;
        color: #FA5301;
        margin-bottom: 12px;
        font-style: italic;
    }

    /* title */
    .blog-card-title {
        font-size: 20px;
        font-weight: 800;
        color: #111;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: -0.2px;
    }

    /* read more */
    .blog-read-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 600;
        color: #111;
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: color 0.2s;
    }

    .blog-read-more:hover {
        color: #FA5301;
    }

    .blog-read-more svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }

    .blog-card:hover .blog-read-more svg {
        transform: translate(2px, -2px);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        .blog-grid {
            grid-template-columns: 1fr 1fr;
            max-width: 94%;
        }
    }

    @media (max-width: 600px) {
        .blog-section {
            padding: 60px 0 70px;
        }

        .blog-grid {
            grid-template-columns: 1fr;
            max-width: 90%;
        }

        .blog-card-img {
            height: 240px;
        }
    }

    .faq-section {
        padding: 90px 0 110px;
        background: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    .faq-wrap {
        max-width: 88%;
        margin: 0 auto;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
    }

    /* ── LEFT ── */
    .faq-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #FA5301;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    .faq-badge-line {
        width: 36px;
        height: 2px;
        background: #FA5301;
        border-radius: 2px;
    }

    .faq-heading {
        font-size: clamp(28px, 3vw, 44px);
        font-weight: 800;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .faq-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 36px;
        max-width: 420px;
    }

    .faq-img-wrap {
        width: 100%;
        height: 260px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 32px;
    }

    .faq-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .faq-img-wrap:hover img {
        transform: scale(1.04);
    }

    .faq-contact-box {
        background: #F8F7F4;
        border-radius: 20px;
        padding: 28px 28px 24px;
    }

    .faq-contact-top {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .faq-contact-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: #fff;
        border: 1.5px solid #e8e8e8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .faq-contact-icon svg {
        width: 26px;
        height: 26px;
        stroke: #FA5301;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .faq-contact-title {
        font-size: 18px;
        font-weight: 800;
        color: #111;
        margin-bottom: 4px;
    }

    .faq-contact-sub {
        font-size: 13px;
        color: #666;
    }

    .faq-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #FA5301;
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 15px;
        font-weight: 700;
        padding: 16px 32px;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: background 0.25s, transform 0.2s;
        letter-spacing: 0.2px;
    }

    .faq-contact-btn:hover {
        background: #d94600;
        transform: translateY(-2px);
        color: #fff;
    }

    .faq-contact-btn svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* ── RIGHT: ACCORDION ── */
    .faq-accordion {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        border: 1.5px solid #e8e8e8;
        border-radius: 16px;
        overflow: hidden;
        transition: border-color 0.25s, box-shadow 0.25s;
        background: #fff;
    }

    .faq-item.open {
        border-color: #FA5301;
        box-shadow: 0 4px 20px rgba(250, 83, 1, 0.09);
    }

    .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 22px 24px;
        cursor: pointer;
        user-select: none;
    }

    .faq-q-text {
        font-size: 16px;
        font-weight: 700;
        color: #111;
        line-height: 1.3;
        transition: color 0.2s;
    }

    .faq-item.open .faq-q-text {
        color: #FA5301;
    }

    .faq-chevron {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1.5px solid #e8e8e8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.2s, border-color 0.2s, transform 0.35s;
    }

    .faq-item.open .faq-chevron {
        background: #FA5301;
        border-color: #FA5301;
        transform: rotate(180deg);
    }

    .faq-chevron svg {
        width: 16px;
        height: 16px;
        stroke: #888;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.2s;
    }

    .faq-item.open .faq-chevron svg {
        stroke: #fff;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(.4, 0, .2, 1);
    }

    .faq-answer-inner {
        padding: 0 24px 22px;
        font-size: 14.5px;
        color: #666;
        line-height: 1.85;
        border-top: 1px solid #f0f0f0;
    }

    .faq-item.open .faq-answer {
        max-height: 300px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        .faq-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .faq-img-wrap {
            height: 200px;
        }
    }

    @media (max-width: 560px) {
        .faq-section {
            padding: 60px 0 70px;
        }

        .faq-wrap {
            max-width: 94%;
        }

    }

    .ab2-section {
        padding: 100px 0 120px;
        background: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
        position: relative;
    }

    /* BG building image — bottom right corner */
    .ab2-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 480px;
        height: 420px;
        background: url('assets/img/all-images/home/bg1.png') no-repeat bottom right;
        background-size: contain;
        pointer-events: none;
        z-index: 0;
        opacity: 0.85;
    }

    .ab2-wrap {
        max-width: 88%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* ══════════════════════
   LEFT — IMAGE CLUSTER
══════════════════════ */
    .ab2-img-col {
        position: relative;
        /* height = big image height + rating card sticking out below */
        height: 600px;
    }

    /* Big image — bottom-left, takes lower 480px */
    .ab2-img-main {
        position: absolute;
        bottom: 80px;
        /* leave room for rating card below */
        left: 0;
        width: 62%;
        height: 440px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
        z-index: 1;
    }

    /* Small image — top-right */
    .ab2-img-small {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 300px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
        z-index: 1;
    }

    /* ── CIRCULAR BADGE — overlaps both images in the middle ── */
    .ab2-circle-badge {
        position: absolute;
        /* vertically: between top of big img and bottom of small img */
        top: 245px;
        /* roughly where the two images meet */
        left: 50%;
        transform: translateX(-50%);
        width: 148px;
        height: 148px;
        border-radius: 50%;
        background: #FA5301;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        box-shadow: 0 8px 32px rgba(250, 83, 1, 0.28);
    }s

    /* rotating text ring */
    .ab2-circle-badge svg.ring-text {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        animation: ab2spin 14s linear infinite;
    }

    @keyframes ab2spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .ab2-circle-badge .num {
        font-size: 52px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        z-index: 2;
        position: relative;
    }

    /* ── RATING CARD — sits at the bottom, below both images ── */
    .ab2-rating-card {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 54%;
        background: #fff;
        border-radius: 20px;
        padding: 22px 24px 20px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
        z-index: 5;
    }

    .ab2-rating-num {
        font-size: 48px;
        font-weight: 800;
        color: #FA5301;
        line-height: 1;
        margin-bottom: 10px;
    }

    .ab2-rating-avatars {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
    }

    .ab2-rating-avatars img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2.5px solid #fff;
        object-fit: cover;
        margin-left: -8px;
        flex-shrink: 0;
    }

    .ab2-rating-avatars img:first-child {
        margin-left: 0;
    }

    .ab2-stars {
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 8px;
    }

    .ab2-stars svg {
        width: 16px;
        height: 16px;
        fill: #FA5301;
    }

    .ab2-rating-label {
        font-size: 13px;
        font-weight: 700;
        color: #333;
    }

    /* ══════════════════════
   RIGHT — CONTENT
══════════════════════ */
    .ab2-content-col {
        display: flex;
        flex-direction: column;
    }

    .ab2-badge {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
    }

    .ab2-heading {
        font-size: clamp(30px, 3.2vw, 50px);
        font-weight: 800;
        color: #111;
        line-height: 1.12;
        letter-spacing: -0.5px;
        margin-bottom: 22px;
    }

    .ab2-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 32px;
        max-width: 480px;
    }

    /* ── FEATURE ICONS ROW ── */
    .ab2-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 28px;
        padding-bottom: 28px;
        border-bottom: 1px solid #e8e8e8;
    }

    .ab2-feature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .ab2-feat-icon svg {
        width: 44px;
        height: 44px;
        stroke: #222;
        fill: none;
        stroke-width: 1.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .ab2-feat-title {
        font-size: 15px;
        font-weight: 800;
        color: #111;
        line-height: 1.3;
    }

    /* ── CHECKLIST ── */
    .ab2-checklist {
        list-style: none;
        margin-bottom: 28px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .ab2-checklist li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: #444;
        line-height: 1.5;
    }

    .ab2-check-icon svg {
        width: 20px;
        height: 20px;
        stroke: #FA5301;
        fill: none;
        stroke-width: 2.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .ab2-highlight {
        font-size: 15px;
        font-weight: 800;
        color: #111;
        margin-bottom: 32px;
        line-height: 1.6;
    }

    .ab2-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #FA5301;
        color: #fff;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 15px;
        font-weight: 700;
        padding: 16px 38px;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.25s, transform 0.2s;
        align-self: flex-start;
    }

    .ab2-btn:hover {
        background: #d94600;
        transform: translateY(-2px);
        color: #fff;
    }

    .ab2-btn svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }

    .ab2-btn:hover svg {
        transform: translateX(3px);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
        .ab2-wrap {
            grid-template-columns: 1fr;
            gap: 60px;
            max-width: 92%;
        }

        .ab2-img-col {
            height: 520px;
        }

        .ab2-img-main {
            height: 360px;
            bottom: 70px;
        }

        .ab2-img-small {
            height: 240px;
        }

        .ab2-circle-badge {
            top: 210px;
        }
    }

    @media (max-width: 600px) {
        .ab2-section {
            padding: 60px 0 80px;
        }

        .ab2-wrap {
            max-width: 94%;
        }

        .ab2-img-col {
            height: 420px;
        }

        .ab2-img-main {
            height: 260px;
            bottom: 60px;
            width: 65%;
        }

        .ab2-img-small {
            height: 180px;
            width: 52%;
        }

        .ab2-circle-badge {
            width: 110px;
            height: 110px;
            top: 160px;
        }

        .ab2-circle-badge .num {
            font-size: 38px;
        }

        .ab2-rating-card {
            width: 60%;
            padding: 16px 18px;
        }

        .ab2-rating-num {
            font-size: 36px;
        }

        .ab2-features {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .ab2-section::after {
            width: 200px;
            height: 180px;
            opacity: 0.4;
        }
    }

    /* ── SECTION SPACING FIX ── */
    .about-section {
        padding: 60px 0;
    }

    .ab2-section {
        padding: 60px 0 80px;
    }

    .commit-section {
        padding: 60px 0 80px;
    }

    .sp-section {
        padding: 50px 0 70px;
    }

    .am-section {
        padding: 50px 0 70px;
    }

    .loc-section {
        padding: 60px 0 80px;
    }

    .faq-section {
        padding: 60px 0 80px;
    }

    .testi-section {
        padding: 0;
    }

    .blog-section {
        padding: 60px 0 80px;
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 40px 0;
        }

        .ab2-section {
            padding: 40px 0 60px;
        }

        .commit-section {
            padding: 40px 0 60px;
        }

        .sp-section {
            padding: 40px 0 50px;
        }

        .am-section {
            padding: 40px 0 50px;
        }

        .loc-section {
            padding: 40px 0 60px;
        }

        .faq-section {
            padding: 40px 0 60px;
        }

        .blog-section {
            padding: 40px 0 60px;
        }
    }
    .video-section {
    width: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
    margin-top: 80px; 
}

.video-section video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-section {
        margin-top: 60px;
    }
}
  .loc-section {
        padding: 90px 0 110px;
        background: #F8F7F4;
        font-family: 'Plus Jakarta Sans', sans-serif;
        overflow: hidden;
    }

    .loc-wrap {
        max-width: 88%;
        margin: 0 auto;
    }

    /* ── HEADER ── */
    .loc-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 52px;
        gap: 24px;
    }

    .loc-header-left {}

    .loc-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #FA5301;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    .loc-badge img {
        width: 20px;
        height: 20px;
        filter: invert(40%) sepia(100%) saturate(800%) hue-rotate(5deg) brightness(105%);
    }

    .loc-heading {
        font-size: clamp(28px, 3vw, 46px);
        font-weight: 800;
        color: #111;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .loc-sub {
        font-size: 15px;
        color: #888;
        max-width: 340px;
        line-height: 1.7;
        align-self: flex-end;
    }

    /* ── ROW 1: big card left + 2 small right ── */
    .loc-row1 {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
        height: 340px;
    }

    /* ── ROW 2: 2 small left + big card right ── */
    .loc-row2 {
        display: grid;
        grid-template-columns: 1fr 1fr 1.4fr;
        gap: 16px;
        height: 300px;
    }

    /* ── CARD ── */
    .loc-card {
        position: relative;
        border-radius: 22px;
        overflow: hidden;
        background: #ddd;
        height: 100%;
    }

    .loc-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.68);
        transition: transform 0.55s ease, filter 0.4s ease;
    }

    .loc-card:hover img {
        transform: scale(1.06);
        filter: brightness(0.5);
    }

    /* gradient */
    .loc-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.0) 55%);
        pointer-events: none;
        z-index: 1;
    }

    /* info box */
    .loc-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 22px 24px;
        z-index: 2;
    }

    .loc-dist-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #FA5301;
        border-radius: 50px;
        padding: 5px 14px;
        font-size: 11px;
        font-weight: 800;
        color: #fff;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .loc-dist-pill svg {
        width: 12px;
        height: 12px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .loc-card-title {
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .loc-card-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.5;
        font-weight: 500;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {

        .loc-row1,
        .loc-row2 {
            grid-template-columns: 1fr 1fr;
            height: auto;
        }

        .loc-card {
            height: 250px;
        }

        .loc-header {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    @media (max-width: 560px) {
        .loc-section {
            padding: 60px 0 70px;
        }

        .loc-wrap {
            max-width: 94%;
        }

        .loc-row1,
        .loc-row2 {
            grid-template-columns: 1fr;
            height: auto;
        }

        .loc-card {
            height: 230px;
        }
    }
    
    
 @keyframes fadeInBackdrop { from { opacity:0; } to { opacity:1; } }
    #enquiryModal.modal-open {
        opacity:1 !important;
        transform:translate(-50%,-50%) scale(1) !important;
    }
    /* Error border highlight */
    .input-error { border-color:#e53935 !important; background:#fff8f8 !important; }

    @media (max-width:480px) {
        #enquiryModal { width:95% !important; top:50% !important; }
    }
    @media (max-width:768px) {
        .topbar-hide-mobile { display:none !important; }
    }
      @media (max-width: 768px) {
        .topbar-hide-mobile { display: none !important; }
    }