﻿/* =========================================================
   Tekmalia Unified Theme CSS (WebForms + Bootstrap 5)
   Premium Navy + Gold • AI + Finance
   ========================================================= */

:root {
    --navy: #1E3F73;
    --navy-dark: #0F2747;
    --gold: #C9A44A;
    --gold-dark: #B08A2F;
    --bg: #F6F8FB;
    --text: #0B1220;
    --muted: #5B677A;
    --border: #E6EAF0;
    --radius: 18px;
}

html, body {
    height: 100%;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--navy);
    text-decoration: none;
}

    a:hover {
        color: var(--navy-dark);
    }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.navbar-brand img {
    height: 44px;
}

/* Nav links + hover + active */
.navbar .nav-link {
    color: var(--text);
    font-weight: 600;
    padding: .6rem .85rem;
    border-radius: 999px;
    position: relative;
    transition: all .18s ease-in-out;
}

    .navbar .nav-link:hover {
        background: rgba(201,164,74,.22);
        color: var(--navy-dark);
    }

    .navbar .nav-link.active {
        background: rgba(201,164,74,.35);
        color: var(--navy-dark);
        font-weight: 700;
    }

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 8px;
        height: 2px;
        background: transparent;
        border-radius: 2px;
    }

    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        background: var(--gold);
    }

/* =========================================================
   TYPO + SECTIONS
   ========================================================= */
.section {
    padding: 70px 0;
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.kicker {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

.muted {
    color: var(--muted);
}

/* =========================================================
   CARDS
   ========================================================= */
.card-soft {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15,39,71,.06);
}

    .card-soft .card-body {
        padding: 22px;
    }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn, .btn-gold, .btn-outline-light-pill, .btn-outline-navy-pill, .btn-navy {
    transition: all .18s ease-in-out;
}

/* Gold primary CTA */
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #111;
    font-weight: 700;
    border-radius: 999px;
    padding: .8rem 1.1rem;
}

    .btn-gold:hover {
        background: var(--gold-dark);
        border-color: var(--gold-dark);
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(15,39,71,.22);
        color: #111;
    }

/* Outline pill for DARK backgrounds */
.btn-outline-light-pill {
    border-radius: 999px;
    padding: .8rem 1.1rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    background: transparent;
}

    .btn-outline-light-pill:hover {
        border-color: #fff;
        background: rgba(255,255,255,.10);
        color: #fff;
        transform: translateY(-1px);
    }

/* Outline pill for LIGHT backgrounds (fixes invisible WhatsApp) */
.btn-outline-navy-pill {
    border-radius: 999px;
    padding: .8rem 1.1rem;
    font-weight: 700;
    border: 1px solid rgba(15,39,71,.30);
    color: var(--navy-dark);
    background: transparent;
}

    .btn-outline-navy-pill:hover {
        border-color: var(--navy-dark);
        background: rgba(30,63,115,.06);
        color: var(--navy-dark);
        transform: translateY(-1px);
    }

/* Navy button (secondary action for cards) */
.btn-navy {
    background: var(--navy);
    border: 1px solid var(--navy);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: .75rem 1.05rem;
}

    .btn-navy:hover {
        background: var(--navy-dark);
        border-color: var(--navy-dark);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(15,39,71,.18);
    }

/* =========================================================
   HOME HERO (DARK)
   ========================================================= */
.hero {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(201,164,74,.18), transparent 60%), linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
    padding-bottom: 40px; /* helps badges not sink into gradient edge */
}

    .hero h1 {
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .hero p {
        color: rgba(255,255,255,.85);
        font-size: 1.1rem;
    }

    /* Ensure hero cards remain readable */
    .hero .card-soft,
    .hero .card-soft * {
        color: var(--text) !important;
    }

    .hero .card-soft {
        background: rgba(255,255,255,.96);
        border: 1px solid rgba(255,255,255,.55);
    }

/* =========================================================
   BADGES (capability chips)
   ========================================================= */
.badge-soft {
    display: inline-block;
    background: rgba(30,63,115,.08);
    border: 1px solid rgba(30,63,115,.12);
    color: var(--navy-dark);
    padding: .35rem .6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
}

/* Badges on dark hero */
.hero .badge-soft {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.hero .badge-container {
    margin-top: 22px;
    position: relative;
    z-index: 5;
}

/* =========================================================
   AI SOLUTIONS PAGE HERO (LIGHT / “page-hero” container)
   ========================================================= */
.page-hero {
    background: radial-gradient(1200px 600px at 20% 10%, rgba(201,164,74,.10), transparent 60%), linear-gradient(180deg, rgba(15,39,71,.02), rgba(15,39,71,.00));
    border-radius: 34px;
}

/* =========================================================
   CTA BAND (DARK)
   ========================================================= */
.cta-band {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 28px;
    color: #fff;
}

    .cta-band .btn-outline-light-pill {
        color: #fff !important;
        border-color: rgba(255,255,255,.55) !important;
    }

/* =========================================================
   LIST CHECK (for offer cards)
   ========================================================= */
.list-check {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .list-check li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        color: var(--muted);
    }

        .list-check li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-dark);
            font-weight: 900;
        }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    border-top: 1px solid var(--border);
    background: #fff;
}

footer a i {
    font-size: 1.1rem;
    color: var(--navy-dark);
}

footer a:hover i {
    color: var(--gold-dark);
}

/* ===== Page sections & FAQ ===== */
.faq .accordion-button {
    font-weight: 700;
}

    .faq .accordion-button:not(.collapsed) {
        color: var(--navy-dark);
    }

.faq .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

    .faq .accordion-item + .accordion-item {
        margin-top: 12px;
    }

.faq .accordion-body {
    color: var(--muted);
}

.pricing-card .price {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 2rem;
    color: var(--navy-dark);
}

.small-note {
    color: var(--muted);
    font-size: .9rem;
}

/* Product cards */
.product-badge {
    display: inline-block;
    background: rgba(201,164,74,.14);
    border: 1px solid rgba(201,164,74,.22);
    color: var(--navy-dark);
    font-weight: 800;
    border-radius: 999px;
    padding: .35rem .65rem;
    font-size: .8rem;
}

.tile-video {
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .tile-video:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(16,24,40,.10);
    }

.tile-watch {
    font-weight: 800;
    color: var(--gold);
    opacity: .95;
}

.tile-video:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(201,164,74,.18);
}
/*New Code Added On 12-01-2026 as on 9:20 AM added  as follows */
 
.mini-box {
    border: 1px solid #e6edf7;
    background: #fff;
    border-radius: 16px;
    padding: 14px 14px;
}
 


/* Additionally Styling for promo of UAE-E-Invocing */
.bg-soft {
    background: #f7f9fc;
}

 


/* =========================================================
   STICKY FOOTER LAYOUT
   ========================================================= */
/*html, body {
    height: 100%;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

/* =========================================================
   PREMIUM FOOTER (Aligned + Clean)
   ========================================================= *
.site-footer {
    border-top: 1px solid rgba(16,24,40,.08);
    padding: 22px 0;
    background: #fff;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 2px;
}

.footer-sub {
    font-size: 13px;
    color: rgba(16,24,40,.65);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: 14px;
        color: var(--navy-dark);
        text-decoration: none;
        opacity: .9;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-ico {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(16,24,40,.12);
    color: var(--navy-dark);
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease;
}

    .social-ico i {
        font-size: 1.05rem;
    }

    .social-ico:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(16,24,40,.10);
        color: var(--gold-dark);
    }

.footer-copy {
    font-size: 13px;
    color: rgba(16,24,40,.55);
    margin-left: 6px;
}

@media(max-width: 768px) {
    .footer-right {
        justify-content: flex-start;
    }
}
*/

/* Sticky footer layout *
.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

/* Premium footer *
.site-footer {
    border-top: 1px solid rgba(16,24,40,.08);
    padding: 22px 0;
    background: #fff;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    font-weight: 900;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 2px;
}

.footer-sub {
    font-size: 13px;
    color: rgba(16,24,40,.65);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: 14px;
        color: var(--navy-dark);
        text-decoration: none;
        opacity: .9;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-ico {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(16,24,40,.12);
    color: var(--navy-dark);
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease;
}

    .social-ico i {
        font-size: 1.05rem;
    }

    .social-ico:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(16,24,40,.10);
        color: var(--gold-dark);
    }

.footer-copy {
    font-size: 13px;
    color: rgba(16,24,40,.55);
    margin-left: 6px;
}

@media(max-width: 768px) {
    .footer-right {
        justify-content: flex-start;
    }
}*/

/* =========================
   Footer (Tekmalia new layout)
   ========================= */

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1 0 auto;
}

/* Footer container */
.site-footer {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 26px 0;
}

    /* Row layout */
    .site-footer .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 24px;
        flex-wrap: wrap;
    }

    /* Left */
    .site-footer .footer-left {
        min-width: 260px;
    }

    .site-footer .footer-brand {
        font-weight: 800;
        font-size: 18px;
        margin-bottom: 6px;
        color: #0b1220;
    }

    .site-footer .footer-sub {
        font-size: 14px;
        color: rgba(11,18,32,0.68);
    }

    /* Right */
    .site-footer .footer-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        flex-wrap: wrap;
    }

    /* Footer links */
    .site-footer .footer-links {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

        .site-footer .footer-links a {
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            color: #0b1220;
            opacity: 0.92;
        }

            .site-footer .footer-links a:hover {
                opacity: 1;
                text-decoration: underline;
            }

    /* Social icons */
    .site-footer .footer-social {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .site-footer .social-ico {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0,0,0,0.14);
        color: #0b1220;
        text-decoration: none;
        transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }

        .site-footer .social-ico:hover {
            background: rgba(197, 157, 73, 0.12); /* Tekmalia gold tint */
            transform: translateY(-1px);
            box-shadow: 0 10px 22px rgba(0,0,0,0.10);
        }

    /* Copyright */
    .site-footer .footer-copy {
        margin-left: 8px;
        font-size: 13px;
        color: rgba(11,18,32,0.62);
        white-space: nowrap;
    }

/* Mobile */
@media (max-width: 768px) {
    .site-footer .footer-row {
        align-items: flex-start;
    }

    .site-footer .footer-right {
        justify-content: flex-start;
    }

    .site-footer .footer-copy {
        width: 100%;
        margin-left: 0;
    }
}


