@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@400;500;600&family=Red+Hat+Display:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ─── SCALES AND VARIABLES ─── */
.blogs-page {
    --bg-primary: #f8faf9;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0f4f2;
    --text-primary: #12211a;
    --text-secondary: #4a5c53;
    --text-muted: #738a7f;
    
    --primary: #3BB852;
    --primary-hover: #2F9241;
    --primary-light: #EBFAED;
    --primary-rgb: 59, 184, 82;
    
    --secondary: #0d9488;
    --secondary-hover: #0f766e;
    --secondary-light: #f0fdfa;
    
    --accent: #eab308;
    --accent-hover: #ca8a04;
    --accent-light: #fef9c3;
    
    --card-shadow: 0 10px 30px -10px rgba(6, 46, 36, 0.08);
    --card-hover-shadow: 0 20px 40px -15px rgba(6, 46, 36, 0.15);
    --border-color: #e2e8f0;
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --font-headings: 'Red Hat Display', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-inter: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --container-width: 1350px;

    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.blogs-page.blogs-page-layout {
    min-height: 100vh;
    background: var(--bg-primary);
    
    /* Full width breakout properties to span edge-to-edge on any theme */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: clip;
}

/* Ensure box-sizing and margins are reset inside the blog page scoping */
.blogs-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.elegant-serif {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
}

/* ─── HERO ─── */
.blogs-hero {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
}

.blogs-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url('../images/blog-hero-bg.webp');
    background-position: center 40%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}



/* ─── INNER CONTENT ─── */
.blogs-hero-inner {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 130px 24px 72px;
    max-width: 700px;
    width: 100%;
}

/* Brand */
.blogs-brand-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 14px;
}
.blogs-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin: 0;
    text-align: center;
}

/* Breadcrumb */
.blogs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 28px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.blogs-bc-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.blogs-bc-link:hover { color: #fff; }
.blogs-bc-current {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.blogs-breadcrumb svg {
    opacity: 0.4;
    flex-shrink: 0;
}

/* Heading */
.blogs-hero-title {
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: rgb(250, 250, 250);
    line-height: 67px;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}
.blogs-hero-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    color: rgb(250, 250, 250);
}

/* Search */
.blogs-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.96);
    border-radius: 12px;
    padding: 8px 12px 8px 50px;
    width: 100%;
    max-width: 572px;
    height: 57px;
    min-height: 57px;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.blogs-search-wrap:focus-within {
    box-shadow: 0 4px 20px rgba(59, 184, 82, 0.15);
}
.blogs-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(163, 163, 163);
    flex-shrink: 0;
}
.blogs-search-input {
    flex: 1;
    border: none !important;
    outline: none;
    background: transparent;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: rgb(10, 10, 10);
    font-family: 'Outfit', sans-serif;
}
.blogs-search-input::placeholder {
    color: rgb(163, 163, 163);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}


/* ─── BLOG LISTING SECTION ─── */
.blogs-listing {
    background: var(--bg-primary);
    padding: 40px 0 80px;
}

/* Category tabs scrollable row */
.blogs-cats-wrap {
    overflow-x: auto;
    padding: 32px 40px 36px;
    scrollbar-width: none;
    display: flex;
    justify-content: center;
}
.blogs-cats-wrap::-webkit-scrollbar { display: none; }

.blogs-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1252px;
    width: 100%;
}

.blogs-cat-btn {
    padding: 8px 18px;
    border: none !important;
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s ease;
    margin: 0 4px;
}
.blogs-cat-btn:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}
.blogs-cat-btn.active {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}

/* 2-column grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 0 40px;
    max-width: 1252px;
    margin: 0 auto;
}

/* Card */
.blogs-card {
    background: transparent;
    overflow: visible;
    transition: transform 0.22s ease;
    animation: cardFadeIn 0.4s ease both;
    display: flex;
    flex-direction: column;
    min-height: 427px;
    height: auto;
    width: 100%;
    max-width: 610px;
    padding-bottom: 12px;
}
.blogs-card:hover {
    transform: translateY(-6px);
}

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

/* Thumbnail gradient area */
.blogs-card-thumb {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 20px;
}
.blogs-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogs-card:hover .blogs-card-img {
    transform: scale(1.06) rotate(1.5deg);
}

/* Card body */
.blogs-card-body {
    padding: 18px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}
.blogs-card-meta {
    margin-bottom: 4px;
}
.blogs-card-read {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}
.blogs-card-title {
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 29px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blogs-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blogs-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.blogs-card-read-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: gap 0.15s;
}
.blogs-card-read-btn:hover { letter-spacing: 0.02em; }

/* Empty state */
.blogs-empty {
    text-align: center;
    padding: 60px 24px;
    color: #9ca3af;
    font-size: 1rem;
}
.blogs-empty span { font-size: 2.5rem; display: block; margin-bottom: 12px; }

/* Pagination */
.blogs-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 50px auto 0;
    max-width: 1252px;
}
.blogs-page-btn, .blogs-page-dots, .blogs-page-next-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text-primary);
    background: transparent;
    border: none !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}
.blogs-page-dots {
    cursor: default;
}
.blogs-page-btn.active {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}
.blogs-page-btn:hover:not(.active), .blogs-page-next-btn:hover:not(:disabled) {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}
.blogs-page-next-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .blogs-hero-title { font-size: 36px; line-height: 44px; }
    .blogs-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .blogs-cats-wrap { padding: 0 20px 24px; }
}
@media (max-width: 600px) {
    .blogs-hero-title { font-size: 28px; line-height: 35px; }
    .blogs-hero-inner { padding: 110px 20px 64px; }
    .blogs-search-wrap { max-width: 100%; }
}

/* ─── NEWSLETTER SECTION ─── */
.blogs-newsletter-section {
    padding: 80px 0 120px 0;
    position: relative;
    z-index: 5;
    width: 100%;
    background: #ffffff; /* Background outside the card is full white */
}

.blogs-newsletter-container {
    max-width: 1252px; /* Set width to 1252px */
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.blogs-newsletter-banner {
    position: relative;
    border-radius: 28px;
    padding: 80px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blogs-newsletter-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 46, 36, 0.45) 0%, rgba(9, 21, 17, 0.35) 100%);
    z-index: 1;
}



.blogs-newsletter-banner > * {
    position: relative;
    z-index: 2;
}

.blogs-newsletter-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #FBBF24;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(251, 191, 36, 0.08);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    text-transform: capitalize;
}

.blogs-newsletter-title {
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 54px;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.blogs-newsletter-title .elegant-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    color: #FFFFFF;
}

.blogs-newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 600px;
}

.blogs-newsletter-avatars-row {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.blogs-newsletter-avatars {
    width: 180px;
    height: auto;
}

.blogs-newsletter-avatars img {
    width: 100%;
    height: auto;
    display: block;
}

.blogs-newsletter-form {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 580px;
    justify-content: center;
}

.blogs-newsletter-input-wrapper {
    position: relative;
    flex: 1;
    max-width: 380px;
}

.blogs-newsletter-mail-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.blogs-newsletter-input {
    width: 100% !important;
    height: 56px !important;
    background: #FFFFFF !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 0 16px 0 48px !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px !important;
    color: #0F172A !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease;
}

.blogs-newsletter-input::placeholder {
    color: #94A3B8;
}

.blogs-newsletter-input:focus {
    box-shadow: 0 0 0 2px rgba(59, 184, 82, 0.5);
}

.blogs-newsletter-btn {
    flex-shrink: 0;
}

/* Custom class for hide/show on desktop/mobile */
.desktop-only-br {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only-br {
        display: none;
    }
    
    .blogs-newsletter-section {
        padding: 60px 0 30px 0;
    }
    
    .blogs-newsletter-banner {
        padding: 60px 24px;
        border-radius: 20px;
    }

    .blogs-newsletter-title {
        font-size: 32px;
        line-height: 40px;
    }

    .blogs-newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .blogs-newsletter-input-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .blogs-newsletter-btn {
        width: 100%;
    }
}

.blogs-card-wrapper {
    display: block;
    width: 100%;
}

/* ─── SINGLE BLOG DETAILS PAGE ─── */
.single-blog-hero {
    position: relative;
    width: 100%;
    height: 90vh; /* Height 90vh */
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 130px;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(3, 0, 10, 0.55) 0%, rgba(3, 0, 10, 0.85) 100%);
    z-index: 1;
}

.single-blog-hero-inner {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px 290px 24px;
    max-width: 1251px;
    width: 100%;
}

.blogs-brand-link {
    text-decoration: none;
    margin-bottom: 20px;
}

.blogs-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}

.single-blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 16px;
}

.single-blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-blog-breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    user-select: none;
}

.breadcrumb-current {
    color: #ffffff;
}

.single-blog-title {
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 62px;
    margin: 24px auto 40px auto;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.single-blog-meta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1080px;
    width: 100%;
    margin: 20px auto 0 auto;
    flex-wrap: wrap;
}

.single-blog-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.single-blog-meta-label {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgb(163, 163, 163);
    line-height: 27px;
    text-transform: capitalize;
}

.single-blog-meta-value {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgb(250, 250, 250);
    line-height: 36px;
}

/* Page body styling */
/* Featured Image Overlap styling */
.single-blog-featured-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1251px;
    margin: -220px auto 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.single-blog-featured-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.single-blog-content-body {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 60px 24px 80px 24px; /* Reduced top padding to remove large blank space */
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 5;
}

/* ─── 3-COLUMN BLOG GRID LAYOUT ─── */
.single-blog-grid-layout {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    gap: 40px;
    max-width: 1251px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Sticky Sidebars */
.single-blog-left-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    z-index: 10;
}

.single-blog-right-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
    z-index: 10;
}

.single-blog-main-content {
    min-width: 0; /* prevents flex overflow */
    line-height: 1.8;
    font-size: 18px;
}

.single-blog-main-content h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: var(--text-primary);
}

.single-blog-main-content p {
    margin-bottom: 24px;
    color: var(--text-secondary);
}

/* Key Takeaways Box styling */
.single-blog-takeaways-box {
    background-color: var(--bg-tertiary);
    border-left: 4px solid var(--accent);
    border-radius: 0 24px 24px 0;
    padding: 32px;
    margin-bottom: 40px;
}

.single-blog-takeaways-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px 0;
}

.takeaways-sparkle-icon {
    flex-shrink: 0;
}

.single-blog-takeaways-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-blog-takeaways-list li {
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.single-blog-takeaways-list li::before {
    content: "•";
    color: #64748b;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -1px;
}

/* Left Sidebar - Table of Contents Card */
.single-blog-toc-card {
    background: transparent;
    padding: 10px 0;
}

.single-blog-toc-heading {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.single-blog-toc-progress-wrapper {
    width: 60px;
    height: 4px;
    background: var(--border-color);
    margin-bottom: 24px;
    border-radius: 2px;
    overflow: hidden;
}

.single-blog-toc-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s ease-out;
}

.single-blog-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-blog-toc-link {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
    line-height: 1.4;
}

.single-blog-toc-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.single-blog-toc-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* Right Sidebar - Sticky CTA Card */
.single-blog-cta-card {
    background: radial-gradient(circle at bottom right, rgba(234, 88, 12, 0.12), transparent 60%), #0b0a0f;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.single-blog-cta-banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #ff4a22;
}

.single-blog-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog-cta-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.single-blog-cta-badge {
    border: 1px solid #10b981;
    color: #10b981;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    display: inline-block;
}

.single-blog-cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.single-blog-cta-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: #ffffff;
    font-weight: 700;
}

.single-blog-cta-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.single-blog-cta-bullets li {
    font-size: 16px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.single-blog-cta-check {
    flex-shrink: 0;
}

.single-blog-cta-button {
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 12px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none !important;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.single-blog-cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 184, 82, 0.4);
}

.single-blog-cta-button svg {
    transition: transform 0.2s ease;
}

.single-blog-cta-button:hover svg {
    transform: translateX(4px);
}

.single-blog-lead-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 36px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

/* See other Blogs Section styling */
.single-blog-related-section {
    background-color: var(--bg-primary);
    padding: 80px 24px 100px 24px;
    width: 100%;
}

.single-blog-related-container {
    max-width: 1251px;
    margin: 0 auto;
    width: 100%;
}

.single-blog-related-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-blog-related-badge {
    border: 1px solid #10b981;
    color: #10b981;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 550;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 16px;
    display: inline-block;
}

.single-blog-related-title {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.single-blog-related-title em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 700;
}

.single-blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.single-blog-related-card {
    display: flex;
    flex-direction: column;
}

.single-blog-related-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.single-blog-related-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9.5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.single-blog-related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-blog-related-card-link:hover img {
    transform: scale(1.06);
}

.single-blog-related-card-title {
    font-family: 'Red Hat Display', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 28.8px;
    margin: 0;
    transition: color 0.2s ease;
}

.single-blog-related-footer {
    display: flex;
    justify-content: center;
}

.single-blog-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    height: 56px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border: none !important;
    text-decoration: none;
    background: var(--primary);
    box-shadow:
        0 8px 25px rgba(59, 184, 82, 0.4),
        inset -1.2px 1.2px 0px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.single-blog-view-more-btn::before {
    content: '';
    position: absolute;
    inset: -200%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 80%,
            rgba(255, 255, 255, 0.6) 90%,
            rgba(255, 255, 255, 0.6) 100%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
    opacity: 1;
}

.single-blog-view-more-btn::after {
    content: '';
    position: absolute;
    inset: 1.2px;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 8px;
    z-index: -1;
    transition: background 0.4s ease;
    display: block;
}

.single-blog-view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(59, 184, 82, 0.6),
        inset -1.2px 1.2px 0px rgba(255, 255, 255, 1);
}

.single-blog-view-more-btn svg {
    transition: transform 0.2s ease;
}

.single-blog-view-more-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .single-blog-hero {
        height: auto;
        min-height: 500px;
        padding: 120px 0 80px 0;
    }
    
    .single-blog-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .single-blog-meta-container {
        justify-content: center;
        gap: 30px;
    }
    
    .single-blog-meta-value {
        font-size: 16px;
    }

    .single-blog-hero-inner {
        padding-bottom: 160px;
    }

    .single-blog-featured-wrap {
        margin-top: -120px;
    }
    
    .single-blog-featured-img {
        max-height: 280px;
    }
    
    .single-blog-content-body {
        padding: 40px 24px 60px 24px;
    }

    .single-blog-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-blog-left-sidebar {
        display: none;
    }

    .single-blog-right-sidebar {
        position: static;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Mobile related section styles */
    .single-blog-related-section {
        padding: 60px 20px 80px 20px;
    }
    
    .single-blog-related-title {
        font-size: 32px;
    }
    
    .single-blog-related-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }
    
    .single-blog-related-card-title {
        font-size: 18px;
        line-height: 22px;
    }
}

/* Comprehensive Mobile Adjustments for Blog & Single Blog Pages */
@media (max-width: 480px) {
    /* Blog Listing Page */
    .blogs-hero {
        min-height: auto;
        border-radius: 0 0 20px 20px;
    }

    .blogs-hero-inner {
        padding: 40px 16px 50px;
    }

    .blogs-brand {
        font-size: 28px;
    }

    .blogs-hero-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 24px;
    }

    .blogs-search-wrap {
        height: 50px;
        min-height: 50px;
        padding: 8px 12px 8px 40px;
        border-radius: 8px;
    }

    .blogs-search-icon {
        left: 12px;
    }

    .blogs-search-input, .blogs-search-input::placeholder {
        font-size: 15px;
    }

    .blogs-cats-wrap {
        padding: 24px 16px;
    }

    .blogs-cat-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .blogs-grid {
        padding: 0 16px;
        gap: 32px;
    }

    .blogs-card {
        height: auto;
    }

    .blogs-card-thumb {
        height: 200px;
        border-radius: 12px;
    }

    .blogs-card-title {
        font-size: 20px;
        line-height: 26px;
    }

    /* Newsletter section */
    .blogs-newsletter-banner {
        padding: 40px 16px;
        border-radius: 16px;
    }

    .blogs-newsletter-title {
        font-size: 26px;
        line-height: 34px;
    }

    .blogs-newsletter-input {
        height: 50px;
        font-size: 14px;
    }

    /* Single Blog Page */
    .single-blog-hero {
        min-height: auto;
        padding: 60px 0 0 0;
        border-radius: 0 0 20px 20px;
    }

    .single-blog-hero-inner {
        padding-bottom: 100px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .single-blog-title {
        font-size: 28px;
        line-height: 36px;
        margin: 16px auto 24px auto;
    }

    .single-blog-meta-container {
        gap: 20px;
        justify-content: center;
    }

    .single-blog-meta-label {
        font-size: 14px;
    }

    .single-blog-meta-value {
        font-size: 18px;
    }

    .single-blog-featured-wrap {
        margin-top: -60px;
        padding: 0 16px;
    }

    .single-blog-featured-img {
        max-height: 200px;
        border-radius: 12px;
    }

    .single-blog-content-body {
        padding: 30px 16px 50px 16px;
    }

    .single-blog-grid-layout {
        gap: 30px;
    }

    .single-blog-main-content h2 {
        font-size: 24px;
        margin: 30px 0 16px 0;
    }

    .single-blog-main-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .single-blog-takeaways-box {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .single-blog-takeaways-title {
        font-size: 18px;
    }

    .single-blog-takeaways-list li {
        font-size: 15px;
        padding-left: 20px;
    }

    .single-blog-cta-banner {
        height: 160px;
    }

    .single-blog-cta-content {
        padding: 24px 16px;
    }

    .single-blog-cta-title {
        font-size: 20px;
    }

    .single-blog-lead-text {
        font-size: 18px;
        padding-left: 16px;
        margin-bottom: 24px;
    }

    .single-blog-related-section {
        padding: 50px 16px 60px 16px;
    }

    .single-blog-related-title {
        font-size: 26px;
    }

    .single-blog-related-card-title {
        font-size: 18px;
    }

    .single-blog-view-more-btn {
        width: 100%;
        padding: 16px 12px;
    }
}
\n
/* FAQ SECTION FROM APPS.CSS */
.faq-section {
    background-color: var(--bg-primary);
    padding: 80px 40px 40px;
    position: relative;
    z-index: 28;
    text-align: center;
}
.faq-container {
    width: 100%;
    max-width: 1252px;
    min-height: 854px;
    margin: 0 auto;
}
.faq-badge {
    display: inline-block;
    border: 1px solid rgb(24, 138, 80);
    color: rgb(24, 138, 80);
    padding: 6px 20px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    background: transparent;
}
.faq-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
    letter-spacing: normal;
}
.faq-title .elegant-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 48px;
    line-height: 58px;
}
.faq-list {
    width: 100%;
    max-width: 1038px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}
.faq-question h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}
.faq-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.faq-icon-circle svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-icon-circle {
    background-color: var(--primary);
}
.faq-item.active .faq-icon-circle svg {
    transform: rotate(180deg);
}
.faq-item.active .faq-icon-circle svg path {
    stroke: #FFFFFF;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 32px;
}
.faq-answer p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.36px;
    margin: 0;
}

/* CONSULTATION SECTION FROM APPS.CSS */
.consultation-section {
    background-color: #FFFFFF;
    padding: 20px 40px 0;
}
.consultation-container {
    width: 100%;
    max-width: 1252px;
    min-height: 827px;
    margin: 0 auto;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}
.consultation-corner-img {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
}
.consultation-container::before,
.consultation-container::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}
.consultation-container::before {
    bottom: -150px;
    left: -150px;
    background: #FF9F43;
}
.consultation-container::after {
    top: -150px;
    right: -150px;
    background: #E8FF70;
}
.consultation-grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 64px;
    position: relative;
    z-index: 2;
    height: 100%;
}
.consultation-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 4px 12px;
    background: transparent;
    border: 1px solid #12693D;
    border-radius: 24px;
    color: #1FB268;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 32px;
    box-sizing: border-box;
}
.consultation-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    color: rgb(250, 250, 250);
    margin-bottom: 24px;
}
.consultation-title .elegant-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: rgb(250, 250, 250);
}
.consultation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}
.consultation-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(212, 212, 212);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 12px;
}
.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}
.consultant-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}
.consultant-photo-wrapper {
    width: 240px;
    height: 220.25px;
    border-radius: 20px;
    overflow: hidden;
    background: #C6CFFF;
}
.consultant-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.consultant-name {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    color: rgb(250, 250, 250);
    margin-bottom: 8px;
}
.consultant-role {
    color: rgb(163, 163, 163);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}
.consultant-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgb(212, 212, 212);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 8px;
}
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-icon svg {
    width: 24px;
    height: 24px;
}
.phone-icon svg path {
    fill: currentColor !important;
}
.book-call-link {
    color: rgb(168, 127, 255);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.book-call-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.consultation-form-wrapper {
    height: 100%;
}
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    width: 100%;
    max-width: 100%;
}
.consultation-form>div:nth-child(3) {
    margin-top: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-group label {
    color: rgb(250, 250, 250);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}
.form-group input,
.form-group textarea {
    border: 1px solid #525252;
    border-radius: 8px;
    padding: 12px 16px;
    color: rgb(250, 250, 250);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}
.form-group input {
    height: 50px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 250, 250, 0.4);
    font-family: 'Outfit', Arial, sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.budget-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 4px;
}
.budget-btn {
    height: 44px;
    width: 100%;
    padding: 0 15px;
    background: transparent;
    border: 1px solid #525252;
    border-radius: 7px;
    color: #FFFFFF;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.budget-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
}
.budget-btn.active {
    background: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
    font-weight: 600;
}
.form-group textarea {
    height: 180px;
    resize: none;
}
.connect-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    height: 56px;
    width: 177px;
    padding: 9px 15px;
    box-sizing: border-box;
    border-radius: 7px;
    border: none !important;
    color: #FFFFFF;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}
.connect-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 184, 82, 0.2);
}

/* TRUST BANNER & PREFOOTER */
.trust-banner-section {
    padding: 25px 20px 30px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    width: 100%;
}
.trust-banner-container {
    max-width: 1252px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.trust-pill {
    background: linear-gradient(90deg, #D8FF84 0%, #D8FF84 15%, #FFFFFF 50%, #D8FF84 85%, #D8FF84 100%);
    border-radius: 100px;
    height: 71px;
    width: 100%;
    max-width: 1252px;
    border: 1px solid #E5E5E5;
    margin-top: 16px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
}
.trust-pill-avatars {
    flex-shrink: 0;
    line-height: 0;
}
.trust-pill-avatars img {
    height: 48px;
    width: auto;
    display: block;
}
.trust-marquee-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trust-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    gap: 0;
}
.trust-pill-text {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: rgb(10, 10, 10);
    line-height: 36px;
    display: flex;
    align-items: center;
    padding-right: 40px;
}
.trust-pill-text .elegant-serif {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    color: rgb(10, 10, 10) !important;
    display: inline-block !important;
    margin: 0 8px !important;
    line-height: 36px !important;
}
.pre-footer-section {
    padding: 60px 40px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
}
.pre-footer-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.pre-footer-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    letter-spacing: 0.36px;
    max-width: 720px;
    margin: 0;
}
.social-links-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.social-box {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
    text-decoration: none;
}
.social-box .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #FFFFFF;
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}
.social-box .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #FFFFFF;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.social-box:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.social-box:hover {
    color: #FFFFFF;
    transform: translateY(-5px);
}
.social-box.facebook:hover,
.social-box.facebook:hover .tooltip,
.social-box.facebook:hover .tooltip::before {
    background: #1877f2;
}
.social-box.twitter:hover,
.social-box.twitter:hover .tooltip,
.social-box.twitter:hover .tooltip::before {
    background: #1da1f2;
}
.social-box.instagram:hover,
.social-box.instagram:hover .tooltip,
.social-box.instagram:hover .tooltip::before {
    background: #e4405f;
}
.social-box.linkedin:hover,
.social-box.linkedin:hover .tooltip,
.social-box.linkedin:hover .tooltip::before {
    background: #0077b5;
}
.social-box.dribbble:hover,
.social-box.dribbble:hover .tooltip,
.social-box.dribbble:hover .tooltip::before {
    background: #ea4c89;
}
.social-box.behance:hover,
.social-box.behance:hover .tooltip,
.social-box.behance:hover .tooltip::before {
    background: #1769ff;
}
.social-box.telegram:hover,
.social-box.telegram:hover .tooltip,
.social-box.telegram:hover .tooltip::before {
    background: #229ED9;
}
.subscribe-form-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 500px;
}
.subscribe-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #F8F8F8;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    padding: 2px 16px;
    transition: all 0.3s ease;
}
.subscribe-input-wrapper:focus-within {
    border-color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(59, 184, 82, 0.05);
}
.mail-icon {
    display: flex;
    align-items: center;
    margin-right: 12px;
}
.subscribe-input-wrapper input {
    width: 100%;
    border: none !important;
    background: transparent;
    padding: 14px 0;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #333;
    outline: none;
}
.subscribe-input-wrapper input::placeholder {
    color: #999;
}
.subscribe-submit-btn {
    background: var(--primary);
    color: #FFFFFF;
    border: none !important;
    border-radius: 10px;
    padding: 0 28px;
    height: 54px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.subscribe-submit-btn:hover {
      background: var(--primary-hover) !important;
      transform: translateY(-2px) !important;
      box-shadow: 0 10px 20px rgba(59, 184, 82, 0.2) !important;

    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 184, 82, 0.2);
}
.arrow-icon {
    display: flex;
    align-items: center;
}

/* RESPONSIVE OVERRIDES FROM APPS.CSS FOR FAQ & CONSULT & TRUST */
@media (max-width: 1200px) {
    .consultation-container {
        padding: 40px;
        height: auto;
        min-height: auto;
    }
    .consultation-grid,
    .consultation-form-wrapper {
        height: auto;
    }
    .consultation-form {
        height: auto;
        gap: 24px;
        justify-content: flex-start;
    }
    .consultation-form>div:nth-child(3) {
        margin-top: 0;
    }
    .consultation-form .connect-submit-btn {
        margin-top: 24px;
    }
    .consultation-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 30px;
    }
}
@media (max-width: 1024px) {
    .faq-container {
        min-height: auto;
    }
    .consultation-container {
        padding: 40px;
        height: auto;
        min-height: auto;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .consultation-title {
        font-size: 42px;
        line-height: 52px;
    }
}
@media (max-width: 1100px) {
    .trust-pill {
        border-radius: 40px;
        padding: 20px 30px;
        min-height: auto;
        max-width: 100%;
    }
    .trust-pill-text {
        font-size: 18px;
    }
    .trust-pill-text .elegant-serif {
        font-size: 20px !important;
    }
}
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 24px;
    }
    .faq-title {
        font-size: 40px;
    }
    .faq-question h3 {
        font-size: 20px;
    }
    .consultation-section {
        padding: 50px 24px 0;
    }
    .consultation-container {
        padding: 40px 24px;
        border-radius: 24px;
    }
    .consultation-title {
        font-size: 38px;
    }
    .trust-pill {
        flex-direction: row;
        border-radius: 30px;
        text-align: center;
        height: auto;
        min-height: 56px;
        padding: 12px 16px;
    }
    .trust-pill-text {
        font-size: 16px;
        line-height: 24px;
        padding-right: 20px;
    }
    .trust-pill-text .elegant-serif {
        font-size: 16px !important;
        line-height: 24px !important;
        margin: 0 4px !important;
    }
    .pre-footer-section {
        padding: 60px 20px;
    }
}
@media (max-width: 480px) {
    .faq-section {
        padding: 60px 16px;
    }
    .faq-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 40px;
    }
    .faq-title .elegant-serif {
        font-size: 28px;
    }
    .faq-question {
        padding: 20px 0;
    }
    .faq-question h3 {
        font-size: 17px;
        line-height: 1.4;
        padding-right: 16px;
    }
    .faq-answer p {
        font-size: 15px;
    }
    .consultation-section {
        padding: 40px 16px 0;
    }
    .consultation-container {
        padding: 32px 20px;
        border-radius: 20px;
        min-height: auto;
    }
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .consultation-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .consultation-title .elegant-serif {
        font-size: 28px;
    }
    .consultation-features li {
        font-size: 15px;
    }
    .form-group label {
        font-size: 16px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 12px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ─── SDGs (DYNAMIC ALIGNMENT SECTION) ─── */
.blogs-page .sdg-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(234, 179, 8, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(59, 184, 82, 0.08) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' fill='none'%3E%3Cpath d='M-100 150 C 200 80, 500 220, 900 120 C 1100 70, 1300 150, 1600 100' stroke='%233bb852' stroke-opacity='0.1' stroke-width='2'/%3E%3Cpath d='M-100 170 C 220 100, 480 250, 880 140 C 1080 90, 1280 170, 1600 120' stroke='%23eab308' stroke-opacity='0.08' stroke-width='1.5'/%3E%3Ccircle cx='400' cy='200' r='3' fill='%233bb852' fill-opacity='0.3'/%3E%3Ccircle cx='900' cy='120' r='4' fill='%23eab308' fill-opacity='0.3'/%3E%3Ccircle cx='1100' cy='70' r='3' fill='%233bb852' fill-opacity='0.2'/%3E%3C/svg%3E");
  background-size: cover, cover, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.blogs-page .sdg-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.blogs-page .sdg-blob-tl {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(59, 184, 82, 0.07) 0%, transparent 70%);
}

.blogs-page .sdg-blob-br {
  width: 600px;
  height: 600px;
  bottom: -250px;
  right: -200px;
  background: radial-gradient(circle, rgba(25, 72, 106, 0.06) 0%, transparent 70%);
}

.blogs-page .sdg-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.blogs-page .sdg-header-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.blogs-page .sdg-header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.blogs-page .sdg-header-left h2 {
  font-size: 3rem;
  font-weight: 850;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.blogs-page .sdg-header-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 500;
  margin: 0;
}

.blogs-page .sdg-workspace {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
}

.blogs-page .sdg-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.blogs-page .sdg-card-item {
  position: relative;
  height: 480px;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  background: transparent;
  border: 1px solid var(--border-color);
}

.blogs-page .sdg-card-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blogs-page .sdg-card-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.blogs-page .sdg-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.blogs-page .sdg-card-icon-container {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 150px;
  height: 150px;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blogs-page .sdg-card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.blogs-page .sdg-card-icon-mask {
  position: absolute;
  top: 0%;
  left: 8%;
  height: 32%;
  background-color: var(--group-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

.blogs-page .sdg-card-icon-mask.single-digit {
  width: 12.5%;
  font-size: 1.8rem;
}

.blogs-page .sdg-card-icon-mask.double-digit {
  width: 22.5%;
  font-size: 1.4rem;
}

.blogs-page .sdg-card-icon-mask.extra-cover {
  left: 4%;
  width: 18%;
}

.blogs-page .sdg-card-icon-mask.shift-left {
  left: 4%;
  width: 22.5%;
}

.blogs-page .sdg-card-icon-mask.shift-right {
  left: 11%;
}

.blogs-page .sdg-card-icon-mask.shift-right-8 {
  left: 7%;
}

.blogs-page .sdg-card-hover-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--group-color);
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  color: #ffffff;
  clip-path: circle(0% at 0% 100%);
  transition: clip-path 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.blogs-page .sdg-card-item:hover .sdg-card-hover-overlay {
  pointer-events: auto;
  clip-path: circle(150% at 0% 100%);
}

.blogs-page .sdg-hover-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-headings);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  pointer-events: none;
}

.blogs-page .sdg-hover-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

.blogs-page .sdg-hover-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.blogs-page .sdg-hover-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.blogs-page .sdg-hover-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.5rem;
}

.blogs-page .sdg-hover-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  margin-bottom: 2rem;
}

.blogs-page .sdg-stat-item {
  display: flex;
  flex-direction: column;
}

.blogs-page .sdg-stat-val {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.blogs-page .sdg-stat-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

.blogs-page .sdg-hover-btn {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
  cursor: pointer;
}

.blogs-page .sdg-hover-btn:hover {
  background: #ffffff;
  color: var(--group-color);
}

.blogs-page .sdg-card-item:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25), 0 10px 25px -10px var(--group-color);
  border-color: var(--group-color);
}

.blogs-page .sdg-card-item:hover .sdg-card-bg-image {
  transform: scale(1.12);
}

.blogs-page .sdg-card-item:hover .sdg-card-icon-container {
  transform: scale(1.03);
}

.blogs-page .badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.blogs-page .badge-accent {
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: #FBBF24;
  background: rgba(251, 191, 36, 0.08);
}

@media (max-width: 1200px) {
  .blogs-page .sdg-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .blogs-page .sdg-card-item {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .blogs-page .sdg-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .blogs-page .sdg-card-item {
    height: 360px;
  }
  .blogs-page .sdg-header-left h2 {
    font-size: 2.2rem;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .blogs-page .sdg-list {
    grid-template-columns: 1fr;
  }
  .blogs-page .sdg-card-item {
    height: 320px;
  }
}

/* ─── SERVICES GRID ─── */
.blogs-page .wwd-container {
    width: 100%;
    margin: 0 auto;
}
.blogs-page .wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}
@media (max-width: 1024px) {
    .blogs-page .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blogs-page .wwd-grid {
        grid-template-columns: 1fr;
    }
}
.blogs-page .wwd-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: transparent;
    border: 1px solid rgba(18, 33, 26, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    text-align: left;
}
.blogs-page .wwd-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, var(--ac), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}
.blogs-page .wwd-card:hover {
    transform: none !important;
    border-color: var(--ac) !important;
    box-shadow: 0 15px 30px rgba(6, 46, 36, 0.05), 0 0 0 1px var(--ac);
}
.blogs-page .wwd-card:hover .wwd-card-glow {
    opacity: 0.1;
}
.blogs-page .wwd-icon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}
.blogs-page .wwd-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogs-page .wwd-icon i {
    font-size: 26px;
}
.blogs-page .wwd-icon svg {
    width: 26px;
    height: 26px;
}
.blogs-page .wwd-card:hover .wwd-icon {
    background: var(--ac) !important;
    color: #ffffff !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px -5px var(--ac);
}
.blogs-page .wwd-number {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.25;
    transition: all 0.4s ease;
}
.blogs-page .wwd-card:hover .wwd-number {
    color: var(--ac);
    opacity: 0.35;
    transform: scale(1.1);
}
.blogs-page .wwd-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}
.blogs-page .wwd-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
    margin: 0;
}
.blogs-page .wwd-card:hover .wwd-title {
    color: var(--ac);
}
.blogs-page .wwd-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
    margin: 0;
}
.blogs-page .wwd-card:hover .wwd-desc {
    color: var(--text-primary);
}
.blogs-page .wwd-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    position: relative;
    z-index: 1;
}
.blogs-page .wwd-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ac);
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    text-decoration: none;
}
.blogs-page .wwd-explore::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ac);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogs-page .wwd-card:hover .wwd-explore::after {
    width: 100%;
}
.blogs-page .wwd-explore svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogs-page .wwd-card:hover .wwd-explore svg {
    transform: translateX(4px);
}

/* ─── PARTNER BRANDS SECTION ─── */
.blogs-page .trusted-brands-section {
  background-color: transparent;
  color: var(--text-primary);
  padding: 3rem 0;
  position: relative;
  z-index: 30;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.blogs-page .trusted-brands-container {
  width: 100%;
  margin: 0 auto;
}

.blogs-page .trusted-brands-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: var(--text-primary);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  padding: 0 24px;
}

.blogs-page .brands-marquee-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

/* Left & Right Fade Mask (Misty Cloud Effect) */
.blogs-page .marquee-fade-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.blogs-page [data-theme='dark'] .marquee-fade-left {
  background: linear-gradient(to right, #050c09 0%, rgba(5, 12, 9, 0) 100%);
}

.blogs-page .marquee-fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.blogs-page [data-theme='dark'] .marquee-fade-right {
  background: linear-gradient(to left, #050c09 0%, rgba(5, 12, 9, 0) 100%);
}

.blogs-page .brands-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.blogs-page .brands-marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
}

.blogs-page .brands-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  padding: 5px 0;
}

/* Row-specific animation direction & durations */
.blogs-page .row-left .brands-marquee-track {
  animation: scroll-left var(--marquee-speed, 75s) linear infinite;
}

.blogs-page .row-right .brands-marquee-track {
  animation: scroll-right var(--marquee-speed, 75s) linear infinite;
}

.blogs-page .brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 64px;
  flex-shrink: 0;
  cursor: default;
}

.blogs-page .brand-logo-img {
  height: 64px;
  width: auto;
  min-width: 50px;
  display: block;
  opacity: 0.55;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: all 0.3s ease;
}

.blogs-page [data-theme='dark'] .brand-logo-img {
  filter: invert(1) brightness(1.5);
  opacity: 0.7;
}

/* Static Grid Styles */
.blogs-page .brands-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
}

.blogs-page .brands-static-grid .brand-item {
  height: auto;
  width: auto;
}

.blogs-page .brands-static-grid .brand-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 64px;
}

/* Animations */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Tablet styles */
@media (max-width: 1024px) {
  .blogs-page .trusted-brands-section {
    padding: 80px 0;
  }
  
  .blogs-page .brands-marquee-track {
    gap: 50px;
  }
  
  .blogs-page .marquee-fade-left, .blogs-page .marquee-fade-right {
    width: 22%;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .blogs-page .trusted-brands-section {
    padding: 60px 0;
  }
  
  .blogs-page .trusted-brands-title {
    margin-bottom: 40px;
  }

  .blogs-page .brands-grid {
    gap: 24px;
  }

  .blogs-page .brands-marquee-track {
    gap: 40px;
  }
  
  .blogs-page .marquee-fade-left, .blogs-page .marquee-fade-right {
    width: 25%;
  }

  .blogs-page .brands-static-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .blogs-page .brands-static-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── CUSTOM DUAL TITLE ─── */
.blogs-page .uboontu-dual-title-wrapper {
	width: 100%;
}
.blogs-page .uboontu-dual-title {
	font-family: var(--font-headings);
	margin: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.25em;
	align-items: center;
}
.blogs-page .uboontu-title-first,
.blogs-page .uboontu-title-second {
	display: inline-block;
	line-height: inherit;
}

/* ─── TESTIMONIALS GRID ─── */
.blogs-page .uboontu-testimonials-section {
    padding: 60px 0;
    background: transparent;
    width: 100%;
}
.blogs-page .uboontu-testimonials-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.blogs-page .uboontu-testimonials-grid {
    display: grid;
    gap: 2rem;
    width: 100%;
}
.blogs-page .uboontu-testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(18, 33, 26, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    transition: border-color 0.4s ease;
}
.blogs-page .uboontu-testimonial-card:hover {
    border-color: #3bb852;
}
.blogs-page .uboontu-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: var(--font-body);
}
.blogs-page .uboontu-testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.blogs-page .uboontu-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-primary);
    border: 2px solid rgba(18, 33, 26, 0.15);
    font-size: 0.95rem;
}
.blogs-page .uboontu-testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.blogs-page .uboontu-testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-body);
}
.blogs-page .uboontu-testimonial-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

/* Tablet default (fallback if Elementor inline styles not generated) */
@media (max-width: 1024px) {
    .blogs-page .uboontu-testimonials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile default (fallback if Elementor inline styles not generated) */
@media (max-width: 768px) {
    .blogs-page .uboontu-testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── TESTIMONIALS MARQUEE ─── */
.blogs-page .uboontu-testimonials-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.blogs-page .uboontu-testimonials-marquee-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.blogs-page .uboontu-testimonials-marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.blogs-page .uboontu-testimonials-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}
.blogs-page .row-left .uboontu-testimonials-marquee-track {
  animation: scroll-left var(--marquee-speed, 50s) linear infinite;
}
.blogs-page .row-right .uboontu-testimonials-marquee-track {
  animation: scroll-right var(--marquee-speed, 50s) linear infinite;
}
.blogs-page .uboontu-testimonials-marquee-row:hover .uboontu-testimonials-marquee-track {
  animation-play-state: running;
}
.blogs-page .uboontu-testimonial-card.marquee-card {
  width: 420px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .blogs-page .uboontu-testimonial-card.marquee-card {
    width: 320px;
    padding: 2rem 1.5rem;
  }
}
