:root {
    /* ------------ FONT FAMILY ------------ */
    --font-family-base: "Inter", sans-serif;

    /* ------------ FONT SIZES ------------ */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-lg: 1.125rem;
    /* 18px */
    --fs-xl: 1.25rem;
    /* 20px */
    --fs-2xl: 1.5rem;
    /* 24px */
    --fs-3xl: 2rem;
    /* 32px */
    --fs-4xl: 2.5rem;
    /* 40px */
    --fs-hero: clamp(32px, 5vw, 48px);
    /* Auto responsive */

    /* ------------ FONT WEIGHTS ------------ */
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* ------------ TEXT COLORS ------------ */
    --text-dark: #111827;
    /* Almost black */
    --text-base: #1f2937;
    /* Soft dark gray */
    --text-muted: #6b7280;
    /* Gray */
    --text-light: #ffffff;

    /* ------------ BRAND & THEME COLORS ------------ */
    --primary: #2563eb;
    /* Blue */
    --primary-dark: #1d4ed8;

    --secondary: #475569;
    /* Slate */
    --success: #16a34a;
    /* Green */
    --danger: #dc2626;
    /* Red */
    --warning: #f59e0b;
    /* Orange */
    --info: #0ea5e9;
    /* Sky Blue */

    /* ------------ BACKGROUND COLORS ------------ */
    --bg-body: #fafafa;
    /* Light background */
    --bg-white: #ffffff;
    --bg-light: #f1f5f9;
    /* Light gray */
    --bg-dark: #1f2937;

    /* ------------ BORDERS ------------ */
    --border-light: #e5e7eb;
    --border-dark: #94a3b8;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* ------------ SHADOWS ------------ */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* ------------ SPACING ------------ */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
}


body {
    font-family: "Inter", sans-serif;
    background: #fafafa;
    color: #111827;
}




.breadcrumb-item+.breadcrumb-item::before {

    /*content: var(--bs-breadcrumb-divider, ">")!important;*/
    display: none !important;

}


.fs-xs {
    font-size: var(--fs-xs);
}

.fs-sm {
    font-size: var(--fs-sm);
}

.fs-base {
    font-size: var(--fs-base);
}

.fs-lg {
    font-size: var(--fs-lg) !important;
}

.fs-xl {
    font-size: var(--fs-xl);
}

.fs-2xl {
    font-size: var(--fs-2xl);
}

.fs-3xl {
    font-size: var(--fs-3xl);
}

.fs-4xl {
    font-size: var(--fs-4xl);
}

.fs-30 {
    font-size: 30px;
}

.fs-hero {
    font-size: var(--fs-hero);
}

.container {
    max-width: 1536px;
}

.max-w-650 {
    max-width: 650px !important;
}

.main-btn-bg {

    background-color: #2563eb !important;
}


.logo {
    width: 15%;
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563eb;
    color: white;
    margin-right: .5rem;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: var(--fs-sm);
    color: rgb(30, 41, 59);
    padding-left: 10px;
}

.navbar-nav .nav-link.active {
    font-weight: 600;
    color: white;
    background-color: #2563eb;
    border-radius: 10px;
}

.sign-up-btn {
    background: white;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
}

.sign-up-btn:hover {
    background: #0EA5E9;
    color: white !important;
    text-decoration: none;
}

/* Slight card look for stat boxes */
.stat-card {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    /* width: 282px; */
    margin: 12px;
    border: 1px solid #E2E8F0;
}

.stat-number {
    font-weight: 700;
    font-size: 30px;
}

.stat-label {
    color: var(--muted);
    font-size: .9rem;
}


/* keep look clean */
.lang-flag {
    font-weight: 600;
    margin-right: .5rem;
    min-width: 28px;
    display: inline-block;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        margin-left: 100px;
    }
}






/* Search / filter panel */
.filter-panel {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 18px;
    margin-top: 24px;
}

.filter-panel .form-control {

    background-color: #fafafa !important;
    border: 0 !important;

}

.shadow-sm {
    --tw-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --tw-shadow-colored: 0 1px 3px var(--tw-shadow-color);
    box-shadow:
        var(--tw-ring-offset-shadow, 0 0 #0000),
        var(--tw-ring-shadow, 0 0 #0000),
        var(--tw-shadow) !important;
}

.search-input {
    height: 40px;
}

.filter-row .form-select,
.filter-row .form-control {
    height: 40px;
    font-size: 14px;
    border: 0;
    color: slategrey;
}

.filter-meta {
    color: var(--muted);
    font-size: .95rem;
}

/* Featured heading */
.section-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.section-sub {
    color: var(--muted);
    margin-top: .25rem;
    margin-bottom: 1rem;
}

/* Card */
/* Card Hover Effect */
.biz-card {
    border-radius: 6px !important;
    overflow: hidden;
    background: #fff;
    display: flex;
    /* flex-direction: column; */
    height: 100%;
    transition: all 0.3s ease;
    /* smooth hover */
}

/* Tailwind style shadow on hover */
.biz-card:hover {
    --tw-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);

    /* optional lift-up */
}

/* Image Zoom Effect */
.biz-card .card-media {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .5s ease;
    /* smooth zoom */
}

/* Image zoom on hover */
.biz-card:hover .card-media {
    transform: scale(1.08);
}

.badge-featured {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #0ea5e9;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}

.badge-right {
    position: absolute;
    right: 12px;
    top: 12px;
    background: #059669;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    gap: .4rem;
    align-items: center;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}

.verify-icon {
    position: absolute;
    right: 12px;
    top: 12px;
    background: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2, 6, 23, 0.06);
    color: var(--accent);
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
}

.biz-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.biz-avatar {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(2, 6, 23, 0.06);
    flex-shrink: 0;
}

.biz-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.biz-sub {
    color: var(--muted);
    font-size: .9rem;
    display: none;
}

.biz-desc {
    color: #334155;
    font-size: .95rem;
    line-height: 1.35;
}

.biz-stats {
    color: var(--muted);
    font-size: .9rem;
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.rating {
    color: #f59e0b;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.btn-view {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
}

.btn-chat {
    border: 1px solid green;
    color: green;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff;
}

/* small screens adjustments */
@media (max-width: 575.98px) {


    .biz-avatar {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
}


/* Recent Approved section  */



.recently-approved {
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

.recently-approved__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.recently-approved__title {
    font-size: 1.35rem;
    font-weight: 700;
}

.recently-approved__subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 4px;
}

/* ==== CARD ===== */

.ra-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.ra-card {
    overflow: hidden;
    border-radius: 12px;
}

.ra-card__media {
    transition: transform .5s ease;
}

.ra-card:hover {
    --tw-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
}

.ra-card:hover .ra-card__media {
    transform: scale(1.05);
}

.ra-card__media {
    height: 192px;
    background-size: cover;
    background-position: center;
    position: relative;
}


.tags {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tags span {
    background-color: #F1F5F9;
    width: fit-content;
    padding: 8px;
    color: #64748B;
    border-radius: 29px;
    font-size: 12px;
    margin-bottom: 10px;
}

.btn-bg-green {
    background-color: #16a34a !important;
    color: white !important;
}

.ra-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ra-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.ra-card__profile {
    display: flex;
    gap: 12px;
}

.ra-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
}

.ra-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ra-card__info-title {
    font-weight: 700;
    font-size: 1rem;
}

.ra-card__info-cat {

    color: #6b7280;
    display: none;

}

.ra-card__location {

    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.ra-card__desc {

    color: #334155;
    line-height: 1.35;
}

.ra-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ra-card__rating {
    color: #f59e0b;
    font-weight: 600;
    display: flex;
    gap: 6px;
    align-items: center;
}

.ra-card__time {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.ra-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-ra-view {
    background: #2563eb;
    color: #fff;
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.btn-ra-chat {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #d1fae5;
    border-radius: 8px;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}






/* Recent Approved section  */

/*Profile page */

.profileimg {

    width: 126px !important;
}

.gallery-item {
    cursor: pointer;
}

.gallery-item {
    position: relative;
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 8px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-hover {
    pointer-events: none;
}


.gallery-item:hover .gallery-hover {
    opacity: 1;
}


.icolor {
    color: #2563EB !important;
}

.breadcrumb-item a {
    text-decoration: none;
}

.shadow-soft {
    --tw-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 1px 3px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}




.info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #e3e3e3;
}

.info-row {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
}

.info-row i {
    font-size: 20px;
    color: #0d6efd;
    margin-right: 8px;
}

.info-row span {
    font-weight: 500;
}

.info-action-btn {
    background: #eef3ff;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    color: #0d6efd;
}

.wa-box {
    background: #e7ffe7;
    border: 1px solid #c9f5c9 !important;
}

.wa-btn {
    background: #00b152 !important;
    color: white;
    font-size: 14px;
    border-radius: 8px;
}

.business-box {
    background: #fff7ee;
    border: 1px solid #f3d7b6;
    border-radius: 10px;
    padding: 15px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
}



/* Card base */
.card.custom-card {
    border-radius: 10px;
    border: 1px solid #e9eef3;
    box-shadow: none;
}

/* Share buttons row */
.share-btn {
    border-radius: 8px;
    padding: 6px 5px;
    font-weight: 600;
    font-size: 14px;
    width: 22%;
    border: none;
    min-width: unset;
    box-shadow: none;
}

.share-row .btn {
    margin-right: 8px;
}

/* Colors similar to image */
.btn-facebook {
    background: #2563eb;
    color: #fff;
}

.btn-twitter {
    background: #0ea5e9;
    color: #fff;
}

.btn-linkedin {
    background: #1e40af;
    color: #fff;
}

.btn-wa-green {
    background: #16a34a;
    color: #fff;
}

/* URL input group */
.url-group .form-control {
    border-radius: 8px 0 0 8px;
    border-right: 0;
}

.url-group .btn.copy-btn {
    border-radius: 0 8px 8px 0;
    border-left: 0;
    background: #eef3ff;
    color: #0d6efd;
}

/* Share CTA */
.share-cta {
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
}

/* small helper text */

/* Location card address box */
.address-box {
    background: #f1f6fb;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e6eef8;
    font-size: 0.95rem;
}

/* Map area */
.map-wrap {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9eef3;
    height: 260px;
    background: #fff;
}

/* Responsive tweaks */
@media (max-width:576px) {
    .share-row .btn {
        margin-bottom: 8px;
        width: 48%;
    }

    .share-row .btn:nth-child(odd) {
        margin-right: 4%;
    }
}


/* Card base (consistent with earlier cards) */
.card.custom-card {
    border-radius: 10px;
    border: 1px solid #e9eef3;
    box-shadow: none;
}

.section-title {
    font-weight: 600;
}

/* Video placeholder */
.video-box {
    background: #f5f7fa;
    border-radius: 8px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9eef3;
    position: relative;
    overflow: hidden;
}

/* Load button (center) */
.load-btn {
    background: #1774ff;
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(13, 110, 253, 0.12);
}

/* Video caption area */
.video-caption {
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
}

/* Podcast box */
.podcast-box {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Podcast icon square */
.podcast-icon {
    min-width: 48px;
    min-height: 48px;
    background: #6f42c1;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Podcast listen btn */
.podcast-btn {
    border-radius: 8px;
    border: 1px solid #e6e9ef;
    padding: 8px 12px;
    background: #fff;
    color: #333;
}

/* Social media row */
.social-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-card {
    flex: 1 1 120px;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    min-width: 120px;
}

.text-justify {
    text-align: justify;
}




/* Main container */

.info-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fbff;
    border: 1px solid #e3eaf3;
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 15px;
    gap: 14px;
}


.icon-box {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 60, 200, 0.08);
}

.icon-box i {
    font-size: 20px;
    color: white;
}

/* PHONE (Blue gradient) */
.icon-phone {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

/* EMAIL (Light sky blue) */
.icon-email {
    background: linear-gradient(180deg, #38bdf8, #0ea5e9);
}

/* ADDRESS (Gray / Neutral gradient) */
.icon-address {
    background: linear-gradient(180deg, #94a3b8, #64748b);
}

/* WEBSITE (Green gradient) */
.icon-website {
    background: linear-gradient(180deg, #22c55e, #16a34a);
}

/* Middle section */
.left {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    /* 🔥 VERY IMPORTANT for flex overflow fix */
}

.value {
    word-break: break-all;
    /* email ko tod dega */
    overflow-wrap: anywhere;
    /* long email safe */
}

/* Small label (Phone, Email etc) */
.label {
    font-size: 13px;
    color: #6d7b88;
}

/* Value (actual number/email) */
.value {
    font-size: 15px;
    font-weight: 600;
    color: #1c2d3f;
}

/* Right side button */
.info-btn {
    background: #f0f5ff;
    border: 1px solid #d9e4ff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
    color: #0b62ff;
    font-weight: 600;
    white-space: nowrap;
    /* button ek line me rahe */
    cursor: pointer;
    flex-shrink: 0;
    /* 🔥 button kabhi shrink ya bahar nahi jayega */
}

.info-btn:hover {
    background: #e4edff;
}

/* ---------- Business Hours card (matches screenshot) ---------- */
.card.business-hours {
    border-radius: 10px;
    background: #f6f9fb;
    /* pale card background */
    border: 1px solid rgba(33, 37, 41, 0.04);
    padding: 16px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

/* Header row with icon + title */
.card.business-hours .header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* Clock icon box (orange) */
.card.business-hours .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f59e0b, #d97706);
    box-shadow: 0 4px 10px rgba(217, 115, 6, 0.12);
    flex-shrink: 0;
}

.card.business-hours .icon-box i {
    font-size: 18px;
    color: #fff;
}

/* Title and small status under it */
.card.business-hours h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #21313a;
    line-height: 1;
}

.card.business-hours .status {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    /* bold "Currently Open" */
    color: #2b3b44;
}

/* Time list container */
.card.business-hours .mt-2.small {
    background: transparent;
    padding: 6px 2px 0 0;
}

/* each day/time row */
.card.business-hours .mt-2.small .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 4px;
}

/* left day name */
.card.business-hours .mt-2.small .d-flex span:first-child {
    color: #6b7a81;
    font-size: 14px;
    min-width: 120px;
    /* keeps alignment */
}

/* right time value */
.card.business-hours .mt-2.small .d-flex span:last-child {
    color: #1c2d3f;
    font-weight: 600;
    font-size: 14px;
    text-align: start;
}

/* last small tweak: closed day slightly muted */
.card.business-hours .mt-2.small .d-flex.closed span:last-child {
    color: #9aa6ae;
    font-weight: 600;
}


/* Card styling */
.share-card {
    border-radius: 12px;
    border: 1px solid #e8edf3;
    background: #ffffff;
}

/* Title row */
.share-card h5 i {
    font-size: 18px;
    margin-right: 6px;
    color: #4a5568;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    gap: 10px;
    margin: 14px 0;
}

.social-buttons .btn {
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
}

/* Facebook */
.social-buttons .fb {
    background: #1877F2;
}

/* Twitter */
.social-buttons .tw {
    background: #1DA1F2;
}

/* LinkedIn */
.social-buttons .li {
    background: #0A66C2;
}

/* WhatsApp */
.social-buttons .wa {
    background: #25D366;
}

/* Link Box */
.share-link-box {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-icon {
    padding: 6px 10px;
    font-size: 18px;
    color: #475569;
}

.share-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
}

.share-input:focus {
    outline: none;
    box-shadow: none;
}

/* Copy Button */
.copy-btn {
    background: #ffffff;
    border: 1px solid #d1d9e6;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
}

/* Share Button */
.share-btn {
    background: #2563eb;
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* Bottom small text */
.share-help-text {
    font-size: 13px;
    margin-top: 12px;
    color: #6b7b88;
    text-align: center;
    border-top: 1px solid #e6e9f0;
    padding-top: 12px;
}

/* ---------- Location card (screenshot match) ---------- */
.location-card {
    border-radius: 10px;
    border: 1px solid rgba(33, 37, 41, 0.06);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

/* Header: icon + title */
.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f3240;
}

/* Orange circular icon -- matches other cards style */
.location-header .loc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f59e0b, #d97706);
    box-shadow: 0 6px 14px rgba(217, 115, 6, 0.10);
    flex-shrink: 0;
}

.location-header .loc-icon i {
    color: #fff;
    font-size: 18px;
}

/* Address pale box */
.address-box {
    background: #eef6fb;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 10px;
    border: 1px solid #e6eef6;
}

.address-box .label {
    font-size: 13px;
    color: #6b7a88;
    margin-bottom: 6px;
}

.address-box .address-value {
    font-size: 14px;
    color: #1c2d3f;
    font-weight: 600;
    line-height: 1.4;
}

/* Map wrapper */
.map-wrap {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    /* rounds iframe corners */
    border: 1px solid #e6eef6;
    box-shadow: 0 4px 14px rgba(31, 45, 60, 0.04);
}

/* Make the iframe responsive and full width/height of container */
.map-wrap iframe {
    display: block;
    width: 100%;
    height: 260px;
    /* same as screenshot; change if needed */
    border: 0;
}

/* Get Directions button style */
.btn-get-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
    text-decoration: none;
}

.btn-get-directions i {
    font-size: 16px;
}

/* Hover */
.btn-get-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.20);
    text-decoration: none;
    color: #fff;
}



/* Main card */


/* container & control */
.logo-scroller-controls {
    text-align: right;
    margin-bottom: 8px;
}

.scroller-btn {
    border: none;
    background: #f2f2f2;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* viewport hides overflow */
.scroller-viewport {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 8px;
    background: #fff;
    padding: 8px 0;
}

/* track holds items twice (we'll duplicate with JS) */
.scroller-track {
    display: flex;
    align-items: center;
    gap: 18px;
    /* animation will be injected / configured by JS */
    will-change: transform;
}

/* each item */
.logo-item {
    flex: 0 0 calc(100% / 6 - 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    box-sizing: border-box;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    padding: 8px;
    transition: transform .25s ease;
}

.logo-item img:hover {
    transform: scale(1.05);
}

/* responsive adjustments */
@media (max-width: 1200px) {
    .logo-item {
        flex: 0 0 calc(100% / 5 - 18px);
    }
}

@media (max-width: 900px) {
    .logo-item {
        flex: 0 0 calc(100% / 4 - 18px);
    }
}

@media (max-width: 700px) {
    .logo-item {
        flex: 0 0 calc(100% / 3 - 18px);
    }
}

@media (max-width: 480px) {
    .logo-item {
        flex: 0 0 calc(100% / 2 - 18px);
    }
}

/* pause class toggles animation-play-state */
.scroller-track.paused {
    animation-play-state: paused !important;
    cursor: default;
}

/* a tiny accessibility focus style */
.scroller-viewport:focus {
    outline: 2px solid rgba(0, 123, 255, .25);
}

.podcast-card {
    border-radius: 12px;
    border: 1px solid #e7edf4;
    background: #f7f9fc;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

/* Header row */
.podcast-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon box */
.podcast-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(180deg, #a855f7, #9333ea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
}

/* Text section */
.podcast-text .title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1f2d3d;
}

.podcast-text .subtitle {
    font-size: 14px;
    color: #5b6876;
    margin-top: 2px;
}

/* Audio Player */
.podcast-audio {
    border-radius: 8px;
    outline: none;
}

/* Card */
.social-card {
    border-radius: 10px;
    border: 1px solid rgba(33, 37, 41, 0.06);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

/* Title */
.social-card .card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #21313a;
}

.social-card .card-title i {
    margin-right: 8px;
    color: #4b5563;
}

/* Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* try to show 5 like screenshot */
    gap: 14px;
    align-items: stretch;
}

/* Tile base */
.social-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 10px;
    border-radius: 8px;
    color: #081126;
    text-decoration: none;
    min-height: 70px;
    transition: transform .12s ease, box-shadow .12s ease;
    box-shadow: inset 0 -8px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Icon */
.social-tile .social-icon {
    font-size: 20px;
    opacity: 0.95;
}

/* Label */
.social-tile .social-label {
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    color: white;
}

/* Hover */
.social-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(12, 24, 48, 0.08);
}

/* Platform colors (use gradients where appropriate) */
.social-linkedin {
    background: linear-gradient(180deg, #2563eb, #1e40af);
    color: #ffffff;
}

.social-twitter {
    background: linear-gradient(180deg, #1da1f2, #0ea5e9);
    color: #ffffff;
}

.social-facebook {
    background: linear-gradient(180deg, #1858f2, #0b49d6);
    color: #ffffff;
}

.social-instagram {
    background: linear-gradient(180deg, #e11d74, #c026d3);
    color: #ffffff;
}

.social-youtube {
    background: linear-gradient(180deg, #ff3b30, #d32f2f);
    color: #ffffff;
}

.social-tiktok {
    background: linear-gradient(180deg, #111827, #0f172a);
    color: #ffffff;
}

.social-podcast {
    background: linear-gradient(180deg, #7c3aed, #6d28d9);
    color: #ffffff;
}

.social-blog {
    background: linear-gradient(180deg, #06b6d4, #0891b2);
    color: #ffffff;
}

/* Make icons a little lighter on dark tiles */
.social-linkedin .social-icon,
.social-twitter .social-icon,
.social-facebook .social-icon,
.social-instagram .social-icon,
.social-youtube .social-icon,
.social-tiktok .social-icon,
.social-podcast .social-icon,
.social-blog .social-icon {
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 1200px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .social-tile {
        padding: 14px 8px;
        min-height: 64px;
    }
}


/* Case Study Files — enhanced list style */
.card.case-files {
    border-radius: 10px;
    border: 1px solid rgba(33, 37, 41, 0.06);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.03);
}

/* heading */
.card.case-files h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #22313a;
}

/* list reset */
.card.case-files .file-list {
    margin: 0;
    padding: 0;
}

/* each file row */
.card.case-files .file-item {
    padding: 10px;
    border-radius: 8px;
    transition: background .15s ease, transform .08s ease;
    display: block;
    margin-bottom: 8px;
}

/* clickable anchor fills the row */
.card.case-files .file-item .file-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

/* left meta */
.card.case-files .file-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* icon box */
.card.case-files .file-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eef6ff, #e1efff);
    color: #0b62ff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(11, 98, 255, 0.06);
}

/* filename */
.card.case-files .file-name {
    font-size: 14px;
    font-weight: 600;
    color: #11222b;
    line-height: 1.2;
    word-break: break-all;
}

/* right actions: extension badge + download button */
.card.case-files .file-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* extension pill */
.card.case-files .file-ext {
    background: #f1f5f9;
    color: #334155;
    padding: 6px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

/* download button small */
.card.case-files .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: #fff;
    color: #27323a;
    cursor: pointer;
}

.card.case-files .download-btn i {
    font-size: 14px;
}

/* hover state */
.card.case-files .file-item:hover {
    background: rgba(37, 99, 235, 0.04);
    transform: translateY(-2px);
}

/* last item spacing */
.card.case-files .file-item:last-child {
    margin-bottom: 0;
}

/* responsive Media Querry MOBILE */
@media (max-width: 575px) {



    .recently-approved__header {
        flex-direction: column;
        gap: 8px;
    }

    .card.business-hours {
        padding: 12px;
    }

    .card.business-hours .icon-box {
        width: 40px;
        height: 40px;
    }

    .card.business-hours .mt-2.small .d-flex {
        padding: 6px;
    }

    .card.business-hours .mt-2.small .d-flex span:first-child {
        min-width: 95px;
        font-size: 13px;
    }

    .card.business-hours .mt-2.small .d-flex span:last-child {
        font-size: 13px;
    }

    .map-wrap iframe {
        height: 220px;
    }

    .address-box .address-value {
        font-size: 13px;
    }

    .location-header .loc-icon {
        width: 38px;
        height: 38px;
    }

    .card.case-files .file-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .card.case-files .file-name {
        font-size: 13px;
    }

    .card.case-files .file-ext {
        padding: 5px 6px;
        font-size: 11px;
    }
}


/* Custom Styles to Match the Screenshot */
/* ============ Your Original Styles (kept) ============ */
.from-box {
    margin-right: 15%;
    margin-left: 15%;
}

/* --- Progress Bar Styling --- */
.progress-container {
    padding: 20px 0;
    position: relative;
}

/* Base style for each step's container */
.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Styling for the icon circle itself */
.step-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #495057;
    cursor: pointer;
}

/* Styling for the step title/description text */
.step-text {
    font-size: 14px;
    color: #495057;
    transition: color 0.3s ease;
    line-height: 1.2;
}

/* Connecting Line (The default gray line) */
.progress-container::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #dee2e6;
    z-index: 5;
}

/* Line to denote completed status (the green line up to the active step) */
.progress-line-filled {
    height: 1px;
    background-color: #28a745;
    position: absolute;
    top: 45px;
    left: 0;
    width: 0%;
    z-index: 6;
    transition: width 0.3s ease;
}

/* --- Step Status Styles --- */
.step-container.completed .step-icon-circle {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.step-container.active .step-icon-circle {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.step-container.active .step-text {
    color: #0d6efd;
    font-weight: 600;
}

.step-container:hover .step-icon-circle {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.multi-step-form>div[data-step]:not([data-step="0"]):not([data-step="1"]) {
    display: none;
}

.form-progress-bar {
    background: #f1f5f9;
    padding: 15px;
}

/* ============ MOBILE OVERRIDES (max-width: 767.98px) ============ */
@media (max-width: 767.98px) {

    /* hide the full horizontal step row on mobile (we'll show a compact card) */
    .progress-container .row.gx-0.text-center {
        display: none;
    }

    /* place a little padding so elements breathe */
    .progress-container {
        padding: 12px 12px 8px 12px;
    }

    /* mobile header with step count and percentage */
    .mobile-progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .mobile-progress-header .step-count {
        font-weight: 600;
        color: #0f1724;
    }

    .mobile-progress-header .step-percent {
        color: #6b7280;
        font-size: 13px;
    }

    /* slim progress wrapper (we will use the existing .progress-line-filled inside this) */
    .progress-line {
        width: 100%;
        height: 6px;
        background: #eef2f7;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 12px;
        position: relative;
    }

    .progress-line .progress-line-filled {
        height: 100%;
        background: linear-gradient(90deg, #2f80ed, #155de0);
        border-radius: 6px;
        width: 0%;
        transition: width .4s ease;
        position: relative;
        left: 0;
        top: 0;
    }

    /* Mobile step card showing active step */
    .mobile-step-card {
        display: flex;
        gap: 12px;
        align-items: center;
        background: #fff;
        border: 1px solid #e6eef8;
        padding: 12px;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(20, 40, 70, 0.04);
    }

    .mobile-step-card .step-icon-circle {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #dfeeff, #cfe0ff);
        color: #1853c9;
        font-size: 20px;
        flex: 0 0 46px;
        border: 1px solid rgba(21, 61, 150, 0.06);
    }

    .mobile-step-card .step-text {
        text-align: left;
        line-height: 1.05;
    }

    .mobile-step-card .step-text strong {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: #0f1724;
    }

    .mobile-step-card .step-text small {
        display: block;
        color: #6b7280;
        font-size: 13px;
        margin-top: 3px;
        font-weight: 500;
    }

    /* bottom progress summary adjustments */
    .form-progress-bar {
        margin-top: 10px;
        font-size: 13px;
        color: #6b7280;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
}

/*Profile page */

/*Static Pages Css */

/* =Jumbotron Main
-------------------------------------------------------------- */
.jumbotron.jumbotron-main {
    height: 100%;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    margin: 0;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background: #6819e8;
    /* Old browsers */
    background: -moz-linear-gradient(left, #6819e8 0%, #7437d0 35%, #615fde 68%, #6980f2 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #6819e8 0%, #7437d0 35%, #615fde 68%, #6980f2 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #0d6efd 0%, #0d6efd 35%, #0d6efd 68% 68%, #6980f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6819e8', endColorstr='#6980f2', GradientType=1);
    /* IE6-9 */
}

.jumbotron.jumbotron-main hr {
    border-width: 1px 0px;
    border-style: dotted none;
    border-color: rgba(255, 255, 255, 0.35);
    -moz-border-top-colors: none;
    -moz-border-right-colors: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    border-image: none;
    width: 49px;
    height: 4px;
    text-align: center;
    position: relative;
    clear: both;
}

.jumbotron.jumbotron-main a {
    color: #fff;
}

.center-vertically {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}

.center-vertically-holder {
    display: table;
    height: 100%;
    padding: 4%;
}

.scroll-indicator {
    padding-top: 6px;
    display: inline-block;
    width: 50px;
}

.arrow-scroll-indicator {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.60);
}

.parallax-window {
    background: transparent;
}



/*Static Pages Css */



/* Mobile Media Queries  */


/* Mobile responsive */
@media (max-width: 576px) {
    .sign-up-btn {
        width: 100%;
        padding: 0px;
        font-size: 12px !important;
        border-radius: 6px;
    }

    .fs-sm12 {
        font-size: 12px !important;
    }

    .fs-sm14 {
        font-size: 14px !important;
    }

    .fs-sm16 {
        font-size: 16px !important;
    }

    .share-btn {
        padding: 3px 10px;
    }

    .mob-gap-05 {
        gap: 0px !important;
    }

    .ms-auto-mob-0 {
        margin-left: 0px !important;
    }

    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    .step-container {
        margin-left: 19px;
        margin-bottom: 20px;
    }

    .from-box {
        margin-right: 0%;
        margin-left: 0%;
    }

    .mob-column {
        flex-direction: column !important;
    }

    .social-buttons .btn {
        padding: 5px 9px;
        font-size: 11px;
    }

    .logo {
        width: 50%;
    }

    .gallery-img {
        height: 160px !important;
        width: 160px !important;

    }
}


/* Mobile-only layout (max-width 767.98px) */
@media (max-width: 767.98px) {
    .share-card {
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 6px 18px rgba(21, 32, 43, 0.08);
        background: #fff;
    }

    .share-card .card-title {
        font-size: 16px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .share-card .card-title i {
        font-size: 18px;
        color: #0d6efd;
    }

    /* Social buttons: 2 columns grid like screenshot */
    .social-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .social-buttons .btn {
        height: 44px !important;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        box-shadow: none;
        border: none;
        color: #fff !important;
        padding: 0 12px;
        gap: 8px;
        font-size: 14px;
        text-decoration: none;
    }

    .social-buttons .btn i {
        font-size: 16px;
        opacity: .95;
    }

    /* Brand colors */
    .social-buttons .fb {
        background: #2d6cdf;
    }

    /* Facebook */
    .social-buttons .tw {
        background: #12a0ec;
    }

    /* Twitter */
    .social-buttons .li {
        background: #0d47a1;
    }

    /* LinkedIn */
    .social-buttons .wa {
        background: #25d366;
        color: #05371a;
    }

    /* WhatsApp (text darker) */

    /* Link box */
    .share-link-box {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-bottom: 12px;
        background: #f7f9fb;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #e6eef8;
    }

    .share-link-box .share-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: 6px;
        color: #6c757d;
        font-size: 18px;
    }

    .share-link-box .share-input {
        border: none;
        background: transparent;
        box-shadow: none;
        outline: none;
        padding: 0;
        font-size: 14px;
        color: #2b2b2b;
        flex: 1;
    }

    .share-link-box .share-input[readonly] {
        cursor: text;
    }

    .copy-btn {
        background: #ffffff;
        border: 1px solid #d6e3fb;
        padding: 8px 10px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        white-space: nowrap;
    }

    /* Big Share button */
    .share-btn {
        width: 100%;
        margin-top: 0px;
        padding: 10px;
        background: linear-gradient(180deg, #1e6af8, #155de0);
        color: #fff;
        border-radius: 10px;
        border: none;
        font-weight: 700;
        font-size: 16px;
        text-align: center;
    }

    /* Helper text */
    .share-help-text {
        text-align: center;
        margin-top: 10px;
        font-size: 13px;
        color: #7b8794;
    }

    /* ensure icons/text color contrast on small screens */
    .social-buttons .btn:focus,
    .social-buttons .btn:hover {
        transform: translateY(-2px);
        transition: .15s;
    }
}

/* Mobile Media Queries  */


/* ===============================
   NEW WRAPPER STYLE
================================ */


/* ===============================
   HEADER
================================ */
.contact-header {
    padding: 70px 20px;
    background: linear-gradient(135deg, #1d6fdc, #4f7cff);
    color: #fff;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f4f8ff, #ffffff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(29, 111, 220, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.06);
}

/* ===============================
   FORM
================================ */
.contact-form-card {
    padding: 50px 45px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: #667085;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d0d5dd;
    background: #f9fafb;
    font-size: 14px;
    transition: all 0.25s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #1d6fdc;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(29, 111, 220, 0.15);
}

.contact-form-card textarea {
    resize: none;
    margin-bottom: 10px;
}

/* BUTTON */
.contact-form-card button {
    width: 100%;
    background: linear-gradient(135deg, #1d6fdc, #155ab3);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 25px rgba(29, 111, 220, 0.35);
}

.contact-form-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(29, 111, 220, 0.45);
}

/* ===============================
   IMAGE SECTION
================================ */
.contact-visual {
    position: relative;
}

.contact-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(29, 111, 220, 0.25),
            rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    padding: 25px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    color: #fff;
}

.visual-overlay p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.visual-overlay span {
    font-size: 14px;
    opacity: 0.85;
}

/* ===============================
   CTA
================================ */
.contact-cta {
    padding: 70px 20px;
    background: linear-gradient(135deg, #1d3557, #1d6fdc);
    color: #fff;
    text-align: center;
}

.contact-cta h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-buttons a {
    display: inline-block;
    margin: 0 8px;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #fff;
    color: #1d6fdc;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-buttons a:hover {
    transform: translateY(-3px);
    opacity: 0.95;
}



#faq .accordion-button {
    font-weight: 600;
}

#faq .accordion-body {
    color: #444;
    line-height: 1.5;
}

#faq .btn-outline-secondary.active {
    background: #f1f3f5;
}

@media (max-width: 576px) {
    #faq .d-flex.justify-content-between {
        flex-direction: column;
        gap: .5rem;
    }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        min-height: 260px;
    }
}


/* SweetAlert2 z-index fix */
.swal2-container {
    z-index: 999999 !important;
}

.custom-toast-zindex {
    z-index: 999999 !important;
}

.carousel-caption {
    display: none !important;
}


.press-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
}

/* Desktop: 4 logos */
.press-item {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.press-item img {
    max-width: 170px;
    height: auto;
    object-fit: contain;
}

/* Tablet: 3 logos */
@media (max-width: 991px) {
    .press-item {
        flex: 0 0 33.3333%;
    }
}

/* Mobile: 2 logos */
@media (max-width: 576px) {
    .press-item {
        flex: 0 0 26%;
    }

    .press-slider {
        gap: 20px;
    }

    .press-item img {
        max-width: 100px;
    }
}


/* // start */
:root {
    --primary-color: #197eb3;
    --secondary-color: #8338ec;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
}
.btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.text-gradient-primary {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.rounded-4 {
    border-radius: 1rem !important;
}

.search-input {
    border-radius: 0.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

.btn-search {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.shadow-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease;
}

.stat-card {
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.animate__animated {
    animation-duration: 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.form-select-lg, .form-control-lg {
    padding: 0.75rem 1rem;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
/* // end header */


.category-card {
    border-radius: 1rem !important;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    background: white;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.category-card:hover .category-title {
    color: #667eea !important;
}

.category-icon {
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.icon-wrapper {
    transition: all 0.3s ease;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.category-card:hover .icon-wrapper i {
    color: white !important;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Bar */
.progress {
    background-color: #f1f3f9;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Stats */
.stat-item {
    padding: 1rem;
}

.stat-item .h2 {
    font-size: 2.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .category-card {
        margin-bottom: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .category-title {
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.1s);
    opacity: 0;
}

/* Custom hover overlay */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-card:hover .card-hover-overlay {
    opacity: 1;
}

/* Stretched link customization */
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}

/* // end category */

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Background Circles */
.circle-shape {
    border-radius: 50%;
}

.circle-lg {
    width: 300px;
    height: 300px;
    transform: translate(50%, -50%);
}

.circle-md {
    width: 200px;
    height: 200px;
    transform: translate(-30%, 30%);
}

/* Stats Cards */
.stats-card {
    border-radius: 1.5rem !important;
    transition: all 0.4s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

/* Icon Circles */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stats-card:hover .icon-circle {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.stats-card:hover .icon-circle i {
    color: white !important;
}

/* Gradient Text */
.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Title */
.stats-title {
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Rating Stars */
.rating-stars i {
    font-size: 1.1rem;
}

/* Category Tags */
.category-tag {
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
    transform: translateY(-2px);
}

.category-tag:hover i,
.category-tag:hover small {
    color: white !important;
}

/* Mini Stats */
.mini-stat {
    padding: 1rem;
    transition: all 0.3s ease;
}

.mini-stat:hover {
    transform: translateY(-5px);
}

.mini-stat-icon i {
    transition: all 0.3s ease;
}

.mini-stat:hover .mini-stat-icon i {
    transform: scale(1.2);
}

/* Corner Decoration */
.stats-corner {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-corner {
    opacity: 0.3;
    transform: scale(1.2);
}

/* Progress Bars */
.progress {
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    border-radius: 10px;
}

/* Animation for cards on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stats-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Animation for section header */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.row.mb-6 {
    animation: fadeInDown 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .circle-lg {
        width: 200px;
        height: 200px;
    }
    
    .circle-md {
        width: 150px;
        height: 150px;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .stats-card {
        margin-bottom: 2rem;
    }
    
    .display-4 {
        font-size: 3rem;
    }
    
    .stats-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .circle-lg {
        width: 150px;
        height: 150px;
    }
    
    .circle-md {
        width: 100px;
        height: 100px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
}

/* Additional responsive adjustments */
@media (max-width: 1200px) {
    .circle-lg {
        width: 250px;
        height: 250px;
    }
    
    .circle-md {
        width: 180px;
        height: 180px;
    }
}

/* Ensure text remains readable on all devices */
.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Improve button-like elements on hover */
.badge:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Smooth transitions for all interactive elements */
.stats-card,
.icon-circle,
.category-tag,
.mini-stat,
.badge,
.progress-bar {
    transition: all 0.3s ease;
}

/* Ensure proper z-index stacking */
.position-relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

/* Fix for stretched layout */
.h-100 {
    min-height: 100%;
}


/* // end why busness */

.pattern-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#667eea 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.gradient-blob {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Trust Cards */
.trust-card {
    border-radius: 1.25rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border: 1px solid transparent;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(102, 126, 234, 0.2);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Icon Circles */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Color Variables */
.bg-purple {
    background-color: #6f42c1 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

/* Trust Score */
.trust-score {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Badge Styling */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* Trust Badge Icons */
.trust-badge-icon {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.trust-badge-icon:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

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

.trust-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }
.trust-card:nth-child(4) { animation-delay: 0.4s; }
.trust-card:nth-child(5) { animation-delay: 0.5s; }
.trust-card:nth-child(6) { animation-delay: 0.6s; }

/* Progress bars in metrics */
.metric-item .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* VR divider */
.vr {
    width: 1px;
    background-color: #dee2e6;
    align-self: stretch;
}

/* Button styling */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-card {
        margin-bottom: 1.5rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .icon-circle i {
        font-size: 1.5rem !important;
    }
    
    .gradient-blob {
        width: 300px;
        height: 300px;
    }
    
    .global-reach .vr {
        margin: 0 1rem;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .trust-badge-icon {
        padding: 0.5rem;
        margin: 0.5rem;
    }
    
    .trust-badge-icon i {
        font-size: 2rem !important;
    }
}

/* Ensure proper spacing */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

/* Smooth transitions */
.trust-card,
.icon-circle,
.badge,
.btn-primary,
.trust-badge-icon {
    transition: all 0.3s ease;
}

/* Card body improvements */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* // start press */
.bg-gradient-light {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.8) 100%);
}

.circle-shape {
    border-radius: 50%;
}

.circle-lg {
    width: 300px;
    height: 300px;
    transform: translate(30%, -30%);
}

.circle-md {
    width: 200px;
    height: 200px;
    transform: translate(-20%, 20%);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Press Cards */
.press-card {
    border-radius: 1.25rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    overflow: hidden;
    position: relative;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Press Logo */
.press-logo-wrapper {
    position: relative;
}

.press-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.press-card:hover .press-logo {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.press-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Press Title */
.press-title {
    font-size: 1.1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.press-card:hover .press-title {
    color: #667eea !important;
}

/* Meta Info */
.meta-item {
    font-size: 0.85rem;
}

/* Stat Badges */
.stat-badge {
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Publication Logos */
.publication-logo-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.publication-logo-card:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.logo-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Styling */
.btn-outline-primary {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.press-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.press-card:nth-child(1) { animation-delay: 0.1s; }
.press-card:nth-child(2) { animation-delay: 0.2s; }
.press-card:nth-child(3) { animation-delay: 0.3s; }
.press-card:nth-child(4) { animation-delay: 0.4s; }
.press-card:nth-child(5) { animation-delay: 0.5s; }
.press-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .circle-lg {
        width: 200px;
        height: 200px;
    }
    
    .circle-md {
        width: 150px;
        height: 150px;
    }
    
    .press-logo {
        width: 100px;
        height: 100px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .publication-logo-card {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .stat-badge {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .press-card {
        margin-bottom: 1.5rem;
        .publication-logo-card {
    }
    
        padding: 0.75rem;
    }
    
    .logo-wrapper i {
        font-size: 2rem !important;
    }
}

/* Ensure proper spacing */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Stretched link customization */
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0,0,0,0);
}

/* Card hover effects */
.press-card:hover .stretched-link::after {
    background-color: rgba(102, 126, 234, 0.05);
}

/* Smooth transitions */
.press-card,
.press-logo,
.stat-badge,
.publication-logo-card,
.btn-outline-primary,
.btn-primary {
    transition: all 0.3s ease;
}


/* LEFT IMAGE */
.card-media {
    width: 40%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* RIGHT CONTENT */
.card-body-60 {
    width: 60%;
    padding: 16px 18px;
}

.biz-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.biz-avatar {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
}

.biz-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biz-title {
    font-weight: 600;
    font-size: 1rem;
}

.biz-sub {
    font-size: 0.85rem;
    color: #6c757d;
}

/* ACTIONS */
.card-actions {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.btn-view {
    background: #0d6efd;
    color: #fff;
}

.btn-chat {
    border: 1px solid #ddd;
}

/* BADGES */
.badge-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ffc107;
    color: #000;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
}

.verify-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #198754;
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    font-size: 0.75rem;
}

/* MOBILE STACK */
@media (max-width: 768px) {
    .biz-card {
        flex-direction: column;
    }
    .card-media,
    .card-body {
        width: 100%;
    }
    .card-media {
        min-height: 160px;
    }
}


.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085')
                center/cover no-repeat;
    height: 280px;
}

.inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.trend-badge {
    background: linear-gradient(135deg, #ff512f, #f09819);
    font-size: 13px;
    padding: 6px 14px;
}

.biz-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.biz-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* IMAGE */
.biz-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.badge {
    /* position: absolute; */
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 30px;
    color: #fff;
}

.badge-featured {
    top: 12px;
    left: 12px;
    background: linear-gradient(45deg, #ff9800, #ff5722);
}

.badge-verified {
    top: 12px;
    right: 12px;
    background: #28a745;
}

/* CONTENT */
.biz-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    height: 50%;
}

.biz-header {
    display: flex;
    gap: 14px;
    align-items: center;
}

.biz-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #eee;
}

.biz-name {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.biz-category {
    font-size: 13px;
    color: #6c757d;
}

.biz-location {
    margin: 12px 0;
    font-size: 14px;
    color: #555;
}

.biz-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}