/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f5f7fb;
    --card: #ffffff;
    --primary: #0f5d9a;
    --primary-dark: #06488f;
    --accent: #f3a13b;
    --ink: #111827;
    --muted: #4b5563;
    --line: rgba(15, 23, 42, 0.08);
    --glow: 0 12px 40px rgba(10, 102, 194, 0.15);
}

body {
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at 18% 24%, rgba(11,108,207,0.08), transparent 32%),
        radial-gradient(circle at 82% 0%, rgba(8,74,142,0.07), transparent 30%),
        var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page-shell {
    
    position: relative;
}

.soft-shadow {
    box-shadow: 0 20px 70px rgba(10, 102, 194, 0.08);
    border-radius: 18px;
}

/* LAYOUT */
.container {
    width: 92%;
    max-width: 1250px;
    margin: 0 auto;
}

body {
    background: #f2f5fa;
}

.section {
    padding: 30px 0;
    background: #ffffff;
}

.inner_page_breadcrumbadgerwef {
    background: #0f5d9a;
    color: #fff;
    border-radius: 0 0 28px 28px;
    padding: 72px 0 58px;
    /* margin-bottom: 12px; */
}



.breadcrumb_title {
    color: #fff;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 60px;
}

.section .container {
    position: relative;
    z-index: 1;
}

.grey-bg {
    background: #f2f5fa;
}

.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 28px; }
.mt-40 { margin-top: 40px; }

.max-600 { max-width: 600px; margin: 0 auto; }
.max-800 { max-width: 800px; margin: 0 auto; }
.narrow { max-width: 900px; }

/* HERO */
.hero-section {
    padding: 30px 0 30px;
    background: linear-gradient(135deg, #ffffff, #f4f7fb);
    border-bottom: 1px solid #edf0f6;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
}

.hero-section::before {
    content: none; /* remove right-side glow */
}

.hero-section::after {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(243,161,59,0.25), rgba(243,161,59,0));
    bottom: -80px;
    left: -60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 8px;
}

.badge {
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(11,108,207,0.14), rgba(11,108,207,0.05));
    border: 1px solid rgba(11,108,207,0.2);
}

.hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-text p {
    font-size: 16px;
    color: #484848 !important;
    max-width: 520px;
}
p{
    font-size: 16px !important;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.stat-card {
    min-width: 150px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 16px;
    color: #484848;
    font-weight: 700;
}

.hero-media {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-media::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: 12%;
    top: -18%;
    background: radial-gradient(circle at 30% 30%, rgba(11,108,207,0.18), transparent 65%);
    z-index: 0;
}

.hero-media .img-box { position: relative; z-index: 1; }

/* GENERIC TWO COLUMN */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.two-col.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.two-col.swap .media-block { order: -1; }

.verification-block {
    align-items: center;
    gap: 32px;
}

.verification-block .img-box {
    max-width: 420px;
    height: 240px;
    margin: 0 auto;
    border: 1px solid rgba(11,108,207,0.14);
    box-shadow: 0 12px 30px rgba(11,108,207,0.12);
    background: #ffffff;
}

.verification-block img {
    object-fit: contain;
    padding: 10px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.text-block p {
    font-size: 16px;
    color: #484848;
    line-height: 1.7;
    margin-bottom: 10px;
}

.author {
    font-size: 16px;
    color: var(--primary);
    margin-top: 10px;
    font-weight: 600;
}

/* SINGLE / WIDE */
.single-col {
    display: flex;
    justify-content: center;
}

.text-block.wide {
    max-width: 880px;
    text-align: center;
}

.quote-card {
    position: relative;
    padding: 9px 44px;
    background: #ffffff;
    border: 1px solid rgba(11,108,207,0.10);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(11,108,207,0.08);
}

.quote-card::after {
    content: none;
}

.quote-mark {
    font-size: 52px;
    color: rgba(11,108,207,0.22);
    line-height: 1;
    margin-bottom: -20px;
}

.order-1 { order: -1; }

/* IMAGE BOXES (PLACEHOLDERS) */
.img-box {
    width: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, #e8eef6, #f8fafc);
    border: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #484848;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.img-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
    border-style: solid;
    border-color: rgba(11,108,207,0.3);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.photo-box {
    background: #ffffff;
    border: 1px solid rgba(11,108,207,0.14);
    box-shadow: 0 12px 30px rgba(11,108,207,0.12);
}

.photo-box img {
    object-fit: contain;
    padding: 6px;
}

.img-tall   { height: 280px; }
.img-medium { height: 220px; }
.img-small  { height: 160px; }
.img-wide   { height: 200px; }
.img-avatar { width: 120px; height: 120px; border-radius: 999px; }

.media-stack {
    position: relative;
    display: grid;
    gap: 18px;
}

.media-stack .overlap {
    position: absolute;
    left: 14%;
    bottom: -14%;
    width: 70%;
    box-shadow: var(--glow);
}

.photo-box {
    background: #ffffff;
    border: 1px solid rgba(11,108,207,0.14);
    box-shadow: 0 12px 30px rgba(11,108,207,0.12);
    height: 260px;
    max-width: 500px;
    margin: 0 auto;
}

.photo-box img {
    object-fit: contain;
    padding: 6px;
}

.highlight-block {
    position: relative;
    background: #ffffff;
}

.highlight-block .pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11,108,207,0.1);
    color: var(--primary-dark);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* CARDS (GENERIC) */
.info-card,
.tag-card,
.service-card,
.process-step,
.achievement-card,
.plan-card,
.digital-card,
.impact-card,
.testimonial-card {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    padding: 20px 20px;
    transition: 0.25s ease;
}

/* Disable hover lift/shadow for all cards */
.info-card,
.tag-card,
.service-card,
.process-step,
.achievement-card,
.plan-card,
.digital-card,
.impact-card,
.testimonial-card,
.why-card,
.why-highlight,
.milestone-card,
.stat-card,
.img-box {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.tag-card:hover,
.service-card:hover,
.process-step:hover,
.achievement-card:hover,
.plan-card:hover,
.digital-card:hover,
.impact-card:hover,
.testimonial-card:hover,
.why-card:hover,
.why-highlight:hover,
.milestone-card:hover,
.stat-card:hover,
.img-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

/* CARDS 3-COLUMN */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cards-3 h3 {
    font-weight: 700;
}

/* Unified card heading style */
.info-card h3,
.tag-card h3,
.service-card h3,
.process-step h3,
.achievement-card h3,
.plan-card h3,
.digital-card h3,
.impact-card h3,
.why-card h3,
.why-highlight h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.values-grid h4 {
    font-weight: 700;
}

/* ABOUT ROW */
.about-row {
    /* margin-bottom: 32px; */
    align-items: center;
    gap: 32px;
}
.two-col.about-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    justify-items: center;
}
.about-row .text-block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.about-row .media-block {
    max-width: 520px;
    justify-self: center;
}
.about-row .img-box {
    box-shadow: 0 18px 45px rgba(11,108,207,0.12);
    border: 1px solid rgba(11,108,207,0.12);
}
.mini-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    justify-items: center;
    max-width: 720px;
    margin: 20px auto 0;
}
.mini-cards .info-card {
    text-align: center;
    font-weight: 500;
    min-height: 92px;
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 220px;
}

/* TIMELINE */
.story-card {
    background: #ffffff;
    padding: 26px 28px;
    border-radius: 18px;
    border: 1px solid rgba(11,108,207,0.10);
    box-shadow: 0 12px 32px rgba(11,108,207,0.06);
    max-width: 980px;
    margin: 0 auto;
}
.story-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.info-pill {
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(11,108,207,0.10);
    box-shadow: 0 8px 20px rgba(11,108,207,0.06);
    text-align: center;
}
.pill-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-dark);
}
.pill-value {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-top: 4px;
}
.ribbon-box {
    position: relative;
    overflow: hidden;
}
.ribbon-box::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -20%;
    width: 160%;
    height: 12px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.35;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.milestone-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(11,108,207,0.1);
    box-shadow: 0 10px 22px rgba(11,108,207,0.08);
    padding: 14px 16px;
    position: relative;
    overflow: hidden;
}
.milestone-card::after {
    content: none;
}
.milestone-year {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f15a2b17;
    color: #f15a2b;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.milestone-card p {
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    position: relative;
    z-index: 1;
}

/* Plain timeline cards */
.journey-section {
    background: #f2f5fa;
}
.journey-section::before,
.journey-section::after {
    content: none;
}
.journey-section .milestone-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.journey-section .milestone-card {
    background: #ffffff;
    border: 1px solid rgba(11,108,207,0.1);
    box-shadow: 0 10px 22px rgba(11,108,207,0.08);
}
.journey-section .milestone-card::after {
    content: none;
}
.journey-section .milestone-year {
    border-radius: 12px;
    width: auto;
    height: auto;
    background: rgba(11,108,207,0.12);
    color: var(--primary);
    padding: 6px 12px;
    box-shadow: none;
}
.journey-section .milestone-card p {
    margin-top: 10px;
    color: var(--muted);
    font-weight: 500;
}

/* FEATURES / WHY CHOOSE */
.feature-list {
    display: grid;
    gap: 16px;
    position: relative;
}

.feature-item h3 { font-size: 16px; margin-bottom: 4px; }
.feature-item p  { font-size: 14px; color: var(--muted); }

.why-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 32px;
}

.section-sub {
    color: var(--muted);
    font-size: 16px;
    margin-top: 8px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
}

.why-card,
.why-highlight {
    background: var(--card);
    border-radius: 16px;
    border: 1px solid rgba(11,108,207,0.12);
    box-shadow: 0 12px 28px rgba(11,108,207,0.10);
    padding: 18px 18px 20px;
    height: 100%;
}

.why-card h3,
.why-highlight h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.why-card p,
.why-highlight p {
    font-size: 13px;
    color: var(--muted);
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(11,108,207,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-highlight {
    grid-column: 1 / -1;
    max-width: 920px;
    width: 100%;
    justify-self: center;
    background: linear-gradient(135deg, #e7f2ff, #fff3e3);
    display: grid;
    gap: 10px;
    padding: 20px 22px 22px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11,108,207,0.12);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(11,108,207,0.16);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.services-grid .service-card {
    height: 100%;
}
.services-grid.stagger-list {
    margin-top: 25px;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: radial-gradient(circle at 25% 20%, rgba(10,102,194,0.18), rgba(10,102,194,0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}
.service-icon i { font-size: 20px; }

.service-card h3 {
    font-size: 16px;
    margin: 10px 0 6px;
}

.service-card p {
    font-size: 13px;
    color: var(--muted);
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.process-step h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.process-step p {
    font-size: 13px;
    color: var(--muted);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #e0f2fe;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* FAQ (Process) */
.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(11,108,207,0.14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(11,108,207,0.08);
    overflow: hidden;
    padding: 0 14px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] {
    box-shadow: 0 14px 32px rgba(11,108,207,0.12);
    border-color: rgba(11,108,207,0.24);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-weight: 600;
    position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    margin-left: auto;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after { content: "–"; transform: rotate(90deg); }

.faq-item p {
    padding: 0 0 14px 42px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.faq-step {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(11,108,207,0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

/* ACHIEVEMENTS MARQUEE */
.achievements-marquee {
    overflow: hidden;
}

.achievements-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 18px;
    padding: 18px;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.achievement-card h3 {
    font-size: 16px;
    margin: 10px 0 4px;
}

.achievement-card p {
    font-size: 13px;
    color: var(--muted);
}

.achievement-img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: #eef2f7;
}

.achievement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* PLAN GRID */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px 24px;
}

.plan-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.plan-card p {
    font-size: 13px;
    color: var(--muted);
}

.plan-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    min-height: 120px;
    border: 1px solid rgba(11,108,207,0.12);
    box-shadow: 0 14px 32px rgba(11,108,207,0.10);
    background: var(--card);
    position: relative;
    overflow: hidden;
}

.plan-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: radial-gradient(circle at 25% 25%, rgba(11,108,207,0.25), rgba(11,108,207,0.05));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(11,108,207,0.12);
}

.plan-card::after { display: none; }

.plan-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.plan-section::after { display: none; }

/* DIGITAL GRID */
.digital-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.digital-card h3 { font-size: 16px; margin-bottom: 6px; }
.digital-card p  { font-size: 13px; color: var(--muted); }

/* IMPACT GRID */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.impact-card {
    text-align: center;
    background: #ffffff;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.impact-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.impact-label {
    font-size: 14px;
    color: var(--muted);
}

/* SECTION TITLE */
.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.mini-cards .info-card {
    text-align: center;
    font-weight: 500;
}

/* ANIMATIONS */
.slide-in {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.9s ease forwards;
    animation-delay: calc(var(--i,1) * 80ms);
}

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}

.stagger-list .stagger-item {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.85s ease forwards;
    animation-delay: calc(var(--i,1) * 90ms);
}

.services-grid .service-card {
    position: relative;
    overflow: hidden;
}

.services-grid .service-card::before {
    content: none;
}

.process-step {
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid,
    .two-col,
    .two-col.reverse {
        grid-template-columns: minmax(0, 1fr);
    }
    .two-col.swap .media-block { order: 0; }
    .story-pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 12px;
    }
    .story-card { padding: 22px 20px; }
    .photo-box { max-width: 100%; }

    .hero-media { justify-content: flex-start; margin-top: 24px; }

    .cards-3,
    .values-grid,
    .services-grid,
    .process-grid,
    .plan-grid,
    .digital-grid,
    .impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-stack .overlap {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -6px;
    }
}

@media (max-width: 768px) {
    .section { padding: 10px 0; }

    .hero-section { padding: 30px 0 60px; }

    .hero-grid { gap: 24px; }

    .hero-text h1 { font-size: 30px; }

    .cards-3,
    .values-grid,
    .services-grid,
    .process-grid,
    .plan-grid,
    .digital-grid,
    .impact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .img-tall { height: 220px; }
    .story-pills { grid-template-columns: minmax(0, 1fr); }
}

/* Simple initial fade-up (on load) */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bullets {
    list-style-type: disc;   /* bullet dot */
    padding-left: 20px;      /* bullets visible */
}

.bullets li {
    margin-bottom: 6px;
    color:#4b5563;
}
h2{
font-size: 28px !important;
}
/* body,
p,
span,
li,
a,
h1, h2, h3, h4, h5, h6 {
    color: #484848 ;
} */


.djnieurw {
    color: var(--primary) !important;
    text-transform: uppercase;
    font-weight: 700;
}

.about-row .text-block {
    width: 100%;
}

.adgerwef {border-radius: 0;} 



@media (max-width:768px){
    .hero-stats { 
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .section {
        padding: 40px 0;
    }
}