/* ===============================================
   TALBALAD | Modern Corporate UI Theme (2025)
   =============================================== */

/* ---- Global Typography & Layout ---- */
html {
    font-size: 15px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: #2a2a2a;
    background-color: #f9fafc;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* ---- Base Elements ---- */
a {
    transition: all 0.3s ease;
}

    a:hover {
        text-decoration: none;
    }

/* Focus Shadows - Unified */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(30, 144, 255, 0.4);
    outline: none;
}

/* ---- Footer Links ---- */
footer a:hover {
    color: #c5a24e !important;
    text-decoration: underline;
}

/* ---- Dropdowns ---- */
.dropdown-menu {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ---- Card Styling ---- */
.card {
    border: none;
    border-radius: 1rem;
    transition: all 0.35s ease-in-out;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .card p.fst-italic {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #444;
    }

/* ---- Carousel Controls ---- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* ---- Section Headings ---- */
h2.fw-bold.text-primary i {
    font-size: 1.4rem;
    color: #1e90ff;
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, #1e90ff, #005dd1);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.65rem 1.3rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(30, 144, 255, 0.2);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #167bd9, #0047b3);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(30, 144, 255, 0.35);
    }

/* Secondary buttons */
.btn-outline-primary {
    border: 2px solid #1e90ff;
    color: #1e90ff;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: #1e90ff;
        color: #fff;
    }

/* ---- Blog Cards ---- */
.blog-card {
    transition: all 0.35s ease;
    border-radius: 1rem;
    overflow: hidden;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .blog-card img {
        border-bottom: 4px solid #1e90ff;
    }

/* ---- Article Styling ---- */
article p {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 1rem;
}

article ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #444;
}

blockquote {
    border-left: 4px solid #1e90ff;
    padding-left: 1rem;
    background: #f8faff;
    border-radius: 6px;
}

/* ---- Blog Hero Images ---- */
.blog-hero-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease-in-out;
    display: block;
    margin: 0 auto;
}

    .blog-hero-img:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

/* ---- Accordion (FAQ / Collapse Panels) ---- */
.accordion-button {
    background-color: #f9fbff;
    transition: all 0.3s ease;
    padding: 1rem 1.25rem;
    font-weight: 500;
}

    .accordion-button:not(.collapsed) {
        color: #1e90ff;
        background-color: #eaf3ff;
        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

.accordion-body {
    background-color: #ffffff;
    border-top: 1px solid #e2e6ea;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 0.75rem 0.75rem;
}

.accordion-item + .accordion-item {
    margin-top: 0.6rem;
}

/* ---- Icons ---- */
.fa-circle-check {
    font-size: 1.1rem;
    color: #1e90ff;
}

/* ---- Utility Classes ---- */
.shadow-soft {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.text-gradient {
    background: linear-gradient(90deg, #1e90ff, #0047b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
}


.service-card {
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    }

    .service-card i {
        transition: transform 0.3s ease;
    }

    .service-card:hover i {
        transform: scale(1.15);
    }



.hover-card {
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
}

    .hover-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.card img {
    transition: all 0.3s ease-in-out;
}

.card:hover img {
    transform: scale(1.03);
}
