/* ============================================================
   app-inline.css – styles that used to live as inline <style>
   blocks inside resources/views/frontend/layouts/app.blade.php.
   Moving them out reduces the HTML payload by ~10 KiB and
   lets the browser cache the rules across page loads.
   ============================================================ */

/* ---------- FontAwesome font-display swap ----------
   Overrides the default `font-display: auto` baked into all.css
   so icons fall back to a system glyph instantly instead of
   blocking text for up to 3s. Fixes Lighthouse "Font display". */
@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/fa-light-300.woff2') format('woff2'),
         url('../fonts/fa-light-300.woff') format('woff');
}
@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fa-regular-400.woff2') format('woff2'),
         url('../fonts/fa-regular-400.woff') format('woff');
}
@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/fa-solid-900.woff2') format('woff2'),
         url('../fonts/fa-solid-900.woff') format('woff');
}
@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fa-brands-400.woff2') format('woff2'),
         url('../fonts/fa-brands-400.woff') format('woff');
}
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/fa-solid-900.woff2') format('woff2');
}

/* ---------- Generic page chrome ---------- */
body.innerpage { padding-top: 170px; }

.social-icon ul li a i {
    color: #333 !important;
    transition: color 0.3s ease;
}
.social-icon ul li a:hover i { color: #CAA656 !important; }

.header-navigation .primary-menu li {
    display: inline-block;
    line-height: 80px;
}

.page-title-area {
    height: auto;
    min-height: 270px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-title-area::before {
    display: none !important;
}

.banner-slider.banner-slider-three .single-banner::before { background: unset; }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.about-thumb::before { display: none; }

/* ---------- Theme FAQ accordion (home page) ---------- */
.accordion-one .accordion-trigger {
    background: transparent;
    border: 0;
    width: 100%;
    text-align: start;
    cursor: pointer;
    color: #CAA656;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.65;
    padding: 14px 0;
    white-space: normal;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.accordion-one .accordion-trigger i {
    flex-shrink: 0;
    margin-top: 4px;
    padding-inline-end: 5px;
}
.accordion-one .accordion-trigger.collapsed,
.accordion-one .accordion-trigger:not([aria-expanded="true"]) {
    color: #616161;
}
.accordion-one .card-header .accordion-trigger[aria-expanded="true"] {
    color: #CAA656;
}

/* ---------- FAQ accordion (blog + product pages) ---------- */
.faq-container {
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 32px 0 24px;
}
.faq-section-title {
    color: #1c4587 !important;
    font-size: 22px !important;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-align: start !important;
    margin: 0 0 18px !important;
}
.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(28, 69, 135, 0.08);
}
.faq-question {
    background-color: #f8f8f8;
    cursor: pointer;
    padding: 18px 56px 18px 24px;
    margin: 0;
    font-size: 15px;
    color: #1c4587;
    font-weight: 700;
    position: relative;
    transition: background 0.25s ease;
    text-align: start;
    line-height: 1.5;
    user-select: none;
}
.faq-question:hover {
    background-color: #eef4fc;
}
.faq-question::after {
    content: '+';
    position: absolute;
    inset-inline-end: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 400;
    color: #e4ad40;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}
.faq-item.active .faq-question {
    background-color: #f0f5fc;
    border-bottom: 1px solid #e4ad40;
}
.faq-item.active .faq-question::after {
    content: '\2212';
    color: #1c4587;
}
.faq-answer {
    display: none;
    padding: 18px 24px 22px;
    margin: 0;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    line-height: 1.7;
    text-align: start;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-answer p {
    margin: 0 0 10px;
    color: #000 !important;
    font-size: 14px !important;
    text-align: start !important;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq-answer ul,
.faq-answer ol {
    margin: 8px 0;
    padding-inline-start: 20px;
    font-size: 14px;
    color: #000;
}
.faq-answer a {
    color: #e4ad40 !important;
}

/* Fallback when embedded FAQ HTML cannot be auto-parsed */
.embedded-faq-body.embedded-faq-fallback > h2,
.embedded-faq-body.embedded-faq-fallback > h3,
.embedded-faq-body.embedded-faq-fallback > h4,
.embedded-faq-body.embedded-faq-fallback > p > strong:only-child {
    display: block;
    background: #f8f8f8;
    color: #1c4587 !important;
    font-size: 15px !important;
    font-weight: 700;
    padding: 14px 20px;
    margin: 10px 0 0 !important;
    border: 1px solid #ddd;
    border-radius: 10px 10px 0 0;
    text-align: start;
}
.embedded-faq-body.embedded-faq-fallback > p,
.embedded-faq-body.embedded-faq-fallback > ul,
.embedded-faq-body.embedded-faq-fallback > ol {
    color: #000 !important;
    font-size: 14px !important;
    line-height: 1.7;
    padding: 14px 20px 16px;
    margin: 0 0 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    text-align: start;
}

/* ---------- In-content CTA (blog + product) ---------- */
.content-cta-inline {
    margin: 36px 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.content-cta-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dce6f5;
    background: linear-gradient(135deg, #f7faff 0%, #fff 48%, #fffbf2 100%);
    box-shadow: 0 10px 30px rgba(28, 69, 135, 0.1);
}
.content-cta-accent {
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    width: 5px;
    background: linear-gradient(180deg, #1c4587 0%, #e4ad40 100%);
}
.content-cta-body {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 28px 28px 32px;
    flex-wrap: wrap;
}
.content-cta-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c4587;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(28, 69, 135, 0.25);
}
.content-cta-text {
    flex: 1 1 240px;
    min-width: 0;
}
.content-cta-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1c4587;
    line-height: 1.35;
    text-align: start;
}
.content-cta-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    text-align: start;
}
.content-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1 1 220px;
    justify-content: flex-end;
}
.content-cta-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.content-cta-btn i,
.content-cta-btn span {
    color: inherit !important;
}
.content-cta-btn i {
    font-size: 18px;
}
.content-cta-btn:hover {
    transform: translateY(-2px);
}
.content-cta-btn--wa,
.content-cta-btn--wa:hover,
.content-cta-btn--wa:focus,
.content-cta-btn--wa:visited {
    background: #25d366 !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}
.content-cta-btn--wa:hover {
    background: #1fb855 !important;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}
.content-cta-btn--wa i,
.content-cta-btn--wa span,
.content-cta-btn--wa:hover i,
.content-cta-btn--wa:hover span {
    color: #fff !important;
}
.content-cta-btn--call,
.content-cta-btn--call:hover,
.content-cta-btn--call:focus,
.content-cta-btn--call:visited {
    background: #1c4587 !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(28, 69, 135, 0.22);
}
.content-cta-btn--call:hover {
    background: #163a72 !important;
    box-shadow: 0 8px 22px rgba(28, 69, 135, 0.3);
}
.content-cta-btn--call i,
.content-cta-btn--call span,
.content-cta-btn--call:hover i,
.content-cta-btn--call:hover span {
    color: #fff !important;
}
.blogdatacontent .content-cta-inline a.content-cta-btn,
.blogdatacontent .content-cta-inline a.content-cta-btn:hover,
.blogdatacontent .content-cta-inline a.content-cta-btn:visited,
.blogdatacontent .content-cta-inline a.content-cta-btn span,
.blogdatacontent .content-cta-inline a.content-cta-btn i {
    color: #fff !important;
    text-decoration: none !important;
}
@media (max-width: 767.98px) {
    .content-cta-body {
        padding: 22px 20px 22px 24px;
        gap: 16px;
    }
    .content-cta-title {
        font-size: 18px;
    }
    .content-cta-desc {
        font-size: 14px;
    }
    .content-cta-actions {
        width: 100%;
        justify-content: stretch;
    }
    .content-cta-btn {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* ---------- Home luxury hero (static) ---------- */
.home-hero-luxe {
    margin-top: 0;
    font-family: 'Source Sans Pro', sans-serif;
}
.home-hero-luxe__banner {
    position: relative;
    min-height: clamp(520px, 75vh, 780px);
    overflow: visible;
    display: block;
}
.home-hero-luxe__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
    background-color: #0a0e16;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home-hero-luxe__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
    pointer-events: none;
}
.home-hero-luxe__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(10, 14, 22, 0.93) 0%,
        rgba(10, 14, 22, 0.82) 34%,
        rgba(10, 14, 22, 0.45) 58%,
        rgba(10, 14, 22, 0.12) 100%
    );
}
.home-hero-luxe__banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: clamp(520px, 75vh, 780px);
    display: flex;
    align-items: flex-start;
    /* Must clear fixed header (topbar + navbar ≈ 150–175px) */
    padding-top: clamp(190px, 16vw, 220px);
    padding-bottom: clamp(48px, 6vw, 72px);
}
.home-hero-luxe__content {
    max-width: 620px;
    padding: 0;
    text-align: start;
    position: relative;
    z-index: 2;
    overflow: visible;
}
.home-hero-luxe__title {
    margin: 0 0 18px !important;
    line-height: 1.15;
    font-weight: 700 !important;
    color: transparent !important;
}
.home-hero-luxe__title-white {
    display: block !important;
    color: #fff !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(26px, 3.6vw, 48px);
    font-weight: 700 !important;
    margin-bottom: 6px;
    line-height: 1.2;
}
.home-hero-luxe__title-gold {
    display: block !important;
    color: #e4ad40 !important;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3.2vw, 44px);
    font-weight: 700 !important;
    line-height: 1.2;
}
.home-hero-luxe__tag,
.home-hero-luxe__tag-line {
    display: block !important;
}
.home-hero-luxe__tag {
    color: #e4ad40 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 10px !important;
    padding-top: 4px;
    line-height: 1.7 !important;
    max-width: 540px;
    overflow: visible !important;
}
html[dir='rtl'] .home-hero-luxe__tag {
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.6;
}
.home-hero-luxe__tag-line {
    width: 64px;
    height: 2px;
    background: #e4ad40;
    margin-bottom: 18px;
}
.home-hero-luxe__desc {
    margin: 0 0 26px !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 16px;
    line-height: 1.75;
    max-width: 540px;
}
.home-hero-luxe__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.home-hero-luxe__btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 26px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.home-hero-luxe__btn:hover {
    transform: translateY(-2px);
}
.home-hero-luxe__btn--gold {
    background: #e4ad40 !important;
    color: #1a1a1a !important;
    border: 2px solid #e4ad40;
    box-shadow: 0 8px 24px rgba(228, 173, 64, 0.35);
}
.home-hero-luxe__btn--gold i,
.home-hero-luxe__btn--gold span {
    color: #1a1a1a !important;
}
.home-hero-luxe__btn--outline {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid #e4ad40;
}
.home-hero-luxe__btn--outline i,
.home-hero-luxe__btn--outline span {
    color: #fff !important;
}
.home-hero-luxe__features {
    background: linear-gradient(180deg, #222831 0%, #161b22 100%);
    border-top: 1px solid rgba(228, 173, 64, 0.2);
}
.home-hero-luxe__features-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.home-hero-luxe__features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px;
    color: #e4ad40 !important;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
}
.home-hero-luxe__features-list li:last-child {
    border-inline-end: none;
}
.home-hero-luxe__features-list i {
    font-size: 22px;
    color: #e4ad40 !important;
    flex-shrink: 0;
}
.home-hero-luxe__features-list span {
    color: #e4ad40 !important;
}
.home-hero-luxe__trust {
    background: #f3efe6;
    border-top: 1px solid #e8dfd0;
    border-bottom: 1px solid #e8dfd0;
}
.home-hero-luxe__trust p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}
.home-hero-luxe__trust-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9b896, transparent);
}
html[dir='rtl'] .home-hero-luxe__overlay {
    background: linear-gradient(
        270deg,
        rgba(10, 14, 22, 0.93) 0%,
        rgba(10, 14, 22, 0.82) 34%,
        rgba(10, 14, 22, 0.45) 58%,
        rgba(10, 14, 22, 0.12) 100%
    );
}

@media (max-width: 991.98px) {
    .home-hero-luxe__features-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
    .home-hero-luxe__features-list li:nth-child(2) {
        border-inline-end: none;
    }
    .home-hero-luxe__features-list li:nth-child(1),
    .home-hero-luxe__features-list li:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}
@media (max-width: 575.98px) {
    .home-hero-luxe__banner {
        min-height: 480px;
    }
    .home-hero-luxe__banner .container {
        min-height: 480px;
        padding-top: 155px;
    }
    .home-hero-luxe__features-list {
        grid-template-columns: 1fr !important;
    }
    .home-hero-luxe__features-list li {
        border-inline-end: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
        padding-inline: 24px;
    }
    .home-hero-luxe__features-list li:last-child {
        border-bottom: none;
    }
    .home-hero-luxe__actions {
        flex-direction: column;
    }
    .home-hero-luxe__btn {
        width: 100%;
    }
    .home-hero-luxe__trust p {
        flex-direction: column;
        gap: 10px;
        letter-spacing: 0.14em;
        font-size: 11px;
    }
    .home-hero-luxe__trust-line {
        max-width: 80px;
    }
}

/* ---------- Footer tweaks ---------- */
.footer-area .footer-brand-logo {
    display: block;
    max-width: 150px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
}
.footer-area .footer-category-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-area .footer-category-links li {
    margin-bottom: 10px;
}
.footer-area .footer-category-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 14px;
    transition: color 0.2s ease, padding-inline-start 0.2s ease;
}
.footer-area .footer-category-links a:hover {
    color: #e4ad40 !important;
    padding-inline-start: 4px;
}
.footer-area .footer-category-links a i {
    color: #e4ad40;
    font-size: 12px;
}

.blogdatacontent {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #000;
    text-align: justify !important;
    line-height: 1.7;
}
.blogdatacontent h2 {
    color: #1c4587 !important;
    font-size: 22px !important;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify !important;
    margin-top: 20px;
    margin-bottom: 20px;
}
.blogdatacontent h3 {
    color: #1c4587 !important;
    font-size: 18px !important;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify !important;
    margin-top: 20px;
    margin-bottom: 20px;
}
.blogdatacontent p {
    color: #000 !important;
    font-size: 16px !important;
    font-family: 'Source Sans Pro', sans-serif;
    text-align: justify !important;
}
/* Body links only — keep buttons/cards on their own styles */
.blogdatacontent :is(p, li, td, th, blockquote, .faq-answer) a:not(.content-cta-btn):not(.related-product-btn),
.blogdatacontent .article-body > a:not(.content-cta-btn):not(.related-product-btn) {
    display: inline !important;
    color: #e4ad40 !important;
    font-weight: 600;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}
.blogdatacontent :is(p, li, td, th, blockquote, .faq-answer) a:not(.content-cta-btn):not(.related-product-btn):hover,
.blogdatacontent .article-body > a:not(.content-cta-btn):not(.related-product-btn):hover {
    color: #c99530 !important;
    text-decoration: none !important;
}
.blogdatacontent ol,
.blogdatacontent ul {
    margin: 12pt 0;
    padding-inline-start: 20px;
    padding-inline-end: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}
.blogdatacontent ol { list-style-type: decimal !important; }
.blogdatacontent ul { list-style-type: disc !important; }

/* Uniform image size on article & product pages */
.blog-area .blog-dteails-content > .main-image,
.blogdatacontent img,
.service-details-page .portfolio-details-slider .image-container img {
    width: 100%;
    height: clamp(200px, 42vw, 450px);
    max-height: 450px;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}
.blog-area .blog-dteails-content > .main-image,
.service-details-page .portfolio-details-slider .image-container img {
    margin-bottom: 24px;
}
.blogdatacontent img {
    margin: 20px auto;
}
.blogdatacontent .related-products-section img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}
.service-details-page .portfolio-details-slider .image-container {
    height: clamp(200px, 42vw, 450px);
    max-height: 450px;
    min-height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

/* ---------- Creative table design (matches FAQ card style) ---------- */
.blogdatacontent .article-table-wrap {
    width: 100%;
    margin: 28px 0;
    padding: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: box-shadow 0.25s ease;
}
.blogdatacontent .article-table-wrap:hover {
    box-shadow: 0 4px 14px rgba(28, 69, 135, 0.1);
}
.blogdatacontent .article-table-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, #1c4587 0%, #e4ad40 100%);
    z-index: 1;
    pointer-events: none;
}
.blogdatacontent .article-table-wrap::-webkit-scrollbar {
    height: 6px;
}
.blogdatacontent .article-table-wrap::-webkit-scrollbar-thumb {
    background: #d8e3f5;
    border-radius: 999px;
}
.blogdatacontent .article-table-wrap::-webkit-scrollbar-thumb:hover {
    background: #1c4587;
}
.blogdatacontent table {
    width: 100%;
    min-width: 520px;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    margin: 0;
    border: none;
    overflow: visible;
}
.blogdatacontent thead th,
.blogdatacontent tr:first-child th {
    background: #f8f8f8;
    color: #1c4587;
    text-align: center;
    padding: 16px 22px;
    border: none;
    border-bottom: 2px solid #e4ad40;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.blogdatacontent thead th:not(:last-child),
.blogdatacontent tr:first-child th:not(:last-child) {
    border-inline-end: 1px solid #e8e8e8;
}
.blogdatacontent td {
    background-color: #fff;
    color: #000 !important;
    padding: 16px 22px;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
    transition: background-color 0.2s ease;
}
.blogdatacontent tbody tr:nth-child(even) td {
    background-color: #fafafa;
}
.blogdatacontent tbody tr:last-child td {
    border-bottom: none;
}
.blogdatacontent tbody tr:hover td {
    background-color: #f0f5fc;
}
.blogdatacontent tbody tr td:first-child {
    font-weight: 600;
    color: #1c4587 !important;
    border-inline-start: 3px solid transparent;
    text-align: start;
}
.blogdatacontent tbody tr:hover td:first-child {
    border-inline-start-color: #e4ad40;
}
.blogdatacontent tbody tr td a {
    font-weight: 600;
}

/* Article / product content — responsive tweaks */
@media (max-width: 991.98px) {
    .blogdatacontent h2 { font-size: 20px !important; }
    .blogdatacontent h3 { font-size: 17px !important; }
    .blogdatacontent table { min-width: 460px; font-size: 15px; }
    .blogdatacontent thead th,
    .blogdatacontent tr:first-child th { padding: 12px 14px; font-size: 14px; }
    .blogdatacontent td { padding: 11px 14px; }
}
@media (max-width: 575.98px) {
    .blogdatacontent {
        font-size: 15px;
        line-height: 1.65;
    }
    .blogdatacontent h2 {
        font-size: 18px !important;
        margin-top: 16px;
        margin-bottom: 14px;
    }
    .blogdatacontent h3 {
        font-size: 16px !important;
        margin-top: 14px;
        margin-bottom: 12px;
    }
    .blogdatacontent p { font-size: 15px !important; }
    .blog-area .blog-dteails-content > .main-image,
    .blogdatacontent img,
    .service-details-page .portfolio-details-slider .image-container img {
        height: clamp(180px, 52vw, 260px);
        min-height: 180px;
        border-radius: 8px;
    }
    .service-details-page .portfolio-details-slider .image-container {
        height: clamp(180px, 52vw, 260px);
        min-height: 180px;
        border-radius: 8px;
    }
    .blogdatacontent img { margin: 16px auto; }
    .blogdatacontent .article-table-wrap {
        margin: 20px -4px;
        border-radius: 10px;
    }
    .blogdatacontent table { min-width: 420px; font-size: 14px; }
    .faq-section-title { font-size: 18px !important; }
    .faq-question { font-size: 14px; padding: 16px 44px 16px 20px; }
    .faq-answer { font-size: 13px; padding: 16px 20px 18px; }
    .blogdatacontent .article-table-wrap { padding: 10px; }
    .blogdatacontent thead th,
    .blogdatacontent tr:first-child th {
        padding: 12px 16px;
        font-size: 13px;
        white-space: normal;
    }
    .blogdatacontent td {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.toc-wrapper {
    background: #f9f9f9;
    border-inline-start: 4px solid #e4ad40;
    border-inline-end: 0;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 6px;
}
.toc-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1c4587;
}
#toc-list { list-style: none; padding-inline-start: 0; margin: 0; }
#toc-list li { margin-bottom: 8px; }
#toc-list li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}
#toc-list li a:hover {
    color: #e4ad40;
    text-decoration: underline;
}

/* ---------- Sidebar inquiry widget ----------
   Used on blog-details and product-details sidebars for the quick
   "Send message" form. Custom class (NOT .search-widget) so it doesn't
   inherit the theme's `position:absolute` button rule that turns every
   submit button into a 60px-wide vertical column. */
.blog-sidebar .widget.inquiry-widget {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    padding: 22px 20px;
    box-shadow: 0 2px 10px rgba(28, 69, 135, .04);
}
.blog-sidebar .widget.inquiry-widget .widget-title {
    color: #1c4587;
    font-size: 18px;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e4ad40;
}
.blog-sidebar .widget.inquiry-widget form {
    position: static;
}
.blog-sidebar .widget.inquiry-widget .input-group {
    position: relative;
    margin-top: 14px;
}
.blog-sidebar .widget.inquiry-widget .input-group input,
.blog-sidebar .widget.inquiry-widget .input-group textarea {
    width: 100%;
    background: #f7f9fc;
    border: 1px solid #e3e8f0;
    border-radius: 6px;
    padding-block: 12px;
    padding-inline: 14px 40px;
    font-size: 14px;
    color: #1f2937;
    height: auto;
    line-height: 1.4;
    text-align: start;
}
.blog-sidebar .widget.inquiry-widget .input-group textarea {
    min-height: 110px;
    resize: vertical;
}
.blog-sidebar .widget.inquiry-widget .input-group input:focus,
.blog-sidebar .widget.inquiry-widget .input-group textarea:focus {
    outline: none;
    border-color: #1c4587;
    background: #fff;
}
.blog-sidebar .widget.inquiry-widget .input-group .icon {
    position: absolute;
    inset-inline-end: 14px;
    top: 14px;
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
}
.blog-sidebar .widget.inquiry-widget .main-btn {
    position: static;
    width: 100%;
    height: auto;
    padding: 14px 20px;
    background: #1c4587;
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}
.blog-sidebar .widget.inquiry-widget .main-btn:hover {
    background: #e4ad40;
    color: #fff;
}

/* ---------- Contact-form selects (Category / Product) ----------
   The theme's `.input-group` ships with a default input style. Make
   <select> elements match so the cascading dropdown blends in. */
.contact-form .contact-select {
    width: 100%;
    padding-block: 14px;
    padding-inline: 20px 50px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    text-align: start;
    direction: inherit;
}
.contact-form .contact-select option {
    color: #1c4587;
    background: #fff;
}
.contact-form .contact-select:focus {
    outline: none;
    border-color: #e4ad40;
}

/* ---------- Pagination ---------- */
.pagination-wrapper {
    margin: 60px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-item { display: flex; }
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: #fff;
    color: #4a5568;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.page-link:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}
.page-item.active .page-link {
    background: var(--accent-color);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.nav-arrow .page-link {
    font-size: 12px;
    font-weight: 700;
}

/* ---------- Portfolio + Banner safety styles ---------- */
.portfolio-img {
    height: 350px;
    background-size: cover !important;
    background-position: center !important;
}
.item a { display: block; }
.owl-nav {
    text-align: center;
    margin-top: 25px;
}
.owl-prev, .owl-next {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #cba24a !important;
    color: #fff !important;
    margin: 0 5px;
}

.single-banner {
    position: relative;
    overflow: hidden;
}
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
.banner-text {
    position: relative;
    z-index: 10;
}

/* ============================================================
   Header (moved out of header.blade.php inline <style>).
   Keeping this in CSS instead of HTML saves ~3 KB per page and
   lets the browser cache the rules across navigations.
   ============================================================ */
.header-two .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
}
.header-two .navbar {
    padding: 0;
    min-height: 100px;
}
.header-two .navbar-brand {
    margin: 0;
}
.header-two .navbar-brand img {
    max-height: 75px;
}
.header-two .navbar-collapse {
    flex-grow: 0;
}
.header-two .navbar-nav {
    gap: 25px;
}
.header-two .navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 700;
    padding: 0 !important;
    transition: color .3s;
}
.header-two .navbar-nav .nav-link:hover,
.header-two .navbar-nav .nav-link.active {
    color: #C9A14A !important;
}
.header-two .social-icon a {
    color: #C9A14A;
    font-size: 18px;
}
.header-two .navbar-toggler {
    border: none;
    box-shadow: none !important;
}
.header-two .navbar-toggler-icon {
    background-image: none;
}
.header-two .navbar-toggler::before {
    content: "\2630";
    font-size: 28px;
    color: #000;
}

@media (max-width: 991px) {
    .header-two .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-two .navbar {
        min-height: auto;
        padding: 10px 0;
    }
    .header-two .navbar-brand img {
        max-height: 60px;
    }
    .header-two .navbar-nav {
        gap: 0;
        margin-top: 20px;
    }
    .header-two .navbar-nav .nav-item {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    .header-two .navbar-nav .nav-link {
        font-size: 16px;
    }
}

/* ============================================================
   Frontend page extras: gallery cards.
   ============================================================ */
.project-gallery .gallery-item {
    margin-bottom: 24px;
}
.project-gallery .item-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.project-gallery .content-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 12px 16px;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
    color: #fff;
}
.project-gallery .content-overlay .project-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* ============================================================
   Related Products grid (productDetails.blade.php).
   Always 3 cards in a row on desktop, 2 on tablet, 1 on phone.
   Replaced the old rel-grid / rel-cols-4 markup which lived inline
   inside the blade and produced cramped 4-up cards.
   ============================================================ */
.related-products-section {
    margin: 40px 0;
    font-family: "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.related-products-title {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #1c4587;
    line-height: 1.3;
}
.related-products-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 60px;
    height: 3px;
    background: #cba24a;
    border-radius: 2px;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
@media (max-width: 991.98px) {
    .related-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    .related-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.related-product-card {
    background: #fff;
    border: 1px solid #ecf0f5;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(15, 30, 70, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 30, 70, 0.10);
    border-color: #d9e4ff;
}
.related-product-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f7fb;
}
.related-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.related-product-card:hover .related-product-thumb img {
    transform: scale(1.06);
}
.related-product-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.related-product-tag {
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    font-weight: 600;
    color: #1c4587;
    background: #eef3ff;
    border: 1px solid #d9e4ff;
    padding: 3px 10px;
    border-radius: 999px;
}
.related-product-name {
    margin: 4px 0 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a202c;
}
.related-product-name a {
    display: inline !important;
    color: inherit !important;
    text-decoration: none;
    transition: color 0.2s ease;
}
.related-product-name a:hover {
    color: #cba24a !important;
}
.related-product-btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1c4587 !important;
    background: #f5f9ff;
    border: 1px solid #d9e4ff;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
[dir="rtl"] .related-product-btn {
    align-self: flex-end;
}
.related-product-btn:hover {
    background: #cba24a !important;
    border-color: #cba24a !important;
    color: #fff !important;
}
.related-product-btn i {
    transition: transform 0.2s ease;
    color: inherit !important;
}
.related-product-btn:hover i {
    transform: translateX(3px);
}
[dir="rtl"] .related-product-btn:hover i {
    transform: translateX(-3px);
}

/* ============================================================
   Bootstrap 5 pagination tweaks – Laravel renders <ul.pagination>
   already; we just match the theme palette and add a bit of polish.
   ============================================================ */
.pagination {
    --bs-pagination-color: #4a5568;
    --bs-pagination-bg: #fff;
    --bs-pagination-border-color: #e2e8f0;
    --bs-pagination-hover-color: #1c4587;
    --bs-pagination-hover-bg: #f7fafc;
    --bs-pagination-hover-border-color: #cbd5e0;
    --bs-pagination-focus-color: #1c4587;
    --bs-pagination-focus-bg: #f5f9ff;
    --bs-pagination-focus-box-shadow: 0 0 0 0.2rem rgba(203, 162, 74, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #cba24a;
    --bs-pagination-active-border-color: #cba24a;
    --bs-pagination-border-radius: 10px;
    gap: 6px;
    margin: 40px 0 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination .page-link {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--bs-pagination-border-radius) !important;
    transition: all 0.2s ease;
}
.pagination .page-link:hover {
    transform: translateY(-2px);
}
.pagination .page-item.disabled .page-link {
    opacity: 0.55;
}

/* ============================================================
   Accessibility helpers
   ============================================================ */
/* Screen-reader-only label utility — covers placeholder-only inputs
   so screen readers always have a name for the field. */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   Contrast fixes flagged by Lighthouse "Background and foreground
   colors do not have a sufficient contrast ratio".
   ============================================================ */
/* Top-bar language switcher: was Bootstrap's .text-dark (#212529) on
   white — fine. But the language anchor inherited a faded gray hover.
   Lock it to brand blue which has an 8:1 ratio (WCAG AAA). */
.header-topbar .language-change,
.header-topbar .language-change a.text-dark {
    color: #1c4587 !important;
}

/* Read-more buttons used brand gold #CAA656 on white = 2.5:1 contrast.
   Darken to #8a6f2c which gives 4.5:1 (WCAG AA Normal text). */
.read-more-btn {
    color: #8a6f2c !important;
    font-weight: 600;
}
.read-more-btn:hover {
    color: #1c4587 !important;
}

/* Post meta in cards: bump from light gray to #5a5a5a for ~7:1 ratio. */
.post-meta li,
.post-meta li span,
.post-meta li a {
    color: #5a5a5a !important;
}

/* Footer paragraphs / copyright on the dark overlay: enforce white so
   contrast against the tinted background is always >= AA. */
.footer-area p,
.footer-area li,
.footer-area a,
.footer-copyright p {
    color: #fff !important;
}
.footer-area .footer-overlay {
    background: rgba(0, 0, 0, 0.6);
}
