/*
 * S&D Professional Institute — Home Page Styles
 * Navy: #1B2A5E | Orange: #E87722 | White: #fff
 */

/* ── Google Font ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── Reset helpers ───────────────────────────────────────────────────────── */
.snd-home * { box-sizing: border-box; }
.snd-home { font-family: 'Inter', sans-serif; color: #0F1A3D; }

/* ═══════════════════════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════════════════════ */
.snd-hero {
    position: relative;
    background: #1B2A5E;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.snd-hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,119,34,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.snd-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 30%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.snd-hero .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
/* left */
.snd-hero .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,119,34,0.15);
    border: 1px solid rgba(232,119,34,0.4);
    color: #E87722;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.snd-hero .hero-label span.dot {
    width: 6px; height: 6px;
    background: #E87722;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(1.4); }
}
.snd-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 24px;
}
.snd-hero h1 .accent {
    color: #E87722;
    position: relative;
}
.snd-hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 100%; height: 3px;
    background: #E87722;
    border-radius: 2px;
    opacity: 0.4;
}
.snd-hero .hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #a8b8d8;
    margin-bottom: 38px;
    max-width: 480px;
}
.snd-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.snd-hero .btn-orange {
    background: #E87722;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 8px;
    border: 2px solid #E87722;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}
.snd-hero .btn-orange:hover {
    background: #C45A0A;
    border-color: #C45A0A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,119,34,0.35);
    color: #fff;
    text-decoration: none;
}
.snd-hero .btn-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}
.snd-hero .btn-outline:hover {
    border-color: #E87722;
    color: #E87722;
    text-decoration: none;
}
/* mini stats row */
.snd-hero .hero-stats {
    display: flex;
    gap: 36px;
}
.snd-hero .hero-stats .hs-item { }
.snd-hero .hero-stats .hs-num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.snd-hero .hero-stats .hs-num sup {
    font-size: 16px;
    color: #E87722;
}
.snd-hero .hero-stats .hs-lbl {
    font-size: 12px;
    color: #8898aa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.snd-hero .hero-stats .hs-div {
    width: 1px;
    background: rgba(255,255,255,0.12);
    align-self: stretch;
}
/* right — image box */
.snd-hero .hero-img-wrap {
    position: relative;
}
.snd-hero .hero-img-wrap img.main-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 500px;
    display: block;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
/* floating card on image */
.snd-hero .hero-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
}
.snd-hero .hero-badge .hb-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #E87722, #C45A0A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}
.snd-hero .hero-badge .hb-text strong {
    font-size: 20px;
    font-weight: 800;
    color: #0F1A3D;
    display: block;
    line-height: 1;
}
.snd-hero .hero-badge .hb-text span {
    font-size: 12px;
    color: #6b7280;
}
.snd-hero .hero-badge2 {
    position: absolute;
    top: 28px;
    right: -20px;
    background: #E87722;
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    text-align: center;
    box-shadow: 0 8px 28px rgba(232,119,34,0.4);
}
.snd-hero .hero-badge2 strong {
    font-size: 22px;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.snd-hero .hero-badge2 span {
    font-size: 11px;
    opacity: 0.85;
}
/* diagonal bottom clip */
.snd-hero-clip {
    height: 80px;
    background: #f7f8fa;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    margin-top: -1px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. ACCREDITATION BAR
═══════════════════════════════════════════════════════════════════════════ */
.snd-accred {
    background: #fff;
    padding: 28px 0;
    border-bottom: 1px solid #eef0f6;
}
.snd-accred .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.snd-accred .accred-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8898aa;
    white-space: nowrap;
    padding-right: 16px;
    border-right: 1px solid #e5e7eb;
}
.snd-accred .accred-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.snd-accred .accred-logos img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(60%);
    opacity: 0.75;
    transition: all 0.2s;
}
.snd-accred .accred-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.snd-accred .accred-logos .accred-text-logo {
    font-size: 14px;
    font-weight: 700;
    color: #1B2A5E;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border: 1.5px solid #d1d9f0;
    border-radius: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. WHY S&D — Feature cards
═══════════════════════════════════════════════════════════════════════════ */
.snd-why {
    background: #f7f8fa;
    padding: 96px 0;
}
.snd-section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E87722;
    margin-bottom: 14px;
}
.snd-section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #0F1A3D;
    margin-bottom: 16px;
    line-height: 1.2;
}
.snd-section-sub {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto 60px;
    line-height: 1.7;
}
.snd-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.snd-why-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 1.5px solid #eef0f6;
}
.snd-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #E87722;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.snd-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(27,42,94,0.1);
    border-color: rgba(232,119,34,0.2);
}
.snd-why-card:hover::before { transform: scaleX(1); }
.snd-why-card .card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(232,119,34,0.12), rgba(232,119,34,0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #E87722;
    margin-bottom: 24px;
}
.snd-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F1A3D;
    margin-bottom: 12px;
}
.snd-why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. PROGRAMS — Courses section
═══════════════════════════════════════════════════════════════════════════ */
.snd-programs {
    background: #fff;
    padding: 96px 0;
}
.snd-programs .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.snd-programs .prog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}
.snd-programs .prog-header .left { }
.snd-programs .view-all {
    color: #E87722;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1.5px solid transparent;
    transition: border 0.2s;
}
.snd-programs .view-all:hover {
    border-bottom-color: #E87722;
    text-decoration: none;
    color: #E87722;
}
.snd-course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.snd-course-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #eef0f6;
    background: #fff;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.snd-course-card:hover {
    box-shadow: 0 16px 50px rgba(27,42,94,0.12);
    transform: translateY(-4px);
    border-color: rgba(232,119,34,0.25);
}
.snd-course-card .card-thumb {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #1B2A5E;
}
.snd-course-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.snd-course-card:hover .card-thumb img {
    transform: scale(1.05);
}
.snd-course-card .card-thumb .ctag {
    position: absolute;
    top: 14px; left: 14px;
    background: #E87722;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
}
.snd-course-card .card-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1B2A5E 0%, #2E4A8E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(232,119,34,0.6);
}
.snd-course-card .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.snd-course-card .card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0F1A3D;
    margin-bottom: 10px;
    line-height: 1.4;
}
.snd-course-card .card-body h4 a {
    color: inherit;
    text-decoration: none;
}
.snd-course-card .card-body h4 a:hover {
    color: #E87722;
}
.snd-course-card .card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #8898aa;
    margin-bottom: 16px;
}
.snd-course-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.snd-course-card .card-footer-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0f2f8;
}
.snd-course-card .card-price {
    font-size: 18px;
    font-weight: 800;
    color: #E87722;
}
.snd-course-card .card-price.free {
    color: #16a34a;
}
.snd-course-card .card-enroll {
    background: #1B2A5E;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.snd-course-card .card-enroll:hover {
    background: #E87722;
    color: #fff;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. IMPACT — Stats band
═══════════════════════════════════════════════════════════════════════════ */
.snd-impact {
    background: linear-gradient(135deg, #1B2A5E 0%, #0F1A3D 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.snd-impact::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,119,34,0.12) 0%, transparent 70%);
}
.snd-impact .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.snd-impact-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.snd-impact-item + .snd-impact-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}
.snd-impact-item .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}
.snd-impact-item .big-num sup {
    font-size: 28px;
    color: #E87722;
    vertical-align: super;
}
.snd-impact-item .big-num span.plus {
    color: #E87722;
    font-size: 40px;
}
.snd-impact-item .imp-label {
    font-size: 14px;
    color: #8898aa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.snd-impact-item .imp-desc {
    font-size: 13px;
    color: #6b7a9a;
    margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. HOW IT WORKS
═══════════════════════════════════════════════════════════════════════════ */
.snd-how {
    background: #fff;
    padding: 96px 0;
}
.snd-how .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.snd-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}
.snd-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px);
    height: 2px;
    background: repeating-linear-gradient(90deg, #E87722 0, #E87722 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.snd-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.snd-step .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #E87722;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #E87722;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.snd-step:hover .step-num {
    background: #E87722;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(232,119,34,0.35);
}
.snd-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0F1A3D;
    margin-bottom: 10px;
}
.snd-step p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. TESTIMONIALS
═══════════════════════════════════════════════════════════════════════════ */
.snd-testi {
    background: #f7f8fa;
    padding: 96px 0;
}
.snd-testi .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.snd-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.snd-testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 30px;
    border: 1.5px solid #eef0f6;
    position: relative;
    transition: all 0.3s;
}
.snd-testi-card:hover {
    box-shadow: 0 16px 50px rgba(27,42,94,0.1);
    transform: translateY(-4px);
}
.snd-testi-card .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    line-height: 0.6;
    color: #E87722;
    opacity: 0.25;
    position: absolute;
    top: 24px; left: 28px;
    pointer-events: none;
}
.snd-testi-card .stars {
    color: #E87722;
    font-size: 14px;
    margin-bottom: 16px;
}
.snd-testi-card .testi-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.snd-testi-card .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.snd-testi-card .testi-author img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E87722;
}
.snd-testi-card .testi-author .author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B2A5E, #2E4A8E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.snd-testi-card .testi-author .author-name {
    font-weight: 700;
    color: #0F1A3D;
    font-size: 14px;
}
.snd-testi-card .testi-author .author-role {
    font-size: 12px;
    color: #8898aa;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. CTA BAND
═══════════════════════════════════════════════════════════════════════════ */
.snd-cta {
    background: linear-gradient(135deg, #E87722 0%, #C45A0A 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.snd-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.snd-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 10%;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.snd-cta .inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.snd-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.snd-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}
.snd-cta .btn-white {
    background: #fff;
    color: #E87722;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    margin: 0 8px;
}
.snd-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #C45A0A;
    text-decoration: none;
}
.snd-cta .btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
    margin: 0 8px;
}
.snd-cta .btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. FAQ
═══════════════════════════════════════════════════════════════════════════ */
.snd-faq {
    background: #fff;
    padding: 96px 0;
}
.snd-faq .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.snd-faq .faq-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 800;
    color: #0F1A3D;
    margin-bottom: 16px;
    line-height: 1.2;
}
.snd-faq .faq-left p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 32px;
}
.snd-faq .faq-contact-link {
    color: #E87722;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1.5px solid transparent;
    transition: border 0.2s;
}
.snd-faq .faq-contact-link:hover {
    border-bottom-color: #E87722;
    color: #E87722;
    text-decoration: none;
}
.snd-accordion { }
.snd-accordion-item {
    border-bottom: 1px solid #eef0f6;
}
.snd-accordion-item:first-child {
    border-top: 1px solid #eef0f6;
}
.snd-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #0F1A3D;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: color 0.2s;
}
.snd-accordion-btn:hover,
.snd-accordion-btn.active {
    color: #E87722;
}
.snd-accordion-btn .acc-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: all 0.2s;
}
.snd-accordion-btn.active .acc-icon {
    background: #E87722;
    border-color: #E87722;
    color: #fff;
    transform: rotate(45deg);
}
.snd-accordion-body {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
}
.snd-accordion-body.open { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   10. BLOG PREVIEWS
═══════════════════════════════════════════════════════════════════════════ */
.snd-blog {
    background: #f7f8fa;
    padding: 96px 0;
}
.snd-blog .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.snd-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}
.snd-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #eef0f6;
    transition: all 0.3s;
}
.snd-blog-card:hover {
    box-shadow: 0 16px 50px rgba(27,42,94,0.1);
    transform: translateY(-4px);
}
.snd-blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #1B2A5E;
}
.snd-blog-card .blog-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1B2A5E, #2E4A8E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232,119,34,0.5);
    font-size: 36px;
}
.snd-blog-card .blog-body {
    padding: 24px;
}
.snd-blog-card .blog-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E87722;
    margin-bottom: 10px;
}
.snd-blog-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0F1A3D;
    margin-bottom: 12px;
    line-height: 1.4;
}
.snd-blog-card h4 a {
    color: inherit;
    text-decoration: none;
}
.snd-blog-card h4 a:hover { color: #E87722; }
.snd-blog-card .blog-date {
    font-size: 12px;
    color: #8898aa;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .snd-hero .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
    .snd-hero .hero-img-wrap { display: none; }
    .snd-hero { min-height: auto; }
    .snd-why-grid { grid-template-columns: 1fr 1fr; }
    .snd-course-grid { grid-template-columns: 1fr 1fr; }
    .snd-impact .inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .snd-steps { grid-template-columns: repeat(2, 1fr); }
    .snd-steps::before { display: none; }
    .snd-testi-grid { grid-template-columns: 1fr 1fr; }
    .snd-faq .inner { grid-template-columns: 1fr; gap: 40px; }
    .snd-blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .snd-why-grid { grid-template-columns: 1fr; }
    .snd-course-grid { grid-template-columns: 1fr; }
    .snd-impact .inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .snd-steps { grid-template-columns: 1fr 1fr; }
    .snd-testi-grid { grid-template-columns: 1fr; }
    .snd-blog-grid { grid-template-columns: 1fr; }
    .snd-hero .hero-stats { gap: 20px; }
    .snd-hero .hero-stats .hs-div { display: none; }
}
